Rsync fail sometimes

Hi
I'm trying to synchronize two folder: one (source) on my macbook and the other (destination) on a NAS always connected to my network.
I'm using the rsync command
+rsync -aE --delete-after --exclude=.DS_Store --delete-excluded -u "/Users/myuser/Documents/Work" "/Volumes/Data/Projects/SoftwarePC/Work"+
The process start and very often i'll get various error messages caused by permission denied (13) (ie: failed to stat, mkdir failed) on a random file(s)/folder. Sometimes, even if no changes was made on the permissions, it end successfully without any error.
Anyone have any suggestion?

The current version is 3.0.7
Also note the following:
Apply patches relevant to preserving Mac OS X metadata
patch -p1 <patches/fileflags.diff
patch -p1 <patches/crtimes.diff
When compiling with OS X 10.6.2 and the crtimes.diff patch you may get "no iconv"
and creation-date are not preserved. Fix with:
CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 ./configure
CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 make
which will give me 32-bit timestamps
Tony

Similar Messages

  • My screen fails sometimes when booting

    When i start my macbook Pro (late 2011) my screen fails sometimes.
    The apple logo when siging in, looks like three logo upon eachother. I also had stripes in my screen. When i logged in, everything was oke.
    I had some problems with the display a few months ago, but when the display was replaced, the problem wasn't seen anymore, until now.
    What could be the sollution to this problem?
    Can Anyone help me?

    When i start my macbook Pro (late 2011) my screen fails sometimes.
    The apple logo when siging in, looks like three logo upon eachother. I also had stripes in my screen. When i logged in, everything was oke.
    I had some problems with the display a few months ago, but when the display was replaced, the problem wasn't seen anymore, until now.
    What could be the sollution to this problem?
    Can Anyone help me?

  • Runtime.exec() fails sometime to execute a command

    Hello,
    I have a program thats using Runtime.exec to execute some external programs sequence with some redirection operators.
    For e.g, I have some command as follows;
    1 - C:\bin\IBRSD.exe IBRSD -s
    2 - C:\bin\mcstat -n @punduk444:5000#mc -l c:\ | grep -i running | grep -v grep |wc -l
    3 - ping punduk444 | grep "100%" | wc -l
    ...etc.
    These command in sequence for a single run. The test program makes multiple such runs. So my problem is sometimes the runtime.exec() fails to execute some of the commands above (typically the 2nd one). The waitFor() returns error code (-1). That is if I loop these commands for say 30 runs then in some 1~4 runs the 2nd command fails to execute and return -1 error code.
    Can some one help me out to as why this is happening? Any help is appreciated
    Thanks,
    ~jaideep
    Herer is the code snippet;
    Runtime runtime = Runtime.getRuntime();
    //create process object to handle result
    Process process = null;
    commandToRun = "cmd /c " + command;
    process = runtime.exec( commandToRun );
    CommandOutputReader cmdError = new CommandOutputReader(process.getErrorStream());
    CommandOutputReader cmdOutput = new CommandOutputReader(process.getInputStream());
    cmdError.start();
    cmdOutput.start();
    CheckProcess chkProcess = new CheckProcess(process);
    chkProcess.start();
    int retValue = process.waitFor();
    if(retValue != 0)
    return -1;
    output = cmdOutput.getOutputData();
    cmdError = null;
    cmdOutput = null;
    chkProcess = null;
    /*******************************supporting CommandOutputReader class *********************************/
    public class CommandOutputReader extends Thread
    private transient InputStream inputStream; //to get output of any command
    private transient String output; //output will store command output
    protected boolean isDone;
    public CommandOutputReader()
    super();
    output = "";
    this.inputStream = null;
    public CommandOutputReader(InputStream stream)
    super();
    output = "";
    this.inputStream = stream;
    public void setStream(InputStream stream)
    this.inputStream = stream;
    public String getOutputData()
    return output;
    public void run()
    if(inputStream != null)
    final BufferedReader bufferReader = new BufferedReader(new InputStreamReader(inputStream), 1024 * 128);
    String line = null;
    try
    while ( (line = bufferReader.readLine()) != null)
    if (ResourceString.getLocale() != null)
    Utility.log(Level.DEBUG,line);
    //output += line + System.getProperty(Constants.ALL_NEWLINE_GETPROPERTY_PARAM);
    output += line + "\r\n";
    System.out.println("<< "+ this.getId() + " >>" + output );
    System.out.println("<< "+ this.getId() + " >>" + "closed the i/p stream...");
    inputStream.close();
    bufferReader.close();
    catch (IOException objIOException)
    if (ResourceString.getLocale() != null)
    Utility.log(Level.ERROR, ResourceString.getString("io_exeception_reading_cmd_output")+
    objIOException.getMessage());
    output = ResourceString.getString("io_exeception_reading_cmd_output");
    else
    output = "io exeception reading cmd output";
    finally {
    isDone = true;
    public boolean isDone() {
    return isDone;
    /*******************************supporting CommandOutputReader class *********************************/
    /*******************************supporting process controller class *********************************/
    public class CheckProcess extends Thread
    private transient Process monitoredProcess;
    private transient boolean continueLoop ;
    private transient long maxWait = Constants.WAIT_PERIOD;
    public CheckProcess(Process monitoredProcess)
    super();
    this.monitoredProcess = monitoredProcess;
    continueLoop =true;
    public void setMaxWait(final long max)
    this.maxWait = max;
    public void stopProcess()
    continueLoop=false;
    public void run()
    //long start1 = java.util.Calendar.getInstance().getTimeInMillis();
    final long start1 = System.currentTimeMillis();
    while (true && continueLoop)
    // after maxWait millis, stops monitoredProcess and return
    if (System.currentTimeMillis() - start1 > maxWait)
    if(monitoredProcess != null)
    monitoredProcess.destroy();
    //available for garbage collection
    // @PMD:REVIEWED:NullAssignment: by jbarde on 9/28/06 7:29 PM
    monitoredProcess = null;
    return;
    try
    sleep(1000);
    catch (InterruptedException e)
    if (ResourceString.getLocale() != null)
    Utility.log(Level.ERROR, ResourceString.getString("exception_in_sleep") + e.getLocalizedMessage());
    System.out.println(ResourceString.getString("exception_in_sleep") + e.getLocalizedMessage());
    else
    System.out.println("Exception in sleep" + e.getLocalizedMessage());
    if(monitoredProcess != null)
    monitoredProcess.destroy();
    //available for garbage collection
    // @PMD:REVIEWED:NullAssignment: by jbarde on 9/28/06 7:29 PM
    monitoredProcess = null;
    /*******************************supporting process controller class *********************************/

    Hi,
    Infact the command passed to the exec() is in the form of a batch file, which contains on of these commands. I can not put all commands in one batch file due to inherent nature of the program.
    But my main concern was that, why would it behave like this. If I run the same command for 30 times 1~3 times the same command can not be executed (returns with error code 1, on wiun2k pro) and rest times it works perfectly fine.
    Do you see any abnormality in the code.
    I ahve used the same sequence of code as in the article suggested by
    "masijade". i.e having threads to monitor the process and other threads to read and empty out the input and error streams so that the buffer does not get full.
    But I see here the problem is not of process getting hanged, I sense this because my waitFor() returns with error code as 1, had the process hanged it would not have returned , am I making sense?
    Regards,
    ~jaideep

  • Reader on Mac OS 10.6.2 search fails sometimes

    Hi there,
    sometimes when I use Adobe Reader (latest) on my Mac (OSX 10.6.2) the PDF search fails. I.e., a search for "statt dessen" shows up things like "dieser" or "was". The results have nothing to deo with my search term. Is it a common failure on my OS version or is it a problem with the .pdf (probably not made with Acrobat)? Any hints really appreciated, thanks.
    Peter
    http://www.ratgeber-geld-sparen.de

    Hi, I have Mac OS 10.6.2
    I downloaded the Reader 9 package. When I go to install, the installer gives me this error message:
    The operation couldn’t be completed. (com.apple.installer.pagecontroller error -1.)
    Couldn't open "AdbeRdr930_en_US_i386.pkg".
    I am new to Mac, can anyone tell me how to fix this please?
    Thanks

  • HDF5 Call Library fails sometimes

    Dear Labview Forum,
    i am currently working on a Project which saves its data to HDF5 file format.
    (TDMs is no option for me).
    i am using the c-dll of HDF5 via Call Library Function node.
    Basically everthing works fine, but sometimes the library calls fail. i am not able to say when and why.
    the only thing i know is that when it doesen't work it never works until i restart the Labview IDE.
    if it works, it works until i restart my IDE, and sometimes after the restart i get only -1 as returns.
    i attached a little project to show the error.
    to reproduce the error someone has to restart the whole IDE and delete the created files until the error occurs.
    Create Group and Create File works always. The errors occur from Create plist and ongoing calls.
    if one of the failning sub vis front panel is openend and manually started by pressing the run button it all time works nice.
    i tried to relaod the called vis for each call  -- same errors
    i compiled the vis to an exe -- same errors
     thank you for your help.
    Attachments:
    HDF5_error.zip ‏999 KB

    The symptoms you describe would hint in the direction of uninitilized output buffers to those function calls. I haven't looked at the HDF5 API in a long time, so don't know the details anymore how this API works nor what data types it accepts. But it pretty surely will comply with standard C programming notions, which means when you call a function that writes information into some buffer, you have to make sure those buffers are properly preallocated before calling the function. One or more bytes to little can often work for quite some time, and suddenly crash, cause exceptions or cause computation errors.
    Why it suddenly misbehaves at some point can be very random. Your mentionening that opened front panels seem to make it always work are an additional hint in this direction. They increase the memory foot print of your LabVIEW program and make it more likely that a buffer overrun won't immediately fail, though given an application that runs long enough it will at some point fail in some way too. There is nothing LabVIEW can do to prevent these buffer overruns other than trying to detect them and throwing an exception (indicated by an error in the Call Library Node error cluster). Depending on your CLN debugging level, this is done rather stringent, casually or not at all.
    If your API only returns it's information in simple arrays then you can make it work with direct Call Library Node calls but need to be very wary about any output buffers those functions require. If however your API requires complex datatypes (structures with arrays and more liek this) then trying to get this done without a wrapper DLL is mostly an exercise in vain. The knowledge about how a C compiler lays out memory for such datatypes, which is required to be able to do that, is a lot more complicated than just writing a C DLL. So you make the problem in fact more complicated and sometimes basically impossible by trying to avoid the wrapper DLL.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Satellite U920T-11C fan noise and touchscreen fails sometimes

    Hi,
    I just purchased the U920T-11C a few days ago.
    I like it but there a few issues they are putting me off and make me want to return it.
    The first issue is the loud fan noise that comes on. Is there anyway to turn this off?
    It happens about 15 mins into using the web and then goes on and off every 5 mins or so. It is really loud and being in quiet room it is noticeable.
    Is there anything I can do to stop this? I am only using the web and not running any other programs.
    Also I have noticed the touchscreen fails to respond for no particular reason. I don't know if there is a pattern but it is frustrating when it just stops for no reason and then sometimes just works again.
    Looking at these forums it seems like it is a common problem with the Toshiba. I have a few days before I can return so if these are not solved I think I might just go form the Samsun ATIV Book 9 Lite instead.
    Thanks

    > It happens about 15 mins into using the web and then goes on and off every 5 mins or so. It is really loud and being in quiet room it is noticeable.
    I assume the noise is coming from the fans which need to run faster in case the internal temperature would increase.
    What you could do is to change the cooling module performance in single power plan.
    You could also decrease the CPU performance. This would lead to smaller heat dissipation and the fans would slow down.
    > Also I have noticed the touchscreen fails to respond for no particular reason. I don't know if there is a pattern but it is frustrating when it just stops for no reason and then sometimes just works again
    You could try to calibrate the digitizer
    Go to control panel (Windows key + X -> control panel) -> Tablet PC setting.
    The first tab Display contains options like Configure the pen and touch display.
    Here you should be able to start Setup and to identify the touch screen.
    The first option should contain 1 internal LCD
    At the bottom you could find button to calibrate and reset the settings for this internal LCD.
    But it could be also an hardware malfunction. I cannot say for sure why this happens but maybe an technician should take a look on the hardware.

  • Help mailbfr restore failing rsync fails

    Hey
    so the raid on the server failed, so rebuilt the server and tried to restore from the backup
    but when running the backup
    mailbfr -r /path/to/mailbackup --all
    everything seems to go ok until we get to the bit where it says
    Restoring Mail Store default from /path/to/mailbackup/cyruspartitionsDIRS/default/ to /path/to/mailstore
    then i get the following error
    rsync: connection unexpectedly closed (8 bytes received so far) [sender]
    rsync error: error in rsync protocol data stream (code 12) at /SourceCache/rsync/rsync-24/rsync/io.c(359)
    after that it tries to do the rest of the restore but obviously fails because it has not restore the mailstore
    any help would be grand
    thanks
    Calum

    full backup to an empty mailstore location
    ie it has to copy everything from the backup to a new folder ive nominated as the new mailstore location.
    i set this location using serveradmin before running mailbfr so mailbfr grabs the mailstore location from imapd.conf
    everything seems to work but fails when it gets to restoring the cyrus dirs. i dont think its broken files as psync has no problem copying the exact same files, in fact its nearly done...all 166gb of it!
    was thinking after copying the cyrus dirs manually with psync then running the mailbfr to reconstruct the database...essentially running mailbfr to restore but runing each step manualy
    any tips on what exactly mailbfr does when doing a full restore
    so far we managed to restore the mail database into /var/imap and restored all the postfix and cyrus config files
    it was when we got to the mailstore restore that it failed so if you can tell me what steps mailbfr does after that it would be great
    thanks again for your quick response
    cheers,

  • 3D PDF generation fails sometimes

    Hi
    one of our customers has a problem creating 3D PDFs from Unigraphics models using LiveCycle ES Server 8.2.1:
    most of the time, everything works fine, but for some models (below 1%) a conversion error is raised. We start the
    conversion process via the Java remote API of the Generate 3D PDF Service.
    I have a sample to reproduce this behaviour on our local test installation, but as it is customer data I can't post
    it here.
    I can open the sample using Acrobat Pro Extended or 3D Reviewer without problems (on the machine where the
    LiveCycle server is running), but when I try to invoke it remotely, I get the error (see log contents below). Setting
    the log level to a higher value did not reveal anything that looked interesting. The only indication of an error I can
    see is the "COM object method returns error code" part.
    Does anybody know what the COM error code means, or how to get more detailed error info?
    Any help appreciated
      Guido
    2009-07-23 08:45:44,462 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-021-PDF-3D Settings Used: Standard
    2009-07-23 08:45:44,556 INFO  [STDOUT] Thu Jul 23 08:45:44 CEST 2009
    2009-07-23 08:45:44,556 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-024-C:\Adobe\Testing\CAD2PDF3D\0acede5f-62a8-4cf6-9d46-0e732458a8e2\s-1550_2_ 00.prt: Time Job Submitted: 23.07.09 08:45
    2009-07-23 08:45:44,571 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-016-C:\Adobe\Testing\CAD2PDF3D\0acede5f-62a8-4cf6-9d46-0e732458a8e2\s-1550_2_ 00.prt: Job Type: Convert to 3D PDF
    2009-07-23 08:45:44,571 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-017-C:\Adobe\Testing\CAD2PDF3D\0acede5f-62a8-4cf6-9d46-0e732458a8e2\s-1550_2_ 00.prt: Job Submitted by User: tester01
    2009-07-23 08:45:51,743 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-008-Begin 3D PDF Conversion
    2009-07-23 08:45:51,884 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-001-003-Timeout:270
    2009-07-23 08:45:51,884 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-001-001-Begin processing job : C:\Adobe\Temp\pdfg-Administrator\9c\ea82-c6fd81-518055-b32226-8a5778-20d646\pdfg3d-in
    2009-07-23 08:45:51,884 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-005-004-Launching A3DReviewer.exe
    2009-07-23 08:46:02,431 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-005-002-Process id of A3DREviewer.exe instance is: 3436
    2009-07-23 08:46:02,446 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-001-000-
    Create3dPDFConverter -create3dPDF - addinfound, calling convert command...
    2009-07-23 08:46:10,306 ERROR [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-001-000-COM object method returns error code: 0x800706BE; Der Remoteprozeduraufruf ist fehlgeschlagen.COM object method returns error code: 0x800706BE; Der Remoteprozeduraufruf ist fehlgeschlagen.
    2009-07-23 08:46:10,306 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-001-000-COM object method returns error code: 0x800706BE; Der Remoteprozeduraufruf ist fehlgeschlagen.
    2009-07-23 08:46:10,306 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-001-000-_resetWithNormalQuit
    2009-07-23 08:46:10,306 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-001-000-Invoking Reset
    2009-07-23 08:46:10,306 INFO  [com.adobe.pdf3d.bmc.Create3dPDFConverter] ALC-P3D-001-000-Cleaning up Folders
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\~DF81B0.tmp
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\2373A708_0.pmt
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\2377C4B8_0.pmt
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\237E4420_0.pmt
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\237E4598_0.pmt
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23880C50_0.pmt
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\238A7130_0.pmt
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\238B4FA8_0.pmt
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23951D78_0.pmt
    2009-07-23 08:46:10,353 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23982458_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\239A5620_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23B48198_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23B4FD08_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23B4FE80_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23B70CF0_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23BB08A8_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23BD83F0_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23BE7638_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23C74328_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23C8CE78_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23CA9A68_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23D10840_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23D278B0_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23D27BA0_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23E2B330_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23E65588_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23E85F88_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23EC68A0_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23EF0EB0_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23FA3630_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\23FA7D20_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\2400DF60_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\2403BB10_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\240F2430_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\24138E10_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\2463FE80_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\24657C18_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\24693868_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\246A0408_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\246BEE60_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\246C0CE8_0.pmt
    2009-07-23 08:46:10,368 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\246C1D38_0.pmt
    2009-07-23 08:46:10,384 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\2480B388_0.pmt
    2009-07-23 08:46:10,384 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\24839318_0.pmt
    2009-07-23 08:46:10,384 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\2487EF40_0.pmt
    2009-07-23 08:46:10,384 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\248809A8_0.pmt
    2009-07-23 08:46:10,384 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\24880B20_0.pmt
    2009-07-23 08:46:10,415 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful file deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436\2488F640_0.pmt
    2009-07-23 08:46:10,415 INFO  [STDOUT] 23.07.2009 08:46:10 com.adobe.pdf3d.bmc.CreatePDFServer cleanup
    INFO: Successful folder deletion: C:\WINDOWS\TEMP\A3DRCache\A3DRCache3436
    2009-07-23 08:46:10,431 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-009-END 3D PDF Conversion
    2009-07-23 08:46:10,431 ERROR [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-000-ALC-P3D-000-001-Konvertierungsfehler
    2009-07-23 08:46:10,540 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-028-C:\Adobe\Testing\CAD2PDF3D\0acede5f-62a8-4cf6-9d46-0e732458a8e2\s-1550_2_ 00.prt: Job Completion Status: Failed
    2009-07-23 08:46:10,540 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-025-C:\Adobe\Testing\CAD2PDF3D\0acede5f-62a8-4cf6-9d46-0e732458a8e2\s-1550_2_ 00.prt: Time Job Completed: 23.07.09 08:46
    2009-07-23 08:46:10,540 INFO  [com.adobe.pdf3d.impl.Generate3dPDFImpl] ALC-P3D-001-026-C:\Adobe\Testing\CAD2PDF3D\0acede5f-62a8-4cf6-9d46-0e732458a8e2\s-1550_2_ 00.prt: Time of Job Execution: 25.875 ms
    2009-07-23 08:46:10,556 ERROR [STDERR] ALC-P3D-001-000: com.adobe.livecycle.generate3dpdf.client.ConversionException: ALC-P3D-000-001-Konvertierungsfehler
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.pdf3d.impl.Generate3dPDFImpl.create3dPDFInternal(Generate3dPDFImpl.java:280)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.pdf3d.impl.Generate3dPDFImpl.create3dPDF(Generate3dPDFImpl.java:120)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at java.lang.reflect.Method.invoke(Method.java:585)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.GeneratedMethodAccessor571.invoke(Unknown Source)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at java.lang.reflect.Method.invoke(Method.java:585)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:214)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:149)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor. java:54)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:1 58)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.TxInterceptorBMT.invoke(TxInterceptorBMT.java:62)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:154)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.Container.invoke(Container.java:873)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at $Proxy270.doBMT(Unknown Source)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:132)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:315)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.provider.impl.ejb.receiver.EjbReceiverBean.invoke(EjbReceiverBean.java: 156)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at java.lang.reflect.Method.invoke(Method.java:585)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.invocation.Invocation.performCall(Invocation.java:345)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:214)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:149)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:154)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor. java:54)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:363)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:122)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.ejb.Container.invoke(Container.java:873)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.GeneratedMethodAccessor470.invoke(Unknown Source)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at java.lang.reflect.Method.invoke(Method.java:585)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:155)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:104)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.invocation.InvokerInterceptor.invokeMarshalled(InvokerInterceptor.java:201)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.invocation.MarshallingInvokerInterceptor.invoke(MarshallingInvokerInterceptor.j ava:35)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.proxy.ejb.StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:9 7)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:86)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at $Proxy381.invoke(Unknown Source)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.doSend(EjbMessageDispatcher.java :137)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:57)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at com.adobe.livecycle.generate3dpdf.client.Generate3dPDFClient.create3dPDF(Generate3dPDFCli ent.java:108)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at de.contact.FileUploadHandler.convert2PDF(FileUploadHandler.java:128)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.jsp.convert_jsp._jspService(org.apache.jsp.convert_jsp:65)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:252)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:202)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:159)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11P rotocol.java:744)
    2009-07-23 08:46:10,556 ERROR [STDERR]     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    2009-07-23 08:46:10,571 ERROR [STDERR]     at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    2009-07-23 08:46:10,571 ERROR [STDERR]     at java.lang.Thread.run(Thread.java:595)

    Hi Guido,
    Do you know if this updated DLL has been included in Acrobat 9.3.0?
    We are experiencing the same issue as you, I think.
    Thanks
    ~Joe

  • FTP adapter failing sometimes, msg:Error connecting to the OAI Repository

    Hi,
    I have imported a dump due to curropt metadata definition. The import was successful without any warning/error.
    I have recreated the event , but when I am testing the same, getting following error in the FTP adapter, though the adadpter is started successfully, connecting to hub /repository, still trowing below errror when it translates a file:
    Sometimes it works when the adadpter is killed & restarted.
    Ususally happening when a new event is created & run for the first time...
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    <A N = "do_no">428997</A>
    <A N = "mdo_no">
    </A>
    </AO>
    </AO>
    </AO>
    </B>
    </MSG>.
    Mon Oct 03 17:18:45 SGT 2005: Transport logs:
    Message linked list has 0 elements.
    Mon Oct 03 17:18:45 SGT 2005: Transport logs:
    FileReceiver.sendResponse() completed.
    Mon Oct 03 17:18:45 SGT 2005: Transport logs:
    FileReceiver.receive() is invoked.
    Mon Oct 03 17:18:45 SGT 2005: Transport logs:
    The message queue is empty.
    Mon Oct 03 17:18:45 SGT 2005: Initializing connection to the Repository...
    Mon Oct 03 17:18:46 SGT 2005: Connected to the Repository.
    Mon Oct 03 17:18:46 SGT 2005: Error connecting to the OAI Repository. Please make sure that the hub database and the OAI Repository are started properly. Once everything is started properly, the connection will be automatically re-established. However, if you have provided incorrect parameters concerning your hub database or the OAI Repository during installation of this Adapter, please stop the Adapter, fix the information and restart.
    oracle.aob.repository.aobRepositoryCartridge.RepositoryException
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    Any pointers on this will be a great help for me.
    Regards,
    MOhit

    In same context, what I observed is that the FTP adapter throws above error if a file is send again for translation...ie; when i try to use the same file for testing putingit in FTO dir , FTP adapter hangs throwing above error.
    Even after few runs of other files.
    Is it something related to the security feature of the product which prohibits sending the contents of message if the same contents are send previously?
    Actullay I had never faced such issue before & use to do the testing with same file itself.
    oai_agent_error has following entry in internalid column:
    MetadataManager_RepositoryConnectionErrorWithoutOID
    When I kill the adapter, the same msg is picked up by the subcribing adadpeter(dbadapter) & puts the data into the table.
    Tough I m fixing the above issue as below:
    1- kill the FTP adapter
    2- remove its entries in componentinfo table.
    3-deleting all rows in oai_hub_queue.
    4- stop other adapters.
    5- Stopping & restarting the repository again.
    Still not sure whether error throwing by adapter is expected functionality in iStudio, or something is missing in the setting done in my setup?
    Regards.
    Mohit

  • Burned DVD verify fails sometime

    I've been burning my photos onto DVDs as a backup. I create a smart album that collects my photos by data and then burn them onto a DVD as a library.
    I burned one and it worked fine I then when to the next smart folder and burn it but the burn failed the verify, so I tried again and it failed again only this time earlier. I thought my DVD drive was the problem so I took it to my Apple dealer and he checked it out and found no problems.
    I have a 15" Mac Book Pro that is all Apple, I'm running OS X 10.6.2 and iPhoto 08 (7.1.5). I've burned a bunch of DVDs with Toast and they work just fine. I've tried a different manufacturer of DVDs and still have the same problem.
    At this point I don't know what to try next, any thoughts would be helpful

    Even though the verify procedure failed did you try opening the DVD to see if the files were there. I had that situation one time and the disc was just fine even though the verification process failed.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Apple Mail Authorization Fails Sometimes

    About 30% of the time Apple Mail checks for new mail it chokes on my username/password. This is the problem according to Connection Doctor. The rest of the time everything is fine. All my other devices are setup with the same login and never fail. I've tried repairing keychains, deleting Mail Preferences, am even working on a totally new system since replacing my Hard Drive last week. Still the problem persists. Has anyone else seen this?

    Close Mail & iTunes. Launch iSync from your applications folder, under Preferences, reset sync history. When finished, re-boot the computer. Launch iTunes, connect her phone, make sure sync notes is checked. See if it works now.

  • Aperture3 shows jpeg or raw thumbnails failed sometime when i go tether shooting

    In lion, camera is canon 60D, when i go tether shooting, not all of image thumbnails are displayed correctly. The failed one says it's an unsupported type. But they're just fine in finder and even go editing in photoshop without any problems. it's not that weird, though. What stranger is when I remove all thumbnails from aperture's database then import them again, they just look good, like nothing bad happened before. anyone has any ideas about my issue? thank you

    Thanks very much for that lead, NormanPCN. I do have Auto Tone checked, though the rendered files in the example above do not have XMP sidecars. I will try unchecking Auto Tone even so, and post back when I see what happens.
    Thanks again,
    Kieren
    EDIT: Bingo! I took Auto Tone off in ACR Preferences (in Bridge) and the non-RAW files immediately regenerated thumbs and previews. They now are indistinguishable from the PSD. There is still the very slight difference which I mentioned between the PSD and the CR2. While that seems odd, it is small enough to be relatively trivial.
    Many thanks!
    Thumbnail view w/o Auto:

  • Dtmf to uccx failing sometimes

    UCCX version 7
    CM version 7.0
    H.323 gw, latest stable version of 12.4
    Inbound calls to a uccx script, coming from the PSTN, DTMF fails 80% of the time.
    Scenario is this: A caller on the PSTN dials an auto attendant script configured on uccx. UCCX answers and plays a prompt. At a digit collecting step, the caller enters, for example, a four digit extension. When it fails, UCCX only collects the last digit, instead of all four.
    Counterindication:
    1. If I am doing a realtime debug on UCCX, the script ALWAYS collects the correct DTMF tones.
    2. From an IP phone, this ALWAYS works.
    Other info:
    1. The codec is g.711
    2. The dtmf relay method is h245-signal.

    Yep, JTAPI logs always show that the digits are received correctly. The versions appear compatible but I'm completely sure. Looks like TAC case time.You'll notice in the JTAPI logs below it is complaining of an invalid destination. On the same dialed digits a successful call doesn't say that. Might be worth a resync anyway.
    B
    12378: Aug 03 17:03:17.131 PDT %JTAPI-JTAPI-7-UNK:(P1-JTAPI_1)[MIVR_ENG_TASKS-35-37-TASK:0x64956336a_Headend_1.0.aef][[2103:PT-INTERNAL/(P1-JTAPI_1) GCID=(2,1124077)->ACTIVE]->ESTABLISHED]Request: redirect(8763, REDIRECT_NORMAL, ADDRESS_SEARCH_SPACE, CALLED_ADDRESS_SET_PREFERREDCALLEDPARTY,REDIRECT,8763,null,REDIRECT_WITHOUT_MODIFIED_CALLING_PARTY,1)
    GCID=(2,1124077)->ACTIVE]->ESTABLISHED]InvalidPartyExceptionImpl caught: Request failed because of an invalid destination.

  • Excel Data Only export fails (sometimes)

    Using Crystal 12, RPT has a sub-report.
    All other reports in application work fine.  All other formats (including Excel) work fine with this report.
    When the user chooses to export the report, if there is "enough" data the report will gpf.  Enough in this case appears to be just a few hundred rows.  If I run the report through CR developer directly, I also experience a GPF of CR.  The issue does not appear to be data related other than row count as I am able to duplicate on my data vs the customer data.
    I am downloading CR12 SP4 now and will test, but does anyone have any other ideas?
    thanks

    Crystal wasn't hanging, it was actually GPF'ing.  I did discover the culprit and was able to work around the issue.  ie I didn't solve it, I just eliminated the issue causing it.
    The report had a subreport with 26 levels of grouping.  The groupings were based on formulas that took information from the parent/main report and determined how to group the report.  They were there to let the report sorting on the main report which my application feeds, control the sub report.  CR apparently was getting bogged down in the grouping formulas.  I reduced it down to 5 (my customer's hopefully won't complain too loudly) and it works.

  • TFS Online Builds Fail Sometimes on Package Restore

    We are currently getting errors with package restore for TFS online build.
    C:\a\src\Web\Web\.nuget\NuGet.targets
    (100): Unable to find version 'XXX' of package 'YYYY'.
    It worked earlier for the same solution, but to another build definition/website.  And yes, it has worked many times for this build definition/website.  We periodically get these failures on a given day.  Maybe twice a month. 
    It always seems to be environment related as the errors just go away.  On occasion, the VSO support site has shown a problem status (not green).  But often the status is green.
    Does anyone else have this problem occur this often?  We like using VSO and Azure for the most part.  But the builds are just killing us.  They are vey, very slow compared to what we can do locally and not very reliable.

    The package restore workflow has been changed by NuGet team. For Team Foundation Build 2013 on-premises and Visual Studio Online  (formerly Team Foundation Service), the default Build Process  Templates already implement the NuGet Package Restore
    workflow without  any special configuration.
    Please ensure you have applied the right way to do package restore in your solution hosted in VSO and try to build again.
    Have a look at below links for more details:
    http://blog.davidebbo.com/2014/01/the-right-way-to-restore-nuget-packages.html
    http://www.xavierdecoster.com/migrate-away-from-msbuild-based-nuget-package-restore

Maybe you are looking for

  • How do I submit xml data from a form to live cycle

    Hi This is my first post, so I'm not sure if this is the right forum. I have a flex app, which calls a pdf. You enter the info on the pdf and then click submit. Now I need to know what i have to do to submit the information (not via email)to a live c

  • 2.4Gig, No good for TV cards?

    I've got a FlyVideo98 TV card. I first installed it in an Athlon 700 and I had minor interference. I then got a 1.2gig Athlon chip and reception was perfect. With my new 648 and 2.4Gig P4, I get unwatchable Ghosting. I tried the Spread Spectrum BIOS

  • Disable the custmization of dynamic PDF

    Hi , To develop the XDP , i am using the LC Designer . here i used the PDF security option to restrict editing the PDF . Like thers is a possiblity to open the PDf in the tool (designer , acrobat ...) and easily they can modify and use the pdf . But

  • What would prevent my starting Firefox 3.6.10 on Windows 7?

    Regardless of how I try to bring up Firefox 3.6.10, from Desktop, from Windows menu, from program library, nothing happens. No error message nor any sign of Firefox. This happened a couple of days ago and then tonight.

  • Multiple iPods using One Computer

    Over the past two years, I have acquired an iPod Mini, iPod Shuffle, and most recently an iPod nano. I have loaded iTunes for the iPod Mini, but don't want to have 3 versions of iTunes on this one computer (my wife wants to use one of the othe iPods)