Problem with synchronizing

Hi everyone, I have a big problem with my iPod.
It is a 120GB(with Windows Vista...), and when I plug the USB cable in the port, my iPod shows Connected, Eject before disconnecting, but iTunes is unable to read my iPod. I've tried to sync it with disk mode, and although my iPod appears, I'm not able to restore my data because the operation stops instantly at midway(along with error 1439, or something like that).
Does anyone have a solution?
Thanks

has the same issue, mine i got error coe 1437 and 48.. help?

Similar Messages

  • Problems with synchronizing iCal with iCloud accounts on my Mac Pro

    I have problems with synchronizing iCal with iCloud calender accounts on my Mac Pro runnning OS 10.6.8
    (error message "HTTP/1.1 403 Forbidden" på handlingen CalDAVAccountRefreshQueueableOperation.)
    It works fine on iOS devices.

    Due to lacking hardware driver compatibility i our graphic production environment we can't upgrade to Lion.
    Does that mean that it after the closing of MobileMe is impossible to synchronize calenders to Mac's running OS 10.6.8 ??

  • Problems with synchronizing

    Hello,
    I am fairly new to using Dreamweaver CS5, but suddenly am having problems with synchronizing my projects. It was working fine until a few days ago, but I'll just list the steps of what happens now to try to make it clear.
    I refresh and click the sync button.
    I choose 'selected local files only' and 'put newer files to remote,' then 'preview.
    Then, Dreamweaver says it's connecting to my server, retreiving folder information, then complete.
    After that, it says that it's putting file temp2342.htm on my server.
    Then it says no synchronization is necessary...even though I do have newer files which haven't been put on my server.
    I've tried 'putting' individual files on the server, but it says 'file activity incomplete. 1 or more files not completed.'
    Up until a few days ago, the synchronization would work just fine and put the newer files on my server. I'm not sure what kind of setting I might have changed between now and then, but any ideas on how to fix this problem would be much appreciated!

    Call our customer care, they'll sort this out. You can find the details from "contact us" link on top of this page.

  • Problem with synchronous calls

    Hello XI friends,
    I'm having a problem with a synchronous message sending through a RFC.
    This is the scenario I'm having. I call the RFC, the message is delivered to XI, and XI delivers de message to the Legacy System, this system responds to XI and XI delivers the message back to the SAP system.
    But after doing some successful tests with the RFC, for somehow the whole message is delivered to the Legacy System, and XI shows that has delivered back the message to the SAP system, but the RFC stays Idle, as if it was waiting for a response, after a while, the RFC gets a Dump with the following error:
    "call to messaging system failed:
    In order to get it working again, I'm doing a Restart of the J2EE instance, but after another series of tests with the same RFC, the problem comes up again.
    Does anyone knows what could be happening? 
    Thank you,
    Felipe
    Message was edited by: Felipe Andres Contreras

    Hi Felipe,
    Are you using a standard SAP RFC or a customized RFC interface???
    I would also suggest to check the System dumps in the SAP system where the RFC is hanging.
    Thanks
    Prasad

  • Performance problem with synchronized singleton

    I'm using the singleton pattern to cache incoming JMS Message data from a 3rd party. I'm seeing terrible performance though, and I think it's because I've misunderstood something.
    My singleton class stores incoming JMS messages in a HashMap, so that successive messages can be checked to see if they are a new piece of data, or an update to an earlier one.
    I followed the traditional examples of a private constructor and a public getInstance method, and applied the double-checked locking to the latter. However, a colleague then suggested that all my other methods in the same class should also be synchronized - is this the case or am I creating an unnecessary performance bottleneck? Or have I unwittingly created that bottleneck elsewhere?
    package com.mycode;
    import java.util.HashMap;
    import java.util.Iterator;
    public class DataCache {
        private volatile static DataCache uniqueInstance;
        private HashMap<String, DataCacheElement> dataCache;
        private DataCache() {
            if (dataCache == null) {
                dataCache = new HashMap<String, DataCacheElement>();
        public static DataCache getInstance() {
             if (uniqueInstance == null) {
                synchronized  (DataCache.class) {
                    if (uniqueInstance == null) {
                        uniqueInstance = new DataCache();
            return uniqueInstance;
        public synchronized void put(String uniqueID, DataCacheElement dataCacheElement) {
            dataCache.put(uniqueID, dataCacheElement);
        public synchronized DataCacheElement get(String uniqueID) {
            DataCacheElement dataCacheElement = (DataCacheElement) dataCache.get(uniqueID);
            return dataCacheElement;
        public synchronized void remove(String uniqueID) {
            dataCache.remove(uniqueID);
        public synchronized int getCacheSize() {
         return dataCache.keySet().size();
         * Flushes all objects from the cache that are older than the
         * expiry time.
         * @param expiryTime (long milliseconds)
        public synchronized void flush(long expiryTime) {
            String uniqueID;
            long currentDate = System.currentTimeMillis();
            long compareDate = currentDate - (expiryTime);
            Iterator<String> iterator = dataCache.keySet().iterator();
            while( iterator.hasNext() ){
                // Get element by unique key
                uniqueID = (String) iterator.next();
                DataCacheElement dataCacheElement = (DataCacheElement) get(uniqueID);
                // get time from element
                long lastUpdatedDate = dataCacheElement.getUpdatedDate();
                // if time is greater than 1 day, remove element from cache
                if (lastUpdatedDate <  compareDate) {
                    remove(uniqueID);
        public synchronized void empty() {
            dataCache.clear();
    }

    m0thr4 wrote:
    SunFred wrote:
    m0thr4 wrote:
    I [...] applied the double-checked locking
    Which is broken. http://www.ibm.com/developerworks/java/library/j-dcl.html
    from the link:
    The theory behind double-checked locking is perfect. Unfortunately, reality is entirely different. The problem with double-checked locking is that there is no guarantee it will work on single or multi-processor machines.
    The issue of the failure of double-checked locking is not due to implementation bugs in JVMs but to the current Java platform memory model. The memory model allows what is known as "out-of-order writes" and is a prime reason why this idiom fails[b].
    I had a read of that article and have a couple of questions about it:
    1. The article was written way back in May 2002 - is the issue they describe relevant to Java 6's memory model? DCL will work starting with 1.4 or 1.5, if you make the variable you're testing volatile. However, there's no reason to do it.
    Lazy instantiation is almost never appropriate, and for those rare times when it is, use a nested class to hold your instance reference. (There are examples if you search for them.) I'd be willing to be lazy instantiation is no appropriate in your case, so you don't need to muck with syncing or DCL or any of that nonsense.

  • Problem with synchronizing desktop software with Lotus Notes

    Problem: synchronizing between blackberry storm and my pc with the desktop manager. During the settings of the configuration is asked for the location of the NOTES.INI file. The configuration program finds the NOTES.INI file it's self.
    After selecting the NEXT button I get an announcement that the NOTES.INI file can't be opened and the configuration stops.
    I don't know what to do to select the right file or setting so the desktop manager can synchronize with my blackberry.
    I hope somebody can help me with this problem.
    Regards
    Erik

    Hi and welcome to the forums:
    Please read the attached regards your error:
    Thanks,
    Bifocals
    Please remember to resolve your thread.
    Put the check mark in the green box that contained your answer! Thanks   
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB01534&sliceId=2&docTy...
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Problems with synchronous message in XI

    Hi
       I have the following scenario involving XI 3.0 ( SP 12 )
    XI has exposed a webservice ( WS provider ) and this webservice is being called from a web application. On receiving the webservice call, XI synchronously calls a RFC on the SAP backend and the response is mapped back as a webservice soap response to the calling web application.
    Now, I see sometimes ( not always ) - the incoming message from the web application has a status in SXMB_MONI -
    <b>Message scheduled (commit follows)</b>
    with a green flag and this message is never processed - i.e The message comes into XI from the webservice call - but beyond this - there is no call to the RFC receiver adapter ( the receiver adapter- comm channel  is ok as seen in the adapter monitoring )
    Since synchronous messaging does not involve any queues ( I hope my understanding is right ), I am not sure why this occurs and what to do to push the message forward in this synchronous messaging scenario ??
    Thank you in advance for your time .

    Hm we have a slightly different version of that problem.
    The message is wirtten into a queue, gets the green flag and the message is processed.
    But the flag as well as the status stay...
    Has anyone soem background information about how the queuing and scheduling and execution planning is done?
    I have quite an idea about queue filters and how to set-up queues. But I have no idea how the synchronous stuff fits in and what this "Message scheduled (commit follows)" exactly means.
    Cheers,
    helge

  • Problem with Synchronous abap proxy time out

    Hi there.
    I have the following scenario:
                      sync                   sync
    3rd party <-->  PI    <--
    >  ERP
                       http                    abap proxy
    In the implementing class on the abap proxy i'm calling an standard BAPI, followed by a commit and returning the result.
    The 3rd party app has a mechanism that when a message fails, he'll retry each 5 mins until it gets the response.
    Last night there where some delays on ERP that cause the sync mesages to timeout, the 3rd party retried about 10 times to send the message until it finally went off. This morning i check and i have the same message 11 times on ERP!!, to my understanding if the sync comm timed out the process will abort and  the message will not be processed on ERP, does anybody knows if im missing some configuration for this to work this way??.
    Kind Regards,
    Roberto.

    Hi Roberto.
    There are a lot of time out configures in PI .
    Follow the link that explain about this:
    How to Investigate Timeouts In Synchronous XI PI Scenarios
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c059d583-a551-2c10-e095-eb5d95e03747
    I hope to help you.
    If you still keep this problem, you can ask me more about it.
    Regards..
    Bruno.

  • Problem with Synchronous Scenario

    Hello Experts,
    Right now i am working on a synchronous scenario RFC <-> 3rd party.
    RFC, with other data, passing one table to XI and 3rd party, but in response RFC will require the same table back.
    Now here in XI we are not storing synchronous messages in success case. So can anyone tell me that if i want that table in reply also, what should i do?
    I was thinking of option that while i communicate with 3rd party, we will create file also in which i will store that table data with the message Id, and while i will get reply back from 3rd party i will read this data from the file and then will pass it back to RFC.
    But m not sure that in response how i will read that file? and will i be able to delete that file or not?
    Please reply me as soon as possible as i have to give this option to my client.
    Hope the question is clear.
    Thanks and Regards,
    Hetal

    Hey,
      you can do this in a couple of ways.
    Fisrt, you can create a file as already mentioned and access the file from your server.
    second, you can create an internal table and access it via hash map.
    for both the solutions you need to create a udf.
    regards,
    Milan.

  • Problems with synchronizing an element in an array

    I have a class that extends ArrayList. I have another class called "Elem" that works as elements for the ArrayList. Multiple threads will work on this list.
    When I get an element from the ArrayList I would like to lock only this element so another thread can delete other elements in the list.
    I have made this method for getting and locking an element:
         public String get(int id)
              String res ="No such file, try command list";
              int size = this.size();
              for (int i = 0; i<size;i++)
                   Elem ifo = (Elem)this.get(i);
                   if(ifo.getId() == id)
                        synchronized(ifo)
                             try {
                                  Thread.sleep(4000);
                             } catch (InterruptedException e) {
                                  e.printStackTrace();
                             res = ifo.getData() + " Received";
                        break;
              return res;
         }I have made the operation last for 4 seconds because I test if the object is locked with the follwing delete method:
         public synchronized String del(int id)
              String res =" no file";
              int size = this.size();
              for (int i = 0; i<size;i++)
                   Elem ifo = (Elem)this.get(i);
                   if(ifo.getId() == id)
                        super.remove(ifo);
                        res = ifo.getId() + " deleted!";
                        break;
              return res;
         }But when I run the program and start reading an element that I try to delete at the same time it gets deleted! Why does the "del" method not block until the element has been read?

    Ok here is what I am trying to do.
    1) Thread 1 get an element from list A. At the SAME
    time thread 2 deletes a different element from list
    A.Everything I've said still applies. What do you mean "at the SAME time"? And why does it have to be "at the SAME time"? What if whatever triggers cause the two actions happen "at the SAME time," but the actual actions happen a millisecond apart?
    currently only serial execution works, since all the
    methods on the list are synchronized.Again, anytime you're accessing shared data from multiple threads, you must synchronize. That syncing may be very, very brief--say just to atomically update a counter or "available" bitmap or something, but if there's shared data--such as a bitmap that keeps track of which slots are used--read/updates, like "find an available one, mark it used, and give me its index"--must be atomic, so there must be some synchronization.
    Or else different threads get different sections of the array assigned to them.

  • Problems with synchronizing 4 clips

    Hi, I try to synchonize 4 clips with different formats. Final cut seems to be a little chaotic with building a new synchronized clip. sometimes it uses cam 4 sometimes cam 1 and at everytime the output format is like the root cam. can I choose the root cam?
    Heeeeelp!!!

    Ok Tom, thanks a lot for trying to help me and I try to explain a little more detailed.
    I´ve recorded 4 tracks with 3 cams full HD 50p and with one cam full HD 30p.
    I do all my cuts with 4 views, that must be seen all once on the screen. Not possible with multi cam cut.
    I syncronize the clips and it all worked fine, but since the last 2 videos,final cut used, for whatever reason, the 4th cam to generate a syncronized clip with 30p and named it new syncronized clip cam4.
    Then I´ve checked all the videos and recognized, that final cut always uses one clip as a (I call it) master or root clip to take it´s settings for the new clip. I found no possibility to tell final cut, which clip it should take for the correct settings.
    Any Idea?

  • Problems with synchronizing my agenda

    Hi everyone and all you experts!
    My ipod works great and even sychronizes with my contacts, BUT....synchronizing with my agendas in Microsoft Outlook doesn't work, and iTunes doesn't tell me why...
    Anyone?
    Thanks in advance!
    Ray

    Read this post: it gives you a solution.
    http://discussions.apple.com/thread.jspa?messageID=1617625#1617625
    PC, sorry...   Windows XP Pro  

  • Problem with Synchronized block

    Hi,
    For me synchronized key word is not working (?) :-(
    Here is the example :
    I have three classes
    package sample.test;
    public class TestThreadMain {
         public static void main(String[] args) {
              Thread t1 = new ThreadOne();
              Thread t3 = new ThreadOne();
              t1.start();
              t3.start();
    public class TestThread {
         int k = 0;
         public synchronized void method1(){
              System.out.println("Entered into method1 >>>>>>>>>");
              for (int i=0; i<1000; i++){
                   for (int j=0; j<100000; j++){
                        k = j * 12345;
                   System.out.println("method1 i value is "+i);
    package sample.test;
    public class ThreadOne extends Thread {
         TestThread t1 = new TestThread();
         public void run() {
                   t1.method1();
    If I run "TestThreadMain" class output is
    Entered into method1 >>>>>>>>>
    method1 i value is 0
    method1 i value is 1
    method1 i value is 2
    method1 i value is 3
    method1 i value is 4
    method1 i value is 5
    method1 i value is 6
    method1 i value is 7
    method1 i value is 8
    method1 i value is 9
    method1 i value is 10
    method1 i value is 11
    method1 i value is 12
    method1 i value is 13
    method1 i value is 14
    method1 i value is 15
    method1 i value is 16
    method1 i value is 17
    method1 i value is 18
    method1 i value is 19
    method1 i value is 20
    method1 i value is 21
    method1 i value is 22
    method1 i value is 23
    method1 i value is 24
    method1 i value is 25
    method1 i value is 26
    method1 i value is 27
    method1 i value is 28
    method1 i value is 29
    method1 i value is 30
    method1 i value is 31
    method1 i value is 32
    method1 i value is 33
    method1 i value is 34
    method1 i value is 35
    method1 i value is 36
    method1 i value is 37
    method1 i value is 38
    method1 i value is 39
    method1 i value is 40
    method1 i value is 41
    method1 i value is 42
    method1 i value is 43
    method1 i value is 44
    method1 i value is 45
    method1 i value is 46
    method1 i value is 47
    method1 i value is 48
    method1 i value is 49
    method1 i value is 50
    method1 i value is 51
    method1 i value is 52
    method1 i value is 53
    method1 i value is 54
    method1 i value is 55
    method1 i value is 56
    method1 i value is 57
    method1 i value is 58
    method1 i value is 59
    method1 i value is 60
    method1 i value is 61
    method1 i value is 62
    method1 i value is 63
    method1 i value is 64
    method1 i value is 65
    method1 i value is 66
    method1 i value is 67
    method1 i value is 68
    method1 i value is 69
    method1 i value is 70
    method1 i value is 71
    method1 i value is 72
    method1 i value is 73
    method1 i value is 74
    method1 i value is 75
    method1 i value is 76
    method1 i value is 77
    method1 i value is 78
    method1 i value is 79
    method1 i value is 80
    method1 i value is 81
    method1 i value is 82
    method1 i value is 83
    method1 i value is 84
    method1 i value is 85
    method1 i value is 86
    method1 i value is 87
    method1 i value is 88
    method1 i value is 89
    method1 i value is 90
    method1 i value is 91
    method1 i value is 92
    method1 i value is 93
    method1 i value is 94
    method1 i value is 95
    method1 i value is 96
    method1 i value is 97
    method1 i value is 98
    method1 i value is 99
    method1 i value is 100
    method1 i value is 101
    method1 i value is 102
    method1 i value is 103
    method1 i value is 104
    method1 i value is 105
    method1 i value is 106
    method1 i value is 107
    method1 i value is 108
    method1 i value is 109
    method1 i value is 110
    method1 i value is 111
    method1 i value is 112
    method1 i value is 113
    method1 i value is 114
    method1 i value is 115
    method1 i value is 116
    method1 i value is 117
    method1 i value is 118
    method1 i value is 119
    method1 i value is 120
    method1 i value is 121
    method1 i value is 122
    method1 i value is 123
    method1 i value is 124
    method1 i value is 125
    method1 i value is 126
    method1 i value is 127
    method1 i value is 128
    method1 i value is 129
    method1 i value is 130
    method1 i value is 131
    method1 i value is 132
    method1 i value is 133
    method1 i value is 134
    method1 i value is 135
    method1 i value is 136
    method1 i value is 137
    method1 i value is 138
    method1 i value is 139
    method1 i value is 140
    method1 i value is 141
    method1 i value is 142
    method1 i value is 143
    method1 i value is 144
    method1 i value is 145
    method1 i value is 146
    method1 i value is 147
    method1 i value is 148
    method1 i value is 149
    method1 i value is 150
    method1 i value is 151
    method1 i value is 152
    method1 i value is 153
    method1 i value is 154
    method1 i value is 155
    method1 i value is 156
    method1 i value is 157
    method1 i value is 158
    method1 i value is 159
    method1 i value is 160
    method1 i value is 161
    method1 i value is 162
    method1 i value is 163
    method1 i value is 164
    method1 i value is 165
    method1 i value is 166
    method1 i value is 167
    method1 i value is 168
    method1 i value is 169
    method1 i value is 170
    method1 i value is 171
    method1 i value is 172
    method1 i value is 173
    method1 i value is 174
    method1 i value is 175
    method1 i value is 176
    method1 i value is 177
    method1 i value is 178
    method1 i value is 179
    method1 i value is 180
    method1 i value is 181
    method1 i value is 182
    method1 i value is 183
    method1 i value is 184
    method1 i value is 185
    method1 i value is 186
    method1 i value is 187
    method1 i value is 188
    method1 i value is 189
    method1 i value is 190
    method1 i value is 191
    method1 i value is 192
    method1 i value is 193
    method1 i value is 194
    method1 i value is 195
    method1 i value is 196
    method1 i value is 197
    method1 i value is 198
    method1 i value is 199
    method1 i value is 200
    method1 i value is 201
    method1 i value is 202
    Entered into method1 >>>>>>>>>
    method1 i value is 0
    method1 i value is 1
    method1 i value is 2
    method1 i value is 3
    method1 i value is 4
    method1 i value is 5
    method1 i value is 6
    method1 i value is 7
    method1 i value is 8
    method1 i value is 9
    method1 i value is 10
    method1 i value is 11
    method1 i value is 12
    method1 i value is 13
    method1 i value is 14
    method1 i value is 15
    method1 i value is 16
    method1 i value is 17
    method1 i value is 18
    method1 i value is 19
    method1 i value is 20
    method1 i value is 21
    method1 i value is 22
    method1 i value is 23
    method1 i value is 24
    method1 i value is 25
    method1 i value is 26
    method1 i value is 27
    method1 i value is 28
    method1 i value is 29
    method1 i value is 30
    method1 i value is 31
    method1 i value is 32 .....
    My question is as i delcared the method " method1()" as synchronized, after completion of printing the first 1000 only second thread has to enter in to this method.
    Am I wrong any where ?
    Thanks,
    Sudhakar

    1) When you post code, please use[code] and
    [/code] tags as described in
    [url=http://forum.java.sun.com/help.jspa?sec=formattin
    g]Formatting tips on the message entrypage. It makes it much easier to read.
    Sure. I will do it from next time.
    2) Was it really necessary to post 200 lines or so of
    output? Couldn't you have posted just a few to give
    us the general idea?I think it will give better understanding. So ...
    3) It's not clear to me what your question is. Are
    you saying you expected something like
    T1
    T2
    T1
    T2
    etc.
    If so, then you're mistaken. The whole point of
    multithreading is that you don't know or care which
    thread executes which instructions when. There's no
    "execute a statement then switch threads" rule. That
    would occur ridiculous amounts of overhead.As per my understanding, If one thread enters into synchronized method, the other threads needs to wait until the completion of first one.
    So, first it needs to print
    method1 i value is 1
    method1 i value is 2
    method1 i value is 1000
    then second thread should start printing.
    Is my understanding wrong or ... ?

  • Blackberry Pearl 8130 Synchronizing problems with Outlook 2007 Calendar

    Have NEVER had a problem with synchronizing my calendar - now I get a message
    Unable to get an Outlook or MS Exchange record.  Lack of network access can cause this problem.  Retry and if problem persists refer to online topic How do I get technical support."
    I cannot find anything to help me fix this problem.
    Solved!
    Go to Solution.

    Hmmm...strange indeed...OK, then the next thing I can think of is for you to perform a complete start over with DTM:
    I suggest the following steps (insert plenty of reboots of your PC...not just restarts, but full power down reboots). Also, it is advised that you be logged into the PC on an account with full admin rights. Further, under Vista/Win7, use the "Run As Administrator" option for everything.
    1) Remove your device OS update package from your PC (add/remove programs)
    2) Cleanly uninstall the RIM DTM software:
    KB02206 How to perform a clean uninstall of BlackBerry Desktop Software
    3) Get a fresh download of the RIM DTM software:
    https://www.blackberry.com/Downloads/entry.do?code=A8BAA56554F96369AB93E4F3BB068C22
    Choose the version that is newest and (if applicable) compatible with your PIM (if you are synchornizing via USB):
    KB12268 Applications supported by BlackBerry Desktop Manager for synchronization
    4) Download (to your PC) a fresh copy of your device OS package from your carrier:
    http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    5) Install DTM to your PC
    6) Install (also to your PC), the device OS package
    7) Start the organizer configuration over:
    KB17022 How to configure organizer applications for synchronization using BlackBerry Desktop Manager
    Hopefully that will get things going again.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Problem with GDS - FileNotFoundException

    I get the following ERROR under heavy load in the server.log when "converting" xml to pdf(generatePDFOutput). Running lc es2(cluster), jboss 4.3, suse linux 11 sp2.
    2014-09-11 15:35:32,950 ERROR [com.adobe.idp.Document] DOCS001: Unexpected exception. An exception while handling a remote request.
    java.io.FileNotFoundException: /srv/global_document_storage/docm1410442494924/b61c1af1ccf663bd8a37be64903d0388 (No such file or directory)
      at java.io.RandomAccessFile.open(Native Method)
      at java.io.RandomAccessFile.<init>(RandomAccessFile.java:216)
      at com.adobe.util.FileUtil.randomAccessRead(FileUtil.java:297)
      at com.adobe.idp.DocumentPullServant.readData(DocumentPullServant.java:168)
      at com.adobe.idp.DocumentPullServant.pullContent(DocumentPullServant.java:154)
      at com.adobe.idp.IDocumentPullServantPOA._invoke(IDocumentPullServantPOA.java:42)
      at org.jacorb.poa.RequestProcessor.invokeOperation(Unknown Source)
      at org.jacorb.poa.RequestProcessor.process(Unknown Source)
      at org.jacorb.poa.RequestProcessor.run(Unknown Source)
    Any idea? No luck with increasing the document disposal timeout or sweep interval...

    Our pdf-files is about the size of 130 kb.
    With the current configuration we have set the document max-inline-size to 512 kb. Now the FileNotFoundException to the GDS has disapeared. But i still wonder why this error was shown when we used the GDS instead on the memory.....
    Could it be problem with Synchronizing clock times in our cluster..?
    Now and then we have another FileNotFoundException ERROR  in the tmp-directory. In what way are LC using this directory..?
    2014-09-18 23:33:58,067 ERROR [com.adobe.idp.Document] DOCS001: Unexpected exception. While doing first time passivation for a document..
    com.adobe.idp.DocumentError: java.io.FileNotFoundException: /tmp/AdobeDocumentStorage/local/docm1411075483830/c694140f75dc873cf6c26afd8e73f57e (No such file or directory)
    at com.adobe.idp.Document.passivateInitData(Document.java:1461)
    at com.adobe.idp.Document.passivate(Document.java:1241)
    at com.adobe.idp.DocumentCallback.handleRemotePassivation(DocumentCallback.java:145)
    at com.adobe.idp.DocumentCallback.handleRemotePassivation2(DocumentCallback.java:189)
    at com.adobe.idp._IDocumentCallbackImplBase._invoke(_IDocumentCallbackImplBase.java:71)
    at org.jacorb.orb.ORB$HandlerWrapper._invoke(Unknown Source)
    at org.jacorb.poa.RequestProcessor.invokeOperation(Unknown Source)
    at org.jacorb.poa.RequestProcessor.process(Unknown Source)
    at org.jacorb.poa.RequestProcessor.run(Unknown Source)
    Caused by: java.io.FileNotFoundException: /tmp/AdobeDocumentStorage/local/docm1411075483830/c694140f75dc873cf6c26afd8e73f57e (No such file or directory)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:120)
    at com.adobe.idp.Document.passivateInitData(Document.java:1457)
    ... 8 more

Maybe you are looking for