TPM Error ID 13 and 516 occuring after some time

Hi all,
on my TP X301 a TPM error occurs always after some up-time. I get error IDs 13 and 516 in the Windows Error Protokolls. This is leading to an unusuable  Client Security Password Manager. Client Security then tells me that the communication with the TPM-chip is blocked...
The Windows online Help for these IDs suggest me to replace the TPM hardware. I do not believe it is a hardware problem since fingerprint reader is working fine....?
Anybody got a suggestion on this?
I got vista x64 running.
The error information in German is:
TPM Error ID 13: "Beim Gerätetreiber für das Trusted Platform Module (TPM) ist ein nicht behebbarer Fehler in der TPM-Hardware aufgetreten, der die Verwendung der TPM-Dienste (z. B. Datenverschlüsselung) verhindert. Wenden Sie sich an den Computerhersteller, um weitere Hilfe zu erhalten."
TBS Error ID 516: "Fehler bei der Kommunikation mit dem TPM. Vom Treiber wurde 0x8007045d zurückgegeben."
ThanX a lot in advance.
St.

Here is an explanation of the failure:
1. Prioritized replication was introduced with DS6.0;
2. When a suffix at a DS6 instance is initialized from a DS5 instance, and then an operation is performed at the DS6 instance that uses prioritized replication, replication fails;
3. By default, password policy uses prioritized replication to propagate auth-failure-lockout state updates (e.g., adding a pwdFailureTime attribute value on a failed bind attempt);
A work-around:
Disable DS6 supplying auth-failure lockout state using prioritized replication. In any password policy having auth-failure-lockout enabled, set
pwdIsLockoutPrioritized:FALSE
Note that DS6 enables prioritized lockout by default, in particular, it enables this feature when migrating a password policy received from a DS5 instance. Hence, for this workaround to be effective, the prioritized lockout feature must be disabled in any DS6 password policy that has auth-failure lockout enabled, which could include:
1. The default password policy at any DS6 instance (cn=password policy,cn=config);
2. Any password policy originating at a DS5 instance, including those in data imported into a DS6 instance, received via replication total update initialization, or added at the DS5 instance subsequent to the DS6 instance initialization;
3. Any password policy added to a DS6 instance.
Additionally, do not set any prioritized replication rules for other attributes.
It is possible the bug can still be triggered in the case of a DS6-only topology that was initialized from DS5 data.
Contact Sun support for the status of a fix for the bug. The CR is 6645742.

Similar Messages

  • After recent upgrade to IOS 7 i an seeing systems rebooting very frequently. it just goes offline and comeback online after some time. IS this hardware issue or others also facing the same

    After recent upgrade to IOS 7 i an seeing systems rebooting very frequently. it just goes offline and comeback online after some time. IS this hardware issue or others also facing the same

    Hello there, Kishoresaraogi.
    The following Knowledge Base article provides some great steps to troubleshoot your issue:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Particularly:
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • RMI UnmarshalException Occurs after some time

    Hi,
    I have a client server application that talks via rmi. My client saves data to a server or gets data by passing in parameters that include string, boolean and a Hashtable. The data is saved and retrieved many times. However, after some time, the RMI can't even find the method. That is, the client calls a method and I get a unmarshalling exception from the client, basically stating that it can't find the method.
    Here is the method in my interface, the method in question is the override method, the getLast works fine all the time:
    public interface Admin extends Remote
         Hashtable getLast(Hashtable setLashtHash) throws RemoteException;
    //override method can query or set a new data in the form of a hashtable. It return a Hashtable or null
         Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException;
    Here's the implementation of override:
         synchronized public Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException
              try{
              if(setNew)
                   if(newOverride!=null)
                   System.out.println("Saving override hash, entries=" + newOverride.size());
                   overrideHash=newOverride;
              else if(getOverrideHash)
                   if(overrideHash!=null)
                   System.out.println("Getting override hash entries=" + overrideHash.size());
                   return overrideHash;
              else
                   if(getLast)
                        if(overrideHash==null)
                             System.out.println("override hash is null");
                             return null;
                        OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
                        if(os.last!=null)
                             System.out.println("Last price for ticker " + ticker + " is=" +os.last);
                             Float last=os.last;
                             return last;
                        return null;
                   else if(getPrevious)
                        if(overrideHash==null)
                             return null;
                        OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
                        if(os.previous!=null)
                             Float previous=os.previous;
                             return previous;
                        return null;
         }catch(Exception e)
              System.out.println("Unknown Exception caught in override function");
              e.printStackTrace();
              return null;
    Here is the exception, please help.
    java.rmi.ServerException: RemoteException occurred in server thread; nested exce
    ption is:
    java.rmi.UnmarshalException: invalid method hash
    java.rmi.UnmarshalException: invalid method hash
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknow
    n Source)
    at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at AdminImpl_Stub.override(Unknown Source)
    at StocksTable$12.run(stockstable.java:481)
    Please help,
    Thanks Steve

    By the way, this is how my server calls the client:
    Hashtable otable=(Hashtable)a1.override(false,new String(""),true,false,false,new Hashtable());

  • Server Hung, and came back after some time (WLS 6.1 SP4 / Linux 7.3)

    We are using webogic 6.1 sp4 on Red Hat Linux 7.3 2.96-126, and the server just hangs without any reason.
    The core dump is pasted below, thanks for the help.
    Unexpected Signal : 11 occurred at PC=0x40248304
    Function=(null)+0x40248304
    Library=/usr/java/j2sdk1.4.1_01/jre/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
    - locked <0x475889c0> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(ServerSocket.java:439)
    at java.net.ServerSocket.accept(ServerSocket.java:410)
    at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:26)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:260)
    Dynamic libraries:
    08048000-0804e000 r-xp 00000000 68:03 129264 /usr/java/j2sdk1.4.1_01/jre/bin/java
    0804e000-0804f000 rw-p 00005000 68:03 129264 /usr/java/j2sdk1.4.1_01/jre/bin/java
    40000000-40013000 r-xp 00000000 68:07 128005 /lib/ld-2.2.5.so
    40013000-40014000 rw-p 00013000 68:07 128005 /lib/ld-2.2.5.so
    40014000-40017000 r--s 00000000 68:03 193396 /usr/java/j2sdk1.4.1_01/jre/lib/ext/dnsns.jar
    40018000-40025000 r-xp 00000000 68:07 48008 /lib/i686/libpthread-0.9.so
    40025000-4002c000 rw-p 0000d000 68:07 48008 /lib/i686/libpthread-0.9.so
    4002c000-4002e000 r-xp 00000000 68:07 128018 /lib/libdl-2.2.5.so
    4002e000-4002f000 rw-p 00001000 68:07 128018 /lib/libdl-2.2.5.so
    4002f000-40347000 r-xp 00000000 68:03 17046 /usr/java/j2sdk1.4.1_01/jre/lib/i386/client/libjvm.so
    40347000-404fb000 rw-p 00317000 68:03 17046 /usr/java/j2sdk1.4.1_01/jre/lib/i386/client/libjvm.so
    4050b000-4051d000 r-xp 00000000 68:07 128022 /lib/libnsl-2.2.5.so
    4051d000-4051e000 rw-p 00012000 68:07 128022 /lib/libnsl-2.2.5.so
    40520000-40541000 r-xp 00000000 68:07 48006 /lib/i686/libm-2.2.5.so
    40541000-40542000 rw-p 00020000 68:07 48006 /lib/i686/libm-2.2.5.so
    40542000-4054b000 r-xp 00000000 68:03 145301 /usr/java/j2sdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so
    4054b000-4054c000 rw-p 00008000 68:03 145301 /usr/java/j2sdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so
    4054d000-4055d000 r-xp 00000000 68:03 353739 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libverify.so
    4055d000-4055f000 rw-p 0000f000 68:03 353739 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libverify.so
    4055f000-40580000 r-xp 00000000 68:03 353728 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libjava.so
    40580000-40582000 rw-p 00020000 68:03 353728 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libjava.so
    40582000-40597000 r-xp 00000000 68:03 353740 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libzip.so
    40597000-40599000 rw-p 00014000 68:03 353740 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libzip.so
    40599000-41c67000 r--s 00000000 68:03 64920 /usr/java/j2sdk1.4.1_01/jre/lib/rt.jar
    41caa000-41cc1000 r--s 00000000 68:03 64928 /usr/java/j2sdk1.4.1_01/jre/lib/sunrsasign.jar
    41cc1000-41d32000 r--s 00000000 68:03 64923 /usr/java/j2sdk1.4.1_01/jre/lib/jsse.jar
    41d32000-41d45000 r--s 00000000 68:03 64922 /usr/java/j2sdk1.4.1_01/jre/lib/jce.jar
    41ffb000-41fff000 r--s 00000000 68:02 16080 /opt/cms/config/mydomain/applications/.wlnotdelete/wl_management_internal241202.war
    41fff000-42000000 r--s 00000000 68:02 64421 /opt/cms/config/mydomain/applications/.wlnotdelete/wlap49562/sessionmgr.jar
    42000000-4212c000 r-xp 00000000 68:07 48004 /lib/i686/libc-2.2.5.so
    4212c000-42131000 rw-p 0012c000 68:07 48004 /lib/i686/libc-2.2.5.so

    We are using webogic 6.1 sp4 on Red Hat Linux 7.3 2.96-126, and the server just hangs without any reason.
    The core dump is pasted below, thanks for the help.
    Unexpected Signal : 11 occurred at PC=0x40248304
    Function=(null)+0x40248304
    Library=/usr/java/j2sdk1.4.1_01/jre/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
    - locked <0x475889c0> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(ServerSocket.java:439)
    at java.net.ServerSocket.accept(ServerSocket.java:410)
    at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:26)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:260)
    Dynamic libraries:
    08048000-0804e000 r-xp 00000000 68:03 129264 /usr/java/j2sdk1.4.1_01/jre/bin/java
    0804e000-0804f000 rw-p 00005000 68:03 129264 /usr/java/j2sdk1.4.1_01/jre/bin/java
    40000000-40013000 r-xp 00000000 68:07 128005 /lib/ld-2.2.5.so
    40013000-40014000 rw-p 00013000 68:07 128005 /lib/ld-2.2.5.so
    40014000-40017000 r--s 00000000 68:03 193396 /usr/java/j2sdk1.4.1_01/jre/lib/ext/dnsns.jar
    40018000-40025000 r-xp 00000000 68:07 48008 /lib/i686/libpthread-0.9.so
    40025000-4002c000 rw-p 0000d000 68:07 48008 /lib/i686/libpthread-0.9.so
    4002c000-4002e000 r-xp 00000000 68:07 128018 /lib/libdl-2.2.5.so
    4002e000-4002f000 rw-p 00001000 68:07 128018 /lib/libdl-2.2.5.so
    4002f000-40347000 r-xp 00000000 68:03 17046 /usr/java/j2sdk1.4.1_01/jre/lib/i386/client/libjvm.so
    40347000-404fb000 rw-p 00317000 68:03 17046 /usr/java/j2sdk1.4.1_01/jre/lib/i386/client/libjvm.so
    4050b000-4051d000 r-xp 00000000 68:07 128022 /lib/libnsl-2.2.5.so
    4051d000-4051e000 rw-p 00012000 68:07 128022 /lib/libnsl-2.2.5.so
    40520000-40541000 r-xp 00000000 68:07 48006 /lib/i686/libm-2.2.5.so
    40541000-40542000 rw-p 00020000 68:07 48006 /lib/i686/libm-2.2.5.so
    40542000-4054b000 r-xp 00000000 68:03 145301 /usr/java/j2sdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so
    4054b000-4054c000 rw-p 00008000 68:03 145301 /usr/java/j2sdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so
    4054d000-4055d000 r-xp 00000000 68:03 353739 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libverify.so
    4055d000-4055f000 rw-p 0000f000 68:03 353739 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libverify.so
    4055f000-40580000 r-xp 00000000 68:03 353728 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libjava.so
    40580000-40582000 rw-p 00020000 68:03 353728 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libjava.so
    40582000-40597000 r-xp 00000000 68:03 353740 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libzip.so
    40597000-40599000 rw-p 00014000 68:03 353740 /usr/java/j2sdk1.4.1_01/jre/lib/i386/libzip.so
    40599000-41c67000 r--s 00000000 68:03 64920 /usr/java/j2sdk1.4.1_01/jre/lib/rt.jar
    41caa000-41cc1000 r--s 00000000 68:03 64928 /usr/java/j2sdk1.4.1_01/jre/lib/sunrsasign.jar
    41cc1000-41d32000 r--s 00000000 68:03 64923 /usr/java/j2sdk1.4.1_01/jre/lib/jsse.jar
    41d32000-41d45000 r--s 00000000 68:03 64922 /usr/java/j2sdk1.4.1_01/jre/lib/jce.jar
    41ffb000-41fff000 r--s 00000000 68:02 16080 /opt/cms/config/mydomain/applications/.wlnotdelete/wl_management_internal241202.war
    41fff000-42000000 r--s 00000000 68:02 64421 /opt/cms/config/mydomain/applications/.wlnotdelete/wlap49562/sessionmgr.jar
    42000000-4212c000 r-xp 00000000 68:07 48004 /lib/i686/libc-2.2.5.so
    4212c000-42131000 rw-p 0012c000 68:07 48004 /lib/i686/libc-2.2.5.so

  • I have problems with playing movies which are located on a Toledo learning platform. They open and play, however after some time the image goes completely blur, sound stays ok. Several movies have this problem, already checked with school movie is ok.

    so the movie opens and I will see movie + sound for several minutes, however then the image goes blur. School alraedy checked they do not have this problem. So probably it is a problem located on my macbookpro.
    Could someone please help me.
    Already installed latest version of adobe flash player and controlled my security settings of safari.
    How can I check that the movie seruly opens in adobe and for instance not in JW player?

    so the movie opens and I will see movie + sound for several minutes, however then the image goes blur. School alraedy checked they do not have this problem. So probably it is a problem located on my macbookpro.
    Could someone please help me.
    Already installed latest version of adobe flash player and controlled my security settings of safari.
    How can I check that the movie seruly opens in adobe and for instance not in JW player?

  • How to handle TDMS -2519 error that appears after some time?

    Dear all,
    I am having two compactRio devices (cRIO-9074) that are applied for data logging and control. As is convenient, one deterministic loop handles the data acquisition, while another loop handles the data storage.
    The data storage loop basically creates a new TDMS file per data set that is subsequently stored to the disk.
    The whole software operates as expected for some time (at least one day without any issues), but then I get a File I/O error -2519 that is thrown by TDMS open. This error occurs after some time on both compactRio systems. How should I handle this error properly and what may be the probable cause?
    Upon system restart the error disappears and the system continues logging. Therefore, when having this error, I restart the system automatically, but this is to my opinion no proper solution. The fact that the error is cleared upon system restart, seems like it is a resource problem as outlined in: http://forums.ni.com/t5/Real-Time-Measurement-and/2519-error-trying-to-create-a-TDMS-file/td-p/26546... There they recommend using the FPGA programming mode to save on resources. However, I would like to continue using the Scanning Mode Interface instead. To better dedicate the processor resources, I changed the execution options of the different loops and gave Priority to the data acquisition and data storage loop. I also distributed the processes in different Execution Systems, to optimally divide tasks within the real-time processor.
    When I manually neglect the error (just clear the error in the data storage loop), the issue remains for the following data sets that need to be processed. So once the error is thrown, it reoccurs upon trying to store each subsequent data set.
    I also consulted http://forums.ni.com/t5/Real-Time-Measurement-and/tdms-2519-error/m-p/2569381/highlight/true#M13920 where the same error is reported and the solution is to update a .dll file in the installation. However, the installed software in my case appears to be okay. Also in that case, the problem occurred immediately, while in my case the problem arises after some time. Again this indicates towards a resource issue.
    Can you please provide me with some possible solution to overcome this problem? I am looking forward to your opinions. Contact me if anything is unclear within my explanation, or you need additional information.

    Hi gielvdbroeck,
    Good job for the perfect description and for the well researched topic!
    The first thing that comes to my mind is to Format and reinstall the software on the cRIO. This will make sure that you have a clean installation and there is no corruption in the OS.
    One more thing to get into account is the memory. If you do not have enough memory where to store the file it's possible to throw this error. 
    Best,
    Bozhidar

  • HT4623 i was downloading and restoring uodates but after some time showed a txt an error occured. now i m unable to open my mobile jst showing apple sign on display

    i was downloading and restoring uodates but after some time showed a txt an error occured. now i m unable to open my mobile jst showing apple sign on display

    Hi shameemiubat,
    Thanks for visiting Apple Support Communities.
    You can use the steps in this article to restore your iPhone to working order:
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    Best,
    Jeremy

  • IE prompts credentials after some time and we get error rsHttpRuntimeClientDisconnectionError

    Hi all,
    Windows Server 2012
    Reporting Services 2012 SP2
    Internet Explorer 8
    After some time running a report the end user is asked for his credentials again with the authentication prompt.
    In the ExecutionLog we see the Client (IE) has its connection disconnected =
    rsHttpRuntimeClientDisconnectionError
    The server parameter are attached:
    We appreciate any clue.
    Thanks,
    Alex Berenguer
    Alex Berenguer

    Hi Alex,
    Per my understanding that you are running the report for sometime an then IE prompt for credential and you to this kind of error, right?
    Based on my research, the "rsHttpRuntimeClientDisconnectionError" error may occur if:
    Reporting Services creates the report and then goes to send it back to the client
    Reporting Services finds out that the connection has been closed and responds with the disconnection error.
    To resolve the issue, we can try to modify the TCP profile applied to the VIP. 
    Additionally, the issue may also occur due to a RESET coming from something between Report Server and the custom application. For example, an F5 NLB times these connections out on the either an HTTP or TCP level.
    If your problem still exists, please also check if you will got the same problem on the other browser(firefox),you can also provide us more details information about the
    TimeDataRetrieval,TimeProcessing,TimeRendering in the ExecutionLog table.
    Similar thread for your reference:
    ssrs Report taking to much time to load
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • I just brought a apple protection plan as my phone warranty is going to end in a day, when i am trying to enter the protection plan code and my phone serial no its showing an error message try after some time is there any solution to that?

    i just brought a apple protection plan as my phone warranty is going to end in a day, after entering the protection plan code and my phone serial no its showing an error message "technical error try after some time", is there any solution for that?
    As i need the warranty to extend for another year please help me regarding this issue.
    When i bought a new iphone5 in Inda after using it for three days lock button was not working properly and it was warranty claimed and exchanged from apple service center in India, for the same phone I want to extend the warranty but its showing a error message is there any solution?

    Here is some information on the applecare +:
    http://www.apple.com/support/products/iphone.html
    It appears that you have to buy the applecare within 30 days of buying your phone - you said that your phone warranty is almost over, so when did you buy it??? That could be the explanation for the error.

  • TS1702 ios 6 not updated in my new i pad, when i tried to update my i pad after some time a error massage shown and download stoped, same thing happen in i tune , i talked to apple customer care india , aftre talked them i disable my window firewall , and

    dear all i have facing promblem when i download ios 6 in itune, as well as in ipad, when i start download after some time or after 200 to 300mb it stop, and a error msg shown , i have talked to apple india cutomer care and after that i disabled my window firewall, and as well as my antivirius and i also disabled my modem firewall but after that still i m unable to update my new ipad with ios 6

    There is nothing in that other thread that clarifies what you did about Error 3014
    Here is the description of that error:
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • Error! Check Activation and Can't Delete Authorization, getting "Please try after some time"

    Hello,
    I am getting "Error! Check Activation" error message when I try to download epub from acsm file. I found that I should erase and re-authorize. When I try to erase authorization I get, "Please try after some time."
    I need a solution.
    Thanks.

    try this
    I can't de authorize my computer. It just keeps saying to try again later.

  • BFF62048 Error after some time

    Hello everyone,
    I need CAN to communicate between a converter and our test cell. I use an NI PCMCIA-CAN/2 Card and LabVIEW 2012 SP 1. My program works fine but after some time I get an the error BFF62048. I know what it means but I don't know where the problem is nor how to solve it.
    I use the Channel API for programming the CAN-communication.
    The problem is I need to write at different timings on the can. Some messages need to be sent at 12ms others at 100ms. Therefore I initialized the messages in different tasks.
    For CAN 1  have 1 readtask and 4 writetasks. For CAN 2 I have 1 readtask and 2 writetasks. I hope it is not too much for this little card.
    The readtasks were both executed at 10ms after each other. The writetasks are executed in several parallel loops, except for one writetask. I need to send back an "alive value" immediately, so I read a value from my CAN-read-array and put it back on the CAN with a writetask. Which means I have to access the card 3 times in one loop.
    I reduced the execution of my CAN-read-loop from 10ms to 20ms and the program runs much longer. (from ~30 min to 4 hours)
    In my opinion the problem should occur immediately after I started my program not after some hours.
    If someone have some advices for me, that would be great.
    Thanks,
    Rino

    I use Labview 2012 (fully updated). Driver Version is 2.7.4
    I don't think there is a problem with the bus load. Only 50 % of the capacity is used.
    Unfortunately we are in lack of hardware, but I'm sure my code will work on a "real" PCI-CAN card. Is it possible, that the PCMCIA-card maybe has a problem with too many tasks? I couldn't find any information regarding the task limit in the hardware specification or I'm blind
    I attached the project as *.zip file. I had to remove the can database files (*.dbc) because they are confidential.
    Attachments:
    Abnahme_629.zip ‏1058 KB

  • TS1814 i wana restore my iphone 3g but when i restore it with itunes after some time is say  '' iphone could not restored unknow error 1015 '' help me please

    i wana restore my iphone 3g but when i restore it with itunes after some time is say  '' iphone could not restored unknow error 1015 '' help me please

    99% because your iPhone was hacked/jailbroken. We cannot help you, see terms of use.
    Error 1015: This error is typically caused by attempts to downgrade the software for an iPhone, iPad, or iPod touch. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version isn't supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you're now trying to restore to an authorized, default state.

  • When i download any file it start in a second but when i pause the downloading file & after some time when i open it amessage flash 'download error' source file could not be read please try again later or contact the server administrator.

    when i download any file it works frequently and downloading start in a second but when i pause the downloading file & after some time when i open it,The downloading not start proper and after some time a message flash 'download error' source file could not be read please try again later or contact the server administrator.

    I downloaded the Microsoft Autoruns package and ran it.  There are no programs in the LSA Providers tab, and Apple's Bonjour is the only program in the Winsock Providers tab.  I also did the "netsh winsock reset" and rebooted.  It didn't fix the problem.  Any more ideas?

  • I'm unable to deauthorize my computer.  Getting an error message "Unable to erase authorization.  Please try again after some time."

    I'm unable to deauthorize my computer.  Getting an error message "Unable to erase authorization. Please try again after some time."

    ok, please try below steps,
    1. Quit ADE.
    2. Choose Start > Run.
    3. In the Open text box, type regedit and then press Enter. The Registry Editor opens.
    4. In the left pane of the Registry Editor, locate the following registry key:
         HKEY_CURRENT_USER\Software\Adobe\Adept
    5. Right-click the Adept key and choose Delete.
    6. In the Confirm Key Delete dialog, click OK.
    Your authorization will be deleted.
    ADE will be deauthorized now.
    Now Authorize ADE again.

Maybe you are looking for