Write/Read Synchronization Problem

Hi there,
we have a little problem reading objects from the DB shortly after updating them.
After we commit the UnitOfWork we do a ReadObjectQuery. Sometimes (about evry 6-10th time) the ReadObjectQuery return an object with outdated data (the state like before the commit).
I inserted an initializeAllIdentityMaps() between the write and the read, but that didn't help.
I inserted a Thread.sleep() after the write which fixes the problem, but I'm not willing to accept this as a solution. There must be a better way than active waiting for the changes to complete.
I'm looking for notification mechanism to find out if the commit is complete and the read-cache is ready to use.
Any suggestions?
Thanks,
Tassilo.

Thanks for your help, Don.
I think we can exclude race conditions. This happens in a single thread in a single Method.
But I forgot to post one important information (I'm sorry for that): We are still using TOPLink 3.6
I tried to boil the problem down to a minimal test that reproduces the effect: The following code reads an object form the DB, sets on of its reference to null, commits it, sets the reference back to the original value and commits again.
Then it reads the same object again from the DB and in 4 out of 20 tries the reference is still null. A second read always brings up the right reference. The ratio 4 of 20 is not constant, sometimes it's over 10 fails in 20 tries, in some rare cases all 20 tries work out fine.
I have no clue what is going on here. I'll appreciate any help.
public void testMethod(){
for (int i = 0; i < 20; i++) {
long myOid = 19618;
ClientSession clientSession = ServerSession.getClientSession();
UnitOfWork uow = clientSession.acquireUnitOfWork();
CoObject object = CoObject.findWhereObjectIdExists(clientSession, myOid); /* this is a ReadObjectQuery*/
CoContent content = object.getCoContent();
CoObject objectClone = (CoObject) uow.registerObject(object);
CoContent contentClone = (CoContent) uow.registerObject(content);
objectClone.setCoContent(null);
uow.commitAndResume();
objectClone.setCoContent(contentClone);
uow.commit();
// uow.initializeAllIdentityMaps(); /* doesn't make a difference */
/* now we read the same Object the DB again */
object = CoObject.findWhereObjectIdExists(clientSession, myOid);
System.out.println(i + "object.getCoContent(): " + object.getCoContent()); /* ouch! */
try {
Thread.sleep(500); /* this helps, but hurts! */
catch (Exception e) {
object = CoObject.findWhereObjectIdExists(clientSession, myOid);
System.out.println(i + "neu object.getCoContent(): " + object.getCoContent());
0 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
0 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
1 object.getCoContent(): null
1 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
2 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
2 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
3 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
3 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
4 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
4 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
5 object.getCoContent(): null
5 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
6 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
6 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
7 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
7 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
8 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
8 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
9 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
9 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
10 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
10 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
11 object.getCoContent(): null
11 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
12 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
12 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
13 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
13 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
14 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
14 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
15 object.getCoContent(): null
15 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
16 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
16 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
17 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
17 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
18 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
18 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
19 object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]
19 neu object.getCoContent(): CoFlexTyp[ID=16226.0 Name=Checkthisout, Object-Id=19618.0]

Similar Messages

  • Xcode writting/reading file problem

    Hi,
    im using xcode to compile in c  language, but im having problem with files, writting/reading simply doesnt work (to be exact i have to say that i copied source code to dev-c++ on windows platform to check the code and it works normaly as it should) any suggestions?
    #include <stdio.h>
    #include <stdlib.h>
    #include <math.h>
    int main (int argc, const char * argv[])
      char tekst[]="tujesttekstktorychchcezapisacdopliku";
              char tekst2[20];
      FILE *plik;   /*r=read, w=write, rwx-obydwachyba, wb-tryb binarny*/
              if ((plik=fopen("text", "w"))==NULL)
      printf("plik nie zostal otworzony");
              fprintf(plik, "%s" ,tekst);  /*wpisanie tekstu*/
              fscanf(plik, "%s",tekst2);
      printf("tekst2: %s\n", tekst2);
              if (fclose(plik)!=0)
      printf("blad przy zamykaniu");
        printf("Hello, World!\n");
        return 0;
    the result of this program is "hello world" ONLY.
    file is clean, same thing with test2 variable.
    in copied code opening mode is "w" but ive checked almost all options ofc including binary file modes (both doesnt work)
    any suggestions?
    Message was edited by: Entwu

    while( (len = in2.read(b,0,1024)) != -1 )
    bytcount=bytcount+1024;
    inFile.write(b,0,1024);
    } This is where you go wrong ... suppose you're reading, say 100 bytes instead of the maximum 1024;
    you're still writing 1024 bytes instead of those 100 bytes; your 'bytcount' goes berzerk too. Have a
    look at this -- while( (len = in2.read(b,0,1024)) != -1 ) {
       bytcount=bytcount+len;
       inFile.write(b,0,len);
    } kind regards,
    Jos

  • Write/ Read Keys problem

    hi all,
    I am looking for your advise for the attached vi for writing/ reading keys.
    Facing problem:
    Since the input/ output is of cluster of mixed control types, I am having problem to write & read all settings correctly. I am sure that I must have missed out something IMPORTANT
    I have tried indexing "TypeDesc" to Variant's "Type" input as well as Fixed it DBL/ I32. However, both methods do not seem working well. I am still having problems with "Use Dirty Transmitter"(Boolean) and "arrays" types.
    Any suggestion would be very much appreciated.
    Best regards
    ian.f
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com
    Attachments:
    P&P_Update_2t.vi ‏145 KB

    Hi Ian.f,
    I always welcome the chance to help a fellow enthusiast. Unfortunetly I think I will be of limited use.
    First let me say that the best resource to answer this question is probably Jeane-Piere Drolet becuase I think he has cracked this nut in some of his code from "OpenG".
    That being said, let me do what I can for now. There are a number of issues that are hitting you. First is the arrays. You are currently reading them as a variant and attempting to convert (this is where Jeane-Piere may be able to help). The data is coming to you as a variant because the array of refnums for the cluster are generic types that handle all data types. If you use a "to more specific" node you can convert these nodes to the actual class of data used. The complication them becomes "which tpye do I convert which ref to?" Agian I think Jeane-Piere has got this figured.
    I have accomplished what you appear to be attempting in a more specific fashion. I will try to outline my approach below.
    1) Make the cluster a strict type def. My appraoch usese the same cluster in more than one place and this will simplify support.
    2) Instead of using refnums to the individual cluster elements, use a refnum for the entire cluster.
    3) When trying to update the cluster, update the ENTIRE cluster. I have not figured out how to update just a part of a cluster using control refs.
    4) When trying to save use a "unbundle" by name to break-out your parts and save them as required for each type.
    5) For the arrays I will create a new section for each array. In that section I will have at minimum a field called "number_of elements" or similar. This filed will get the array length. If there are elements in the array, I will start writing them as "element1",..
    This gives me enough data to put things back together at restore time.
    I am curious how you end up solving this challenge. I have successfully written code that will automatically locate all of the controls and indicators on the front panel of a VI of my choosing and save/restore them from file BUT, it does not support the complex data types like clusters and arrays. I still have to do these explicitely.
    I will watch this question to see if I can help or learn more.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Has anyone not working with .dv files had synchronization problems?

    Has anyone not working with .dv files had sound synchronization problems? I'm not exactly sure what the alternatives to DV are, but I think one of them is HD.
    The reason for asking this question is to help isolate the nature and cause of a very serious flaw in iMovie '11. In the original release of iMovie '11 (version 9.0) there was a small--but serious--synchronization problem. In the 9.01 there is a large synchronization problem. We know of one person who has not experienced the problem, and he is not working with DV files (media). So we want to find out if anyone who is using something other than .dv files is experiencing a lack of synchronization between sound and picture. Knowing the answer to this will help with figuring out where the cause lies. For the initial iMovie '11 release (9.0), you probably would not notice a problem unless you had very long event-clips, e.g., two hours long. Events get this long if you are transferring from analog 8 mm tapes. Even then, it would have to be in scenes in which the connection between event and sound is obvious, e.g., close ups of people talking. It isn't until the 9.01 release that most people would notice anything. All we need to do is establish one case of a synchronization problem in which the person is using something other than DV.
    Message was edited by: Paul Bullen

    Hopefully, the 9.0.2 release will make my question moot. Zyfert must have posted the announcement of the release just as I was formulating my question. Still, if you have information on the subject, it would be interesting to hear.

  • "write on" behavior problem

    I’ve drawn shapes many times with the “write on” behavior. All of a sudden, it’s not working. Here’s the problem. “Write On” completes drawing and then reverses a little bit on the last frame. I included frame shots. If anyone can help, I would appreciate it.
    Side note: I know I can do the same thing with key frames. However, I’d rather solve the “write on” behavior problem.

    Ah, nevermind! I think I may have solved the issue myself. It seems if you click on the Group tab to the left of the main timeline as opposed to the clip within the timeline, it allows you to change the group and scale it while also keeping different elements together. Could be helpful for anyone with a similar question.

  • Write/Read Database with "Jeffrey"-VIs

    Hello,
    i want to write/read a sql-database without-the NI-Toolkit.
    I found while searching here the Tools from Jeffrey which are available here: http://jeffreytravis.com/lost/index.html
    Now i unocked the files and wanted to try t he example "Example - Fetch a Table.vi".
    There is also a demo-database included called: "SampleDatabase.mdb"
    My current problem is that i dont know what to set to the parameter "connection-string" (somehow the filename, but how?)
    Does someone know how to use these files?
    Thx for your help
    Attached the downloaded zip-file with all the data
    Attachments:
    LabSQL-1.1a.zip ‏1132 KB

    I tried to do what the readme says, but i think there is a problem with my windows-installation or something is missing.
    a. Go to
    your Windows Control Panels, and open "ODBC Data Sources"
    b. Click on the "System DSN" tab
    c. Click on the "Add..." button.
    d. From the list of drivers, choose
    "Microsoft Access Driver"
    No problem up to this point, but after i selected the "Microsoft Access Driver" and press "Fertig stellen" the window closes and it look like before, there is nothing like a dialog box (see attached screenshot), so i can´t continue with th points e..g.
    e. At the dialog box, type in
    "myDB" for the Data Source Name. Then click on "Select..."
    button, and find the file "Sample Database.mdb" included with the
    LabSQL examples. Leave everything else as it is, and hit OK.
    f. Close the ODBC control panel
    g. Test the connection by running one of
    the examples provided.
    Is there a way to re-install this part of windows?
    Thanks for your help
    Attachments:
    empty.jpg ‏76 KB

  • Prologix LabVIEW write/read error

    Hello,
    I am a student/research assistant working on a LabVIEW program that was passed on to me from another student. I am not sure what happened between taht time and now but I am having problems with a write/read step from a Prologix GPIB. I have attached the vi code as well as several screen shots. I have checked the read/write module without running the program and I get a green arrow but still get a error code. After running the program, I get an error that is visible in the block diagram. I am really not sure what to do about this. By the way, I am taking measurements from a Homodyne setup. I will appreciate any help or suggestions. Thank you for your time.  
    Solved!
    Go to Solution.
    Attachments:
    Prologix_LabVIEW_Block.jpg ‏150 KB
    Prologix_LabVIEW_read_write.jpg ‏224 KB
    Prologix_LabVIEW_write_read_buffer.jpg ‏216 KB

    I wanted to add more attachments
    Attachments:
    PiezoMeas1_prologix.vi ‏37 KB
    Prologix_LabVIEW_Front.jpg ‏139 KB
    Prologix_driver_software.jpg ‏175 KB

  • Write / read files to RAM memory

    Dear all,
    I want to write a text file to RAM memory and after read it from RAM memory.
    Why? Because, I want to read my text files quickly, in short time.
    if I use default method for reading files it take long time for reading the file and for write the file.
    But, if I use write / read files to RAM memory, I can read my files quickly and read my files from RAM for processing and write my files to HDD.
    Can you help me?
    I searched on the Internet this problem and I did not find any one solution.
    From my searching on the Internet, I understand that Java can not do that.

    The problem with this program is that it load 1 minutes, but I want to load a second.
    Here is my java code:
    import java.io.*;
    public class File {
    public static void main(String[] args) {
    // Start to reading the file
          try{
        FileInputStream fstream1 = new FileInputStream("big.txt");
        DataInputStream in = new DataInputStream(fstream1);
            BufferedReader br = new BufferedReader(new InputStreamReader(in));
        String strLine;
        while ((strLine = br.readLine()) != null)   {
    // Start to replacing method
        String strreplace = "%";
        String result = strLine.replaceAll("a", strreplace);
    // End of replacing method
    // Start to writing to file
          try{
        FileWriter fstream2 = new FileWriter("out.txt", true);
            BufferedWriter out = new BufferedWriter(fstream2);
        out.write(result); // Write to file the result
        out.close();
        }catch (Exception e){
          System.err.println("Error: " + e.getMessage());
    // End of writing to file
        in.close();
        }catch (Exception e){
          System.err.println("Error: " + e.getMessage());
    // End of reading from file
    } // Here is the end...Please to do the following steps:
    1. Copy my code;
    2. Download text file from: [http://norvig.com/big.txt|http://norvig.com/big.txt]
    3. Open the text editor and select all text (Ctr+A) and dublicate the text 10 times for creating a big text file (30-40 MB);
    4. As a java developer, You know what to do next.
    I'm waiting your solution.
    Thanks in advance!

  • Client Synchronization Problem

    Hi All,
    When I am synchronizing for the first time to get deviceid from mobile client
    getting the following error.
    • Synchronization started 
    • Proxy http://xyz:port/meSync/servlet/meSync?~sysid=ABC& 
    • Connection to server failed. 
    • Synchronization problems: Transport-layer (http) sync exception raised (root cause: Exception while synchronizing (java.io.IOException: Not in GZIP format)) 
    Could anybody tell what  I have to do please.
    Regards,
    Ameer Baba

    Hi Abhijit,
    Here it is.
    Trace   
    [20070219 08:57:53:791] I [MI/API/Logging ] ***** LOG / TRACE SWITCHED ON 
    [20070219 08:57:53:791] I [MI/API/Logging ] ***** Mobile Engine version: MI 70 SP 9 Patch 5 Build 200612061055 
    [20070219 08:57:53:791] I [MI/API/Logging ] ***** Current timezone: Indian/Reunion 
    [20070219 08:57:53:791] I [MI ] Trace severity: All (1000) 
    [20070219 08:57:53:791] D [MI/PIOS ] No implementations found. Error Code:(3) 
    [20070219 08:57:53:791] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/trace/trace.jsp' 
    [20070219 08:57:59:808] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20070219 08:57:59:808] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20070219 08:57:59:808] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    [20070219 08:57:59:808] I [MI/API/Sync ] Terminate connection feature is not configured 
    [20070219 08:57:59:808] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/home/home.jsp' 
    [20070219 08:58:01:569] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20070219 08:58:01:569] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20070219 08:58:01:569] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    [20070219 08:58:01:569] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/home/syncpassword.jsp' 
    [20070219 08:58:06:432] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20070219 08:58:06:432] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20070219 08:58:06:432] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    [20070219 08:58:06:432] P [MI/Sync ] Notify R3 called 
    [20070219 08:58:06:432] D [MI/Sync ] There is already a container for method WAF_REGISTRY and user AMEERB in the outbound queue 
    [20070219 08:58:06:432] I [MI/API/Sync ] Terminate connection feature is not configured 
    [20070219 08:58:06:432] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/home/home.jsp' 
    [20070219 08:58:06:447] D [MI/API/Services ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_IN, (null)) 
    [20070219 08:58:06:447] D [MI/API/Services ] MEResourceBundle:Constructor: Use classloader com.sap.ip.me.core.Startup@18fe7c3 
    [20070219 08:58:06:447] D [MI/API/Services ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@d24e3f for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en 
    [20070219 08:58:06:463] D [MI/API/Services ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@d24e3f using bundle name: com/sap/ip/me/awtapps/home/mobile_engine 
    [20070219 08:58:06:463] I [MI/Sync ] Synchronize with backend called, Thread=Thread-27 
    [20070219 08:58:06:463] I [MI/Sync ] Thread=Thread-27 took lock for synchronization. 
    [20070219 08:58:06:463] P [MI/Sync ] Use following gateway for synchronization: http://cymobile:8001 
    [20070219 08:58:06:588] D [MI/SyncMonitor ] New synchronization process has been started 
    [20070219 08:58:06:588] D [MI/Sync ] Synchronisation: Fire SyncEvent 0 
    [20070219 08:58:06:588] D [MI/API/Services ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_IN, (null)) 
    [20070219 08:58:06:588] D [MI/API/Services ] MEResourceBundle:Constructor: Use classloader com.sap.ip.me.core.Startup@18fe7c3 
    [20070219 08:58:06:588] D [MI/API/Services ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@10f41e9 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en 
    [20070219 08:58:06:603] D [MI/API/Services ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@10f41e9 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] D [MI/API/Sync ] SyncEvent com.sap.ip.me.api.sync.SyncEvent[source=com.sap.ip.me.sync.SyncManagerMerger@5bb966] skipped for User because he has not been installed on MW. 
    [20070219 08:58:06:603] P [MI/Sync ] Start updating data completeness flag for user all sync relevant users 
    [20070219 08:58:06:634] P [MI/Sync ] Update data completeness flag for user AMEERB 
    [20070219 08:58:06:634] P [MI/Sync ] Update data completeness flag for user (SHARED) 
    [20070219 08:58:06:634] P [MI/Sync ] Finished updating data completeness flag for user all sync relevant users 
    [20070219 08:58:06:634] P [MI/Sync ] Repetitive sync is turned off 
    [20070219 08:58:06:634] P [MI/Sync ] Synchronization started for user (SHARED) 
    [20070219 08:58:06:634] D [MI/API/Services ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_IN, (null)) 
    [20070219 08:58:06:634] D [MI/API/Services ] MEResourceBundle:Constructor: Use classloader com.sap.ip.me.core.Startup@18fe7c3 
    [20070219 08:58:06:634] D [MI/API/Services ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@b05acd for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en 
    [20070219 08:58:06:634] D [MI/API/Services ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@b05acd using bundle name: com/sap/ip/me/awtapps/home/mobile_engine 
    [20070219 08:58:06:634] D [MI/SyncMonitor ] Sync monitor data file does not exist; use default values 
    [20070219 08:58:06:634] D [MI/SyncMonitor ] Start sync cycle at 20070219085806 (1171875486634) 
    [20070219 08:58:06:634] D [MI/Sync ] PackageManager: old package file C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\package.out was successfully deleted 
    [20070219 08:58:06:634] D [MI/Sync ] PackageManager: create package with maximum 2147483647 items 
    [20070219 08:58:06:650] D [MI/API/Services ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_IN, (null)) 
    [20070219 08:58:06:650] D [MI/API/Services ] MEResourceBundle:Constructor: Use classloader com.sap.ip.me.core.Startup@18fe7c3 
    [20070219 08:58:06:650] D [MI/API/Services ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@1989b5 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en 
    [20070219 08:58:06:650] D [MI/API/Services ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@1989b5 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine 
    [20070219 08:58:06:650] D [MI/Sync ] PackageManager: filled package with 0 acknowledge received container(s) 
    [20070219 08:58:06:650] D [MI/API/Services ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_IN, (null)) 
    [20070219 08:58:06:650] D [MI/API/Services ] MEResourceBundle:Constructor: Use classloader com.sap.ip.me.core.Startup@18fe7c3 
    [20070219 08:58:06:650] D [MI/API/Services ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@a00185 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en 
    [20070219 08:58:06:666] D [MI/API/Services ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@a00185 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine 
    [20070219 08:58:06:666] D [MI/Sync ] PackageManager: filled package with 0 acknowledge container(s) 
    [20070219 08:58:06:666] D [MI/API/Services ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_IN, (null)) 
    [20070219 08:58:06:666] D [MI/API/Services ] MEResourceBundle:Constructor: Use classloader com.sap.ip.me.core.Startup@18fe7c3 
    [20070219 08:58:06:666] D [MI/API/Services ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@c3c315 for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en 
    [20070219 08:58:06:666] D [MI/API/Services ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@c3c315 using bundle name: com/sap/ip/me/awtapps/home/mobile_engine 
    [20070219 08:58:06:666] D [MI/Sync ] PackageManager: filled package with 0 container items or headers 
    [20070219 08:58:06:666] D [MI/Sync ] PackageManager: filled package with 1 notify container(s) 
    [20070219 08:58:06:666] D [MI/SyncMonitor ] Finished outbound preparation at 20070219085806 (1171875486666) 
    [20070219 08:58:06:666] D [MI/Sync ] Package file C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\package.out exists and can be read 
    [20070219 08:58:06:666] P [MI/Sync ] Synchronisation started 
    [20070219 08:58:06:666] D [MI/Sync ] Begin: Dumping file C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\package.out 
    <ID>MISYNC</ID><FLAGS>0x1</FLAGS><VERSION>251500</VERSION> 
    <CONTAINER> 
    <HEADER> 
    <CONTAINER_ID>0110d938dbcae8b4c559</CONTAINER_ID> 
    <OWNER></OWNER> 
    <CONTAINER_TYPE>N</CONTAINER_TYPE> 
    <METHOD></METHOD> 
    <CONVERSATION_ID></CONVERSATION_ID> 
    <PARENT_CONTAINER_ID></PARENT_CONTAINER_ID> 
    <MESSAGE_INDEX>-1</MESSAGE_INDEX> 
    <MESSAGE_TYPE> </MESSAGE_TYPE> 
    <SERVER_ID>NEW_PROTOCOL</SERVER_ID> 
    <BODY_TYPE></BODY_TYPE> 
    <BODY_LENGTH>0</BODY_LENGTH> 
    <SUB_CONTAINER_ID>-1</SUB_CONTAINER_ID> 
    <SUB_CONT_MAX>0</SUB_CONT_MAX> 
    <ITEM_FROM>-1</ITEM_FROM> 
    <ITEM_TO>-1</ITEM_TO> 
    </HEADER> 
    </CONTAINER> 
    <SYNC_MONITOR> 
    <NEW_SYNC_FLAG>1</NEW_SYNC_FLAG> 
    <OUTBOUND_PREPARATION_TIME>0</OUTBOUND_PREPARATION_TIME> 
    <OUTBOUND_PREPARATION_FINISHED>20070219085806</OUTBOUND_PREPARATION_FINISHED> 
    <LAST_SERVER2CLIENT_NETWORK_TIME>-2147483648</LAST_SERVER2CLIENT_NETWORK_TIME> 
    <LAST_INBOUND_PROCESSING_TIME>-2147483648</LAST_INBOUND_PROCESSING_TIME> 
    <LAST_SYNC_CYCLE_TIME>-2147483648</LAST_SYNC_CYCLE_TIME> 
    <LAST_SYNC_GUID></LAST_SYNC_GUID> 
    </SYNC_MONITOR> 
    [20070219 08:58:06:681] D [MI/Sync ] End: Dumping file C:\Program Files\SAP Mobile Infrastructure\sync\(SHARED)\out\package.out 
    [20070219 08:58:06:681] I [MI/Sync ] Outbound file size for user (SHARED) is 131 
    [20070219 08:58:06:681] P [MI/Sync ] Do not use http proxy (system properties update) 
    [20070219 08:58:06:681] P [MI/Sync ] Use following gateway for synchronization: http://cymobile:8001 
    [20070219 08:58:06:681] I [MI/Sync ] GzipDataCompression: Gzip data compression is switched on 
    [20070219 08:58:06:681] P [MI/Sync ] Sending outbound file compressed to server. 
    [20070219 08:58:06:681] P [MI/Sync ] Outbound file was compressedly sent. 
    [20070219 08:58:06:697] I [MI/Sync ] HttpSynchronizer caught exception java.io.FileNotFoundException: http://name:port/sap/bc/MJC/mi_host?sysid=XYZ&client=100&~language=EN&ACKNOWLEDGE=& 
    java.io.FileNotFoundException: http://name:port/sap/bc/MJC/mi_host?sysid=XYZ&client=100&~language=EN&ACKNOWLEDGE=& 
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:812) 
    at com.sap.ip.me.sync.HTTPSynchronizer.getInputStreamViaTimeOutOrNot(HTTPSynchronizer.java:351) 
    at com.sap.ip.me.sync.HTTPSynchronizer.synchronize(HTTPSynchronizer.java:258) 
    at com.sap.ip.me.sync.HTTPSynchronizer.synchronize(HTTPSynchronizer.java:484) 
    at com.sap.ip.me.sync.HTTPSynchronizer.exchangeData(HTTPSynchronizer.java:73) 
    at com.sap.ip.me.sync.SyncManagerImpl.processSyncCycle(SyncManagerImpl.java:847) 
    at com.sap.ip.me.sync.SyncManagerImpl.syncForUser(SyncManagerImpl.java:1304) 
    at com.sap.ip.me.sync.SyncManagerImpl.processSynchronization(SyncManagerImpl.java:935) 
    at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:440) 
    at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:303) 
    at com.sap.ip.me.api.sync.SyncManager.synchronizeWithBackend(SyncManager.java:79) 
    at com.sap.ip.me.apps.jsp.Home$SyncRunnable.run(Home.java:568) 
    at java.lang.Thread.run(Thread.java:534) 
    [20070219 08:58:06:697] E [MI/Sync ] Exception while synchronizing via http 
    com.sap.ip.me.api.services.HttpConnectionException: Exception while synchronizing (java.io.FileNotFoundException: http://name:port/sap/bc/MJC/mi_host?sysid=XYZ&client=100&~language=EN&ACKNOWLEDGE=&) 
    at com.sap.ip.me.sync.HTTPSynchronizer.synchronize(HTTPSynchronizer.java:334) 
    at com.sap.ip.me.sync.HTTPSynchronizer.synchronize(HTTPSynchronizer.java:484) 
    at com.sap.ip.me.sync.HTTPSynchronizer.exchangeData(HTTPSynchronizer.java:73) 
    at com.sap.ip.me.sync.SyncManagerImpl.processSyncCycle(SyncManagerImpl.java:847) 
    at com.sap.ip.me.sync.SyncManagerImpl.syncForUser(SyncManagerImpl.java:1304) 
    at com.sap.ip.me.sync.SyncManagerImpl.processSynchronization(SyncManagerImpl.java:935) 
    at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:440) 
    at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:303) 
    at com.sap.ip.me.api.sync.SyncManager.synchronizeWithBackend(SyncManager.java:79) 
    at com.sap.ip.me.apps.jsp.Home$SyncRunnable.run(Home.java:568) 
    at java.lang.Thread.run(Thread.java:534) 
    [20070219 08:58:06:697] P [MI/Core ] original context restored 
    [20070219 08:58:06:697] W [MI/Sync ] Synchronisation problems 
    com.sap.ip.me.api.sync.SyncException: Transport-layer (http) sync exception raised (root cause: Exception while synchronizing (java.io.FileNotFoundException: http://name:port/sap/bc/MJC/mi_host?sysid=XYZ&client=100&~language=EN&ACKNOWLEDGE=&)) 
    at com.sap.ip.me.sync.HTTPSynchronizer.exchangeData(HTTPSynchronizer.java:82) 
    at com.sap.ip.me.sync.SyncManagerImpl.processSyncCycle(SyncManagerImpl.java:847) 
    at com.sap.ip.me.sync.SyncManagerImpl.syncForUser(SyncManagerImpl.java:1304) 
    at com.sap.ip.me.sync.SyncManagerImpl.processSynchronization(SyncManagerImpl.java:935) 
    at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:440) 
    at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:303) 
    at com.sap.ip.me.api.sync.SyncManager.synchronizeWithBackend(SyncManager.java:79) 
    at com.sap.ip.me.apps.jsp.Home$SyncRunnable.run(Home.java:568) 
    at java.lang.Thread.run(Thread.java:534) 
    [20070219 08:58:06:697] D [MI/Sync ] Synchronisation: Fire SyncEvent 1 
    [20070219 08:58:06:697] D [MI/API/Services ] MEResourceBundle:Constructor: Create MEResourceBundle(com/sap/ip/me/awtapps/home/mobile_engine, en_IN, (null)) 
    [20070219 08:58:06:697] D [MI/API/Services ] MEResourceBundle:Constructor: Use classloader com.sap.ip.me.core.Startup@18fe7c3 
    [20070219 08:58:06:697] D [MI/API/Services ] CREATED MEPropertyResourceBundle com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@1328c7a for bundleName: com/sap/ip/me/awtapps/home/mobile_engine with Locale: _en 
    [20070219 08:58:06:697] D [MI/API/Services ] CREATED parent MEPropertyResourceBundle for child bundle: com.sap.ip.me.api.services.MEResourceBundle$MEPropertyResourceBundle@1328c7a using bundle name: com/sap/ip/me/awtapps/home/mobile_engine 
    [20070219 08:58:06:697] P [MI/Core ] Thread Thread-27 switched context to MI414d45455242 / MI414d45455242 (User: AMEERB, MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:697] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.mi.systemnews.SyncListener on ConversationId MI414d45455242 
    [20070219 08:58:06:697] P [MI/Core ] original context restored 
    [20070219 08:58:06:697] P [MI/Core ] Thread Thread-27 switched context to MI2853484152454429 / MI2853484152454429 (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:697] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.me.ccms.remotetracing.RemoteTracingListener on ConversationId MI2853484152454429 
    [20070219 08:58:06:697] P [MI/Core ] original context restored 
    [20070219 08:58:06:697] P [MI/Core ] Thread Thread-27 switched context to MI2853484152454429 / MI2853484152454429 (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:697] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429 
    [20070219 08:58:06:697] P [MI/Core ] original context restored 
    [20070219 08:58:06:697] P [MI/Core ] Thread Thread-27 switched context to MI2853484152454429 / MI2853484152454429 (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:697] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429 
    [20070219 08:58:06:697] P [MI/Core ] original context restored 
    [20070219 08:58:06:697] P [MI/Core ] Thread Thread-27 switched context to MI2853484152454429 / MI2853484152454429 (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:697] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429 
    [20070219 08:58:06:712] P [MI/Core ] original context restored 
    [20070219 08:58:06:712] P [MI/Core ] Thread Thread-27 switched context to MI2853484152454429 / MI2853484152454429 (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:712] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429 
    [20070219 08:58:06:712] P [MI/Core ] original context restored 
    [20070219 08:58:06:712] P [MI/Core ] Thread Thread-27 switched context to MI414d45455242 / MI414d45455242 (User: AMEERB, MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:712] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.me.core.StatusUpdater on ConversationId MI414d45455242 
    [20070219 08:58:06:712] P [MI/Core ] original context restored 
    [20070219 08:58:06:712] P [MI/Core ] Thread Thread-27 switched context to MI2853484152454429 / MI2853484152454429 (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:712] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.me.ccms.configinfo.ConfigInfoListener on ConversationId MI2853484152454429 
    [20070219 08:58:06:712] P [MI/Core ] original context restored 
    [20070219 08:58:06:712] P [MI/Core ] Thread Thread-27 switched context to MI2853484152454429 / MI2853484152454429 (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 7095), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1) 
    [20070219 08:58:06:712] I [MI/API/Sync ] SyncEvent Performing com.sap.ip.me.services.os.ScriptManager on ConversationId MI2853484152454429 
    [20070219 08:58:06:712] P [MI/Core ] original context restored 
    [20070219 08:58:06:712] I [MI/Sync ] Synchronization finished, Thread=Thread-27 
    [20070219 08:58:16:703] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20070219 08:58:16:703] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20070219 08:58:16:703] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    [20070219 08:58:16:703] I [MI/API/Sync ] Terminate connection feature is not configured 
    [20070219 08:58:16:703] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/home/synclog.jsp' 
    [20070219 08:58:21:317] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20070219 08:58:21:317] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20070219 08:58:21:317] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    [20070219 08:58:21:317] I [MI/API/Sync ] Terminate connection feature is not configured 
    [20070219 08:58:21:317] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/home/home.jsp' 
    [20070219 08:58:22:579] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20070219 08:58:22:579] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20070219 08:58:22:579] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    [20070219 08:58:22:579] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:dispatch request to '/jsp/trace/trace.jsp' 
    [20070219 08:58:24:684] D [MI/Core ] Set current application to 'MOBILEENGINE_JSP' 
    [20070219 08:58:24:684] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:doGet(...) called 
    [20070219 08:58:24:684] D [MI/API/Runtime/JSP ] AbstractMEHttpServlet:getEvent() done with event name = '' 
    Regards,
    Ameer Baba.

  • To those who have had synchronization problems: Did your files end in .dv?

    In order to determine whether the synchronization problems were restricted to people using DV files, it would be helpful if anyone who had a problem could say whether their files ended in .dv. So: if you had a problem, could you please say what sort of files (medium) you were using? DV? HD? Whatever else there is? Thank you.

    my clips were all pulled directly from my Canon FS20 camcorder. the file extensions of the raw footage is all ".mov" ... hope that helps. J
    Thanks. It does help--or at least it should help the people who know enough about the subject to digest its significance. I'm trying to help them. They said this would be useful to know. (I think you actually posted this information before, but it slipped by; so I am glad you provide it again.)

  • Error 43 when accessing LabVIEW 2009 write/read file functions through the web server functionality

    Is there any way around to avoid Error 43, "Operation cancelled by user" when using Web server?
    I am using the example VI:s RemotePanelMethods-Server.vi and RemotePanelMethods-Client.vi to acces the MainGUI.vi from my workstation to a lab computer. * LabVIEW 2009 is installed in both machines.
    * MainGUI.vi is wired to the VI access list in the Server VI but it also contains a hierarchy below that isn't, is this a problem?
    * Several functions in MainGUI calls file read and write operations
    The problem ocurrs when file read/write operations with no preselected path are selected through the Client. The traditional popup window requesting the file to read or write is never seen in the Client, but only the Error 43.
    Thanks in advance

    See this

  • Having email imap synchronization problems with outlook 365 proplus

    Hello,
    I have email imap synchronization problems with outlook 365 proplus.
    If I sent emails , my sent items box does not synchronized.
    This is really a bug, because I see more problems like this on internet.
    Please make ASAP a solution , this is not professional
    JMR

    Hi JMR,
    Assuming you are referring to Outlook 2013 by "outlook 365 proplus". This is actually because Outlook 2013’s IMAP implementation has changed when compared to previous versions of Outlook.
    While configuring the IMAP account, Outlook will talk to the IMAP server for the correct folders first. If Outlook 2013 can’t find the correct folder for the Sent Items in your mail server, it will create a folder which doesn’t sync with the mail server.
    To sync the Sent Items folder with IMAP server, we can try to root the mailbox:
    Go to FILE->Account Settings->Account Settings…
    Double click on your IMAP account.
    Click More Options… button, then Advanced tab
    Type "Inbox" as the "Root folder path"
    Hope this helps.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • CD/DVD Writer/Reader on CQ60 - 214EM

    I have just changed my laptop from Vista to Windows 7 Professional. Now the Writer Reader does not recognise disks inserted, and comes up with Driver fault and Code 19 error. All attempts to correct have failed, and unless I can download and install correct driver, I will need to purchase and use an External Disk Drive.
    Is there an easy fix for this, or has the Disk Drive failed?

    You will need to go to the Support and Drivers page and find the driver for your notebook using Windows 7.  The driver you currently have might be compatable to Vista only. Hopefully this will be an easy fix!
    Although I am an HP employee, I am speaking for myself and not HP.
    Make it easier for other people to find solutions,by marking my answer 'Accept as Solution' if it solves your problem.
    **Click on the KUDOS star on the left to say 'Thanks'**

  • 9.0.2 does NOT solve synchronization problems

    Since we have one title that says 9.0.1 solves the synchronization problem and one that says it does not, we truly have an issue, i.e., conflicting claims that need to be adjudicated.

    Ok starting to understand what you are describing. My only other suggestion is to do this:
    1. Quit iMoive, then go to the event in the Finder where you DV clips live.
    2. Delete ALL of the iMovie cache folders INCLUDING the one that is inside the Thumbnail folder.
    3. Relaunch iMovie and wait for everything to regenerate
    Try that, I've had success in the past using this method
    Thank you for your patience. Since I have quite a few such cache folders, unless I hear different from you, I will try this out on one carefully chosen event. By carefully chosen, I mean one in which there is a scene near the end of the long event that now clearly exhibits a lack of synchronization.
    (My tentative guess is that 9.0.2 solves the problems caused by 9.01, but not the lesser ones caused by 9.0. In the latter case, only people with very long events will notice a problem.)

  • Write/read image to avi file, VI works incorrectl​y from the second run

    Hi everybody, in my labview I write image from IMAQ USB to avi file and read image from avi file, the VI runs correctly at the first run then after that it goes wrong, I can write/read only one frame and it terminates automatically. Does anybody know why and how to solve this?
    Thanks a lot,
    Hannah

    Without seeing your code I can't comment specifically, but if it runs correctly the first time and then stops be looking for something that is not getting reinitialized correctly. Also what exactly do you have to do to get it to work again? Close and reopen the VI? Restart LV? Restart the computer?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

Maybe you are looking for