Error in Detect Break event.vi

Hey friend,
As you can see i have just opened an example detect break event.vi.
The error is"Wite class conflict".
Please help me on this.
I have a program which uses thisVI.that program is showing the warning
" This VI needs a driver or toolkit component that is not found. Missing resource file "visarc"."
please help me on this.
Solved!
Go to Solution.
Attachments:
detect break.pdf ‏65 KB

yes i have NI-VISA . .
I am using 8.6 verision of LAbview

Similar Messages

  • How can I configure ReFS to NOT fail read operations when a checksum error is detected (on non-Storage-Spaces volumes where data integrity streams are enabled)?

    According to William Stanek, in his Windows Server 2012 R2 Inside Out: Configuration, Storage & Essentials book, this is apparently possible: (pg. 615 - here it is on Google Books: https://books.google.ca/books?id=0IyfBAAAQBAJ&pg=PT819&lpg=PT819&dq=read+operation )
        Integrity can be enabled when the system is not running on Storage Spaces. When
        integrity is enabled and ReFS detects a checksum mismatch, ReFS logs an event and
        fails the read operation by default. If you don’t want the read operation to fail, you
        can configure ReFS to continue with the read operation. A related event will be logged
        regardless.
    So then how do I configure it to do that???
    (And just to make it super-clear, I'm NOT using Storage Spaces, so there is no redundancy via mirroring/parity, and I'm not expecting any file repair - just detection of corruption. It's just a basic volume formatted with ReFS and
    with integrity streams enabled, via format E: /fs:ReFS /i:enabled
    For those who want more details, here's the situation: 
    I try to perform a read operation on a file with corrupted data (purposely done for testing using a low-level disk editor), I get a the following error message:
    And an event ID 133 from ReFSv1 gets logged in the System log:
    Clicking "Try Again" just brings up the same message, and clicking "Skip" skips the operation entirely.
    This is indeed the correct default behaviour.
    What I want instead is for the read operation to be allowed to complete, with corrupt data and all, and ONLY for the event to be logged. And according to William Stanek, this is supposed to be configurable somewhere - and after hours of searching, I haven't
    been able to find anything.

    Hi Tommy,
    >>How can I configure ReFS to NOT fail read operations when a checksum error is detected
    We can use PowerShell command Set-FileIntegrity to configure this. The specific parameter for controlling this behavior is
    -Enforce <Boolean>which indicates whether to enable blocking access to a file if integrity streams do not match the data.  
    Regarding this point, the following article can be referred to as reference.
    Set-FileIntegrity
    https://technet.microsoft.com/en-us/library/jj218351.aspx
    Best regards,
    Frank Shen
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • 'An error was detected on device \Device\Harddisk0\D during a paging operation.'

    Hi,
    since a while (as far as i am able to roll back system log in event viewer) I am having strange issues in the sys log, as in the subject. It is a warning of disk event 51: 'An error was detected on device \Device\Harddisk0\D during a paging operation.'
    I have freed up 1/3 of each partition on the harddrive. Any idea where can i keep going to investigate?
    thx

    pogacsa,
    I have searched a bit about you issue in microsoft technet,and here's what they have got to say
    "An event ID 51 entry is a generic error entry for any type of error that occurs when Windows is paging information to input/output (I/O).
     A paging operation occurs when Windows either swaps a page of memory from memory to disk, or when Windows retrieves a page of memory from disk to memory."
    In this event, D, DR and FT, they all stand for a certain disk partition number. You can use the Registry or Disk Management to locate the certain disk.
    For further information, please refer to the following KBs:
    159865 How to distinguish a physical disk device from an event message 
    http://support.microsoft.com/kb/159865/en-us
    244780 Information about Event ID 51
    http://support.microsoft.com/kb/244780/en-us
    you may also want to check out this link from microsoft technet community as well.
    some of the resolutions mentioned there require you to modify your registry.Please DONOT attempt to modify the registry if you dont have enough prior knowledge about it
    Also try defragmenting your HDD once. 
    hope this info helps you
    Message Edited by vijaysaradhi on 06-03-2009 02:33 PM
    Cheers and regards,
    • » νιנαソѕαяα∂нι ѕαмανє∂αм ™ « •
    ●๋•کáŕádhí'ک díáŕý ツ
    I am a volunteer here. I don't work for Lenovo

  • An error was detected on device \Device\Harddisk0 during a paging operation.

    Hi
    I have a Dell PE 2850 running Windows Server 2003 which is attached via SCSI to a Power Vault 220 SCSI disk enclosure.
    The server is beeping and in the eventvwr I see the following message:
    An error was detected on device \Device\Harddisk0 during a paging operation.
    There are no disk failure lights on the server so what is causing these errors in the Event Viewer?
    Thanks
    Paul

    The "error" doesn't have to mean that the disk is faulty, it's just that that specific write operation might have failed (for unknown reasons).
    That's all the light I can shed on it after looking through my event logs, I have a few of those too, but no errors anywhere else.Best regards
    Joachim Nässlander
    IT-Expert, Knowledge Factory
    (http://www.knowledgefactory.se)
    MVP Cluster
    Member of Microsoft Extended Experts Team (MEET)
    Blog: http://www.nullsession.com

  • VerifyError: Error #1014: Class flash.events::NativeWindowBoundsEvent could not be found.

    When I run project from FB 3, it works but on Double click on
    the .swf gives the error
    VerifyError: Error #1014: Class
    flash.events::NativeWindowBoundsEvent could not be found.
    What is problem and solution of it.
    Thanks

    We had a similar problem in my project.  Took a lot of research and trial and error, but we finally narrowed it down to the resource.properties file.  Turns out that if the file gets too big it causes this problem.  Extending the timeout doesn't help.  You have to break your resource.properties into more granular files to reduce the file size.  This seems to fix the problem.  We have had it happen several times since then and we know how to fix it, so we get it fixed pretty quickly.
    Not sure if this will fix your problem, but it fixed ours.

  • NIO Selector object can't detect OP_ACCEPT event in time.

    We developed a server with Java NIO. we use a special thread to accept new SocketChannel object, read data, write data with a Selector object in server side. The client side is similar with the server side, it also use a special thread to connect to server, read data, write data.
    Now, we found sometimes the time that the socket channel object can't be accepted in server side in time. for example:
    the client side:(output after socketchannel.finishConnect is true)
    11:20:27.937 Finished connect to <remote:/127.0.0.1:9433,local:/127.0.0.1:3602> .
    the server side:(output after serversocketchannel.accept method)
    11:33:11.93 Accepted connection from /127.0.0.1:3602.
    From the log, we knew that the client created a socket channel object and finished connect at 11:20:27.937 but selector object detected this OP_ACCEPT event and accept this socket channel at 11:33:11.93. this process need 13 minutes.
    No server can accept this so long delay. this issue happen only when the machine is in high load.
    I reproduce it by the below steps:
    1, start 3 servers in one machine.
    2, run 40 threads to access one server. the machine is in very high load, then quickly this issue happen.
    by the way, the implement of server side is below:
    while (!shutdown) {
    try {
    int readyCount;
    try {
    readyCount = selector.select();
    } catch (java.nio.channels.ClosedSelectorException ex) {
    readyCount = -1;
    if (readyCount == -1 || isWindowsChannelBug4881228(readyCount)) {
    // Reset the selector
    logger.error("windows channel bug 4881228");
    } else if (readyCount == 0) {
    logger.debug("select wakeup");
    } else {
    Iterator keyIter = selector.selectedKeys().iterator();
    while (keyIter.hasNext()) {
    SelectionKey key = (SelectionKey) keyIter.next();
    keyIter.remove();
    if (key.isConnectable()) {
    ((ChannelConnection) key.attachment()).finishConnect();
    if (!key.isValid()) {
    continue;
    if (key.isAcceptable()) {
    ServerSocketChannel ssc = (ServerSocketChannel) key.channel();
    try {
    SSLEngine sslEngine = null;
    if (ssc == sslSocketChannel) {
    sslEngine = sslContext.createSSLEngine();
    sslEngine.setWantClientAuth(true);
    sslEngine.setUseClientMode(false);
    ServerChannelConnection conn =
    new ServerChannelConnection(this, ssc.accept(), sslEngine);
    conn.setConnectTime(System.currentTimeMillis());
    conn.registerForRead(selector);
    } catch (IOException ex) {
    if (!key.isValid()) {
    continue;
    if (key.isReadable()) {
    try {
    ((ChannelConnection) key.attachment()).processInput();
    catch (Throwable ex) {
    logger.error(ex);
    if (!key.isValid()) {
    continue;
    if (key.isWritable()) {
    try {
    ((ChannelConnection) key.attachment()).processOutput();
    catch (Throwable ex) {
    IOException iex=new IOException(msg(FailedWriteResponse));
    iex.initCause(ex);
    logger.error(iex);
    if (!key.isValid()) {
    continue;
    processPendingRequests();
    catch (Throwable ex) {
    logger.error(ex.getMessage(), ex);
    try {
    Thread.sleep(1000);
    } catch (InterruptedException ex2) {
    // ignore
    The client side is similar with the up.
    I can't understand it. Normally, the selector should detected OP_ACCEPT event quickly. but why not?
    Anyone who met this issue?

    You have an empty catch{} block for IOExceptions when handling isAcceptable(). So the prima facie presumption is that an error condition is arising, that you are ignoring. Fix that first and retest.
    After that, if you still have a problem, I have some comments.
    1. Create the SSLEngine and/or the ServerChannelConnection after accepting the connection, not before, and only if you got a non-null accepted channel. It is still valid for accept() to return null after you get OP_ACCEPT.
    2. Get rid of the sleep() in the exception handler - what's that for?
    3. select() for a specific timeout, not forever, and use the selectCount == 0 case to do something useful such as scanning for idle connections that you might want to drop.
    3. Catch IOException explicitly as well as Throwable, in the outer loop, not per operation, and close the current key's channel if you get it. You can't do anything more with a channel that's had an IOException of any kind, except a SocketTimeoutException, and you won't get that in non-blocking mode.

  • "A battery error is detected"

    My X60 has been having weird battery symptoms over the past few days.
    The ThinkVantage Message Center today has a bunch of "A battery error is detected" messages (note that there's no "catastrophic" mentioned, so I don't think it's the same as the other errors I've seen when searching);
    A few times, the battery status icon has shown only hyphens or blank instead of the usual percentage (it's now saying '100%' and green, so I can't do a screen capture). This seems to "fix" itself when the computer sleeps/wakes up, or just randomly. I am unable to find any event that causes or stops this behavior.
    Any idea how to diagnose the problem? Is my battery about to go bad? The whole system is about 1 year old; I'm either just past or about to pass my warranty period.
    my sys: X60 (1709), Windows XP, 4-cell LI battery

    amtho, welcome to the forum,
    start by looking at this site and also look at this site which is actually linked to from the first one.
    Hope this helps
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • An error was detected on device \Device\Harddisk3\DR3 during a paging operation. - The driver detected a controller error on \Device\Harddisk3\DR7

    How can i ensure that the harddisk3 designation is relatd with USB etxernal disk?
    I have several erros in LOGs:
    An error was detected on device \Device\Harddisk3\DR3 during a paging operation.
    and
    The driver detected a controller error on \Device\Harddisk3\DR7
    All times are HardDisk3 and sometimes it references to DR3 and sometimes DR7
    My disk structure is:
    2 RAID5 arrays fomr the same disks (80GB and 2 TB)
    and USB 2 TB External hard disk with several partitions
    I´m 99% sure that the error is related to the external USB disk and the Dell DIag tool shows no problems with any component
    DISKPART> list disk
      Disk ###  Status         Size     Free     Dyn  Gpt
      Disk 0    Online           80 GB      0 B
      Disk 1    Online         2711 GB      0 B        *
      Disk 2    Online         1862 GB  1024 KB
    DISKPART> sele disk 0
    Disk 0 is now the selected disk.
    DISKPART> detail disk
    DELL PERC H700 SCSI Disk Device
    Disk ID: 6EFE3928
    Type   : RAID
    Status : Online
    Path   : 1
    Target : 0
    LUN ID : 0
    Location Path : PCIROOT(0)#PCI(0400)#PCI(0000)#RAID(P01T00L00)
    Current Read-only State : No
    Read-only  : No
    Boot Disk  : Yes
    Pagefile Disk  : Yes
    Hibernation File Disk  : No
    Crashdump Disk  : Yes
    Clustered Disk  : No
      Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
      Volume 3         System Rese  NTFS   Partition    100 MB  Healthy    System
      Volume 4     C   DISCO        NTFS   Partition     79 GB  Healthy    Boot
    DISKPART> sele disk 1
    Disk 1 is now the selected disk.
    DISKPART> detail disk
    DELL PERC H700 SCSI Disk Device
    Disk ID: {A42559A8-43EF-4570-B4CF-336A22A718BF}
    Type   : RAID
    Status : Online
    Path   : 1
    Target : 1
    LUN ID : 0
    Location Path : PCIROOT(0)#PCI(0400)#PCI(0000)#RAID(P01T01L00)
    Current Read-only State : No
    Read-only  : No
    Boot Disk  : No
    Pagefile Disk  : No
    Hibernation File Disk  : No
    Crashdump Disk  : No
    Clustered Disk  : No
      Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
      Volume 5         DADOS        NTFS   Partition   2711 GB  Healthy
        C:\DADOS\
    DISKPART> sele disk 2
    Disk 2 is now the selected disk.
    DISKPART> detail disk
    HP External HDD USB Device
    Disk ID: 000904F0
    Type   : USB
    Status : Online
    Path   : 0
    Target : 0
    LUN ID : 0
    Location Path : UNAVAILABLE
    Current Read-only State : No
    Read-only  : No
    Boot Disk  : No
    Pagefile Disk  : No
    Hibernation File Disk  : No
    Crashdump Disk  : No
    Clustered Disk  : No
      Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
      Volume 6         SOFTWARE     NTFS   Partition    300 GB  Healthy
        C:\DADOS\DISCO-EXTRA\
      Volume 7         TEMPORARIO-  NTFS   Partition    148 GB  Healthy
        C:\DADOS\NEW_TRANSF\TEMPORARIO\
      Volume 8         TRANSF_LIXO  NTFS   Partition    149 GB  Healthy
        C:\DADOS\NEW_TRANSF\TRANSF_LIXO\
      Volume 9     R   RESTORE      NTFS   Partition   1264 GB  Healthy

    Hi,
    For finding the exact hard disk you could refer to this article. It is an old article but the structure is not changed:
    How to Distinguish a Physical Disk Device from an Event Message
    http://support.microsoft.com/kb/159865
    Meanwhile for the error message "error was detected on device \Device\Harddisk3\DR3 during a paging operation", according to my search result it could be related to fragments. So please try a defragment on your hard disk (if it is the USB disk then perform
    a defragment on USB disk) and see the result. 
    If you have any feedback on our support, please send to [email protected]

  • Each time I try to synch photos from my Windows 7 PC to my iPad2, iTunes stops working, and the error report says Problem Event Name:     APPCRASH   Application Name:     iTunes.exe   Application Version:     10.3.1.55   Application Timestamp:     4deec35

    Each time I try to synch photos from my Windows7 PC to my iPad2, iTunes stops working and the error message is:
    Problem Event Name:                          APPCRASH
      Application Name:                             iTunes.exe
      Application Version:                           10.3.1.55
      Application Timestamp:                    4deec351
      Fault Module Name:                          ntdll.dll
      Fault Module Version:                        6.1.7601.17514
      Fault Module Timestamp:                 4ce7ba58
      Exception Code:                                  c0000005
      Exception Offset:                                0002e3fb
      OS Version:                                          6.1.7601.2.1.0.768.3
      Locale ID:                                             1033
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    I reloaded iTunes 10 (64 bit) successfully, but the problem remains the same.
    Any suggestions?

    I looked in the folder from which I want to synch photos, but there is no such thing as an "ipod photo cache" in that folder, or sub-folders, as suggested in the link which you were nice enough to provide.
    I have also tried removing photos from my iPad2 Photos App, and "iTunes has stopped working" shows up  again as soon as I click on the "Synch photos from" button.

  • In alv report can i use control break events? if no .whay?

    Hi all,
    in alv report can i use control break events? if no .whay?

    hi,
    you can use control break statements in ALV report.
    for example: if one PO is having more than one line item, that time you need to display PO only once.

  • Smartforms, how to use control break events

    Please help with this requirement.
    Purchase Docu No.111
    Pur Item No       Mat no       Quantity 
    1                        2356      2000
    2                     1256      2000
    3                     8556      2000
    Purchase Docu No.112
    Pur Item No    Mat no    Quantity 
    1                      9656      2000
    2                      7356      2000
    3                      1356      2000
    Purchase Docu No.113
    Pur Item No    Mat no    Quantity 
    1                      5356      2000
    2                      8356      2000
    This i have to design for the smartform.
    1 header data then its item data.
    like is Script i can call the WIndow elements using control break events in the driver prog but how to get this kind of output in Smartforms.???????
    Thanks

    I dont want trigger new page.
    In the same page i want like this
    I have purchase docu data in only 1 internal table.
    So, for every new VBELN, under this i want its corresponding item details.
    I have created the command node for the main window with 2 rows, in the 1st row i am giving VBELN and in the 2nd row i am giving in item details like item no, matnr etc etc and in the condition its askng Field name and Comparison Value.
    How shold i give condition.??????
    Thanks
    Edited by: Jalaaluddin Syed on May 1, 2008 5:03 PM

  • My calendar will no longer let me add new event or delete them, it comes up with an error saying "cannot save event, no end date set" or "event does not belong to that event store". can anyone help with this?

    my calendar will no longer let me add new event or delete them, it comes up with an error saying "cannot save event, no end date set" or "event does not belong to that event store". can anyone help with this?

    Hi,
    To configure your ODBC DataSource, go to Control Panel ---> DataSources(ODBC) (If you are in a Windows environment).
    Select the tab System DSN. If you have not added your data source, then do so by clicking on the Add button. If you have added the datasource, click on the Configure button to configure it.
    Give the datasource name, then the database name.
    You have to give the hostname, service name and server name. I guess, in most cases, the datasource name and host name will be the same, service name and server name will be the same. If you are using TCP/IP, the protocol will be onsoctcp.
    There will be a file named Services under C:\WINNT\system32\drivers\etc where you have to give the port number for accessing this server.
    It will be like this <service name> <portnumber>/tcp
    Hope this helps...
    best wishes,
    Nish

  • Solution - Battery error is detected. Irreparable damage to the battery has been detected. Replace

    I own a T61 7658 I bough on 2008, it worked great with the default power settings until October 22nd I decided to change my power profile to MAXIMUM PERFORMANCE.  
    Next day I received on Message Center...
     10/23/2010 - Battery health is critical. With the current system settings and a full charge, your battery can provide approximately 3.0 hours of use. A new battery could provide up to an estimated 5.5 hours.
    I kept using the Laptop with the Max performance until...
    11/12/2010 - Battery error is detected. Irreparable damage to the battery has been detected. Replace the battery with a new one. 
    I have used IBM/Lenovo  for years and even had used batteries for 5 years without a single issue.
    I have read many posts of people having the same problem not only with T61s, but many other Lenovo models, and also read posts of Lenovo's administrators suggesting this is normal and justifying that batteries should be good for at least 12 months and after that we are on own, basically meaning we should be thankful in name of our own safety that we had that battery protection and we must replace it at our own cost and forget about it.  That is a very easy way out, isn’t it.
    But certainly, not only batteries with more than 12 months are failing, even new batteries are and have been replaced with multiple exchange programs posted by Lenovo in their website just as in http://download.lenovo.com/lenovo/content/batt/082009/LandingPage.html. and also in multiple MIGR battery replacement campaigns available to all online as well. 
    Good thing here is that Lenovo has recognized the problem and has exchange the batteries still under warranty and also few of the batteries without warranty limiting to some serial numbers on the MIGR battery replacement campaigns, but the bad side is that Lenovo is leaving behind other clients like me and many others not being selected for replacement.  But I’m sure we all have a good battery but turned useless due to the Lenovo programmed safety temperature limits in the power manager and the battery board.  Please let me explain.
    This is my conclusion.  There is nothing wrong with used or new batteries or their cells in 99% of the cases, I'm sure my battery is okay although is being turned useless by the battery protection feature on my T61.
    Lenovo must recognize the problem is the settings they have programmed on the power manager and battery protection board. It is very understandable that when users select a Power Scheme that demands higher amounts of power to generate better performance on the system this also demand additional power generating heat on battery and on the power supply as the computer is running at full performance, just as happens on my ipod when watching video, or in my kid’s R/C truck when running continuously and will happen with any other battery powered device.  
    Therefore any scheme requiring performance is generating heat and is tripping the battery protection and this is not a client’s fault, as are we just using an available scheme provided on our Lenovo system. If the battery protection is not calibrated to support this power demand, then there is a poor design/testing of the capabilities of the system and the battery protection parameters that instruct the battery to save itself from a fire or burning … which is understandable. 
    The bad side is that there is not possible reset option for the end users, the only option is to buy a new battery at our own cost after the 12 months of warranty, when the cause of the problem is originated in the computer system design settings and can happen at any time, that is way, the system warned me, as in:
     10/23/2010 - Battery health is critical. With the current system settings and a full charge, your battery can provide approximately 3.0 hours of use. A new battery could provide up to an estimated 5.5 hours.
    The computer is saying! At maximum performance, You are using too much power, and my battery will last just 3 hrs (9 cells on my system) instead of the 5.5 hrs that should last. But not only the running time was reduced, the heat on the power supply system and Battery was also increased due to the higher power demand, the battery can not handle the demand and protect itself to prevent fire or damage.
    So who has to pay for this?  Can Lenovo do something about it? For us client and for future clients?  This not a matter of having or not having warranty, this can happen at any time in any computer.
    I'm writing this hoping to be heard and supported and I hope LENOVO provides a satisfactory solution to the issue.  I'm not going to say will never buy Lenovo again I already did, I invested my money on Lenovo and with warranty or not I'm looking forward to get a decent response.  
    Lenovo must change the parameters for tripping battery protection probably handled at BIOS level, and to provide a reset feature to all "locked" batteries there is many people that has lost at least one battery, some other more than that.  Since even if we get a replacement, the chances  the issue will continue is there, as long as I select a high power demand scheme the problem sooner or later will be back.   Even car makers support their clients beyond the warranty if they detect that the issue compromises safety and their reputation.  Fix it. 
    M.Padron.

    amtho, welcome to the forum,
    start by looking at this site and also look at this site which is actually linked to from the first one.
    Hope this helps
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Is there a way to detect the event when device goes to sleep and the screen blackens?

    I want to detect the event when the iOS device goes to sleep and the screen blackens?
    Is there any way to do it?

    Hi,
    A small idea, please check whether it will work or not.
    You can achieve this by using combination of DNS server and reverse proxy server.( Customized apache). Make 'A' record for www.abcd.com to reverse proxy server IP address in your DNS.
    So it will resolve your reverse proxy IP address for requests.
    Configure appche to accept incoming request for www.abcd.com and points towards www.abcd.com/parameters.
    I think this will solve your problem.  Only one condition is that proxy server will communicate with www.abcd.com on behalf of client.
    Follow the link for configuration of reverse proxy server
    http://www.slashroot.in/how-configure-basic-apache-reverse-proxy
    HTH
    Naisam

  • JSPM: Error while detecting start profile for instance with ID _c.

    Hi Experts,
    we have an error when we start JSPM with message "cannot initialize application data. Error while detecting start profile for instance with ID _c." . Until now nothing has been updated yet. The system can be started up and shut down without any problem. The profiles are found in /usr/sap/PMA/SYS/profile
    Our BI system is currently Netweaver 7.0 with SPS14. We plan to update it to SPS20. But when we start JSPM, we have abover error.
    could somebody give a help? Thank you very much.
    Rongfeng
    P.S. the log file DETECT_SYSTEM_PARAMETERS_01.LOG:
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/log/log_2009_11_18_10_28_50/DETECT_SYSTEM_PARAMETERS_01.LOG]/>
    <!PATTERN[DETECT_SYSTEM_PARAMETERS_01.LOG]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    #1.5^H#C000995FC0200000000000207BD47BD40004789C01294DB0#1258511336558#/System/Server/Upgrade/JSPM##com.sap.sdt.jspm.gui.InitialParametersDetector.initializeJspmDataModel(InitialParametersDetector.java:397)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.InitialParametersDetector.initializeJspmDataModel(InitialParametersDetector.java:397)#Java###Initializing JSPM data model...##
    #1.5^H#C000995FC0200000000000217BD47BD40004789C01295968#1258511336561#/System/Server/Upgrade/JSPM##com.sap.sdt.jspm.gui.InitialParametersDetector.detectProfileDirectory(InitialParametersDetector.java:1468)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.InitialParametersDetector.detectProfileDirectory(InitialParametersDetector.java:1468)#Java###Detected profile directory .#1#/usr/sap/PMA/SYS/profile#
    #1.5^H#C000995FC0200000000000227BD47BD40004789C0141AFE0#1258511338156#/System/Server/Upgrade/JSPM##com.sap.sdt.jspm.gui.InitialParametersDetector.detectDb(InitialParametersDetector.java:936)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.InitialParametersDetector.detectDb(InitialParametersDetector.java:936)#Java###Detecting the parameters of the database...##
    #1.5^H#C000995FC0200000000000237BD47BD40004789C014205D0#1258511338178#/System/Server/Upgrade/JSPM##com.sap.sdt.db.dmtif.AbstractDMTController.execute(AbstractDMTController.java:261)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.db.dmtif.AbstractDMTController.execute(AbstractDMTController.java:261)#Java###Executing command with arguments .#2#dbinfo#/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/config/DBINFO.XML#
    #1.5^H#C000995FC0200000000000247BD47BD40004789C01421570#1258511338182#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:41)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:41)#Java###Java process ID , name has been started.#2#5#com.sap.sdt.dmt.main.DMT#
    #1.5^H#C000995FC0200000000000257BD47BD40004789C01421958#1258511338183#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:54)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:54)#Java###Command line: #2#  #/opt/IBMJava2-amd64-142/jre/bin/java -cp .:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/sdt_dmt.jar:/oracle/client/10x_64/instantclient/ojdbc14.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/jddi.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/opensqlsta.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/tc_sec_secstorefs.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/frame.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/exception.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/logging.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/jperflib.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/lib/util.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/./lib/tc_sec_secstorefs.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/./lib/exception.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/./lib/logging.jar:/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/./lib/opensqlsta.jar:/sapmnt/PMA/global/security/lib/tools/info/IAIKSecurityFS.list:/sapmnt/PMA/global/security/lib/tools/iaik_jce.jar:/sapmnt/PMA/global/security/lib/tools/iaik_smime.jar:/sapmnt/PMA/global/security/lib/tools/iaik_jsse.jar:/sapmnt/PMA/global/security/lib/tools/w3c_http.jar:/sapmnt/PMA/global/security/lib/tools/iaik_ssl.jar:/sapmnt/PMA/global/security/lib/engine/info/IAIKSecurityFS.list:/sapmnt/PMA/global/security/lib/engine/iaik_jce.jar com.sap.sdt.dmt.main.DMT -rootdir=/usr/sap/PMA/DVEBMGS10/j2ee/JSPM -descriptor=csrt29_PMA -logfile=/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/log/log_2009_11_18_10_28_50/DMT_01.LOG dbinfo /usr/sap/PMA/DVEBMGS10/j2ee/JSPM/config/DBINFO.XML#
    #1.5^H#C000995FC0200000000000267BD47BD40004789C01422128#1258511338185#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:55)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:55)#Java###Standard out: #2#  #/usr/sap/PMA/DVEBMGS10/j2ee/JSPM/log/log_2009_11_18_10_28_50/DMT_01_01.OUT#
    #1.5^H#C000995FC0200000000000277BD47BD40004789C01424838#1258511338195#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.OsProcessController.launch(OsProcessController.java:126)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.OsProcessController.launch(OsProcessController.java:126)#Java###Process ID has been started.#1#5#
    #1.5^H#C000995FC0200000000000287BD47BD40004789C014253F0#1258511338198#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:182)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:182)#Java###Waiting for process ID , name to finish.#2#5#java#
    #1.5^H#C000995FC0200000000000297BD47BD40004789C017402B0#1258511341454#/System/Server/Upgrade/JSPM##com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:215)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:215)#Java###Process ID , name has been finished, exit code .#3#5#java#0#
    #1.5^H#C000995FC02000000000002A7BD47BD40004789C01741638#1258511341459#/System/Server/Upgrade/JSPM##com.sap.sdt.db.dmtif.AbstractDMTController.execute(AbstractDMTController.java:273)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.db.dmtif.AbstractDMTController.execute(AbstractDMTController.java:273)#Java###Command has been executed.#1#dbinfo#
    #1.5^H#C000995FC02000000000002B7BD47BD40004789C017421F0#1258511341462#/System/Server/Upgrade/JSPM##com.sap.sdt.jspm.gui.InitialParametersDetector.detectDb(InitialParametersDetector.java:984)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.InitialParametersDetector.detectDb(InitialParametersDetector.java:984)#Java###Detection of the parameters of the database has finished. Database type is , database name is and database version is .#3#ORA#Oracle#10.2.0.2.0#
    #1.5^H#C000995FC02000000000002C7BD47BD40004789C01744CE8#1258511341473#/System/Server/Upgrade/JSPM##com.sap.sdt.j2ee.tools.sysinfo.AbstractInfoController.updateProfileVariable(AbstractInfoController.java:284)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j2ee.tools.sysinfo.AbstractInfoController.updateProfileVariable(AbstractInfoController.java:284)#Java###Parameter has been detected. Parameter value is .#2#/J2EE/StandardSystem/DefaultProfilePath#/usr/sap/PMA/SYS/profile/DEFAULT.PFL#
    Sorry, I don't know how to format post 
    Edited by: Rongfeng Shi on Nov 18, 2009 4:20 AM

    Hi Rongfeng,
    There is not much information about the error in the log file you have pasted above.
    Please repeat the issue and catch the log files once again.
    Are you able to open SDM ?
    Best Regards
    Raghu

Maybe you are looking for