Problems converting DOC files in watched folder

Hi, <br /><br />Have a couple of issues with PDFG: <br /><br />We have managed to configure PDF generator and can view the AdminUI screens. However, when we place a word document in the IN folder, the OUT folder log displays the following message: <br />-----------<br />Failed to process job <file> <br />Error Code  1 009 <br />Reason : The service to convert the document could not be looked up. <br />-----------<br />The watched folder as well as services are on local drives. <br /><br />We get the same error when we use the AdminUI > 'create PDF' section to upload a doc/text file. However, we can right-click on a word document and convert it into a PDF. <br /><br />Both the JBoss and MySQL services are running. <br />We also notice that the JBoss service takes a long time (> 1 hr) to start up. <br /><br />Our only requirement is to convert DOC files in watched folder to PDFs. <br />Is there any way to speed up the service startup time? <br /><br />Regards, <br />Nagaraj

Hi Chris,
- Yes. PDFG was installed on machine having an Office2003 install.
- Yes. The same user credentials were used for Office and PDFG.
- PDFG is not the only application installed. However, both memory/processor utilization were < 50% throughout the JBoss service process. The JBoss service stays on the "starting" mode for a long time.
- We have installed JDK 1.4.2_08
Regards,
Nagaraj

Similar Messages

  • How to convert .doc files to .docx in a sharepoint library programmatically.

    Is there any possibility to Convert .doc files to .docx in a sharepoint document library.
    I have thousands and lakhs of .doc files and I need to automate to convert those .doc files to .docx with an automation script or powershell script or doing it programmatically.
    Can someone help me get through this.
    Thanks
    Gayatri

    Hello Gayatri,
    You can convert files from doc to docx using following options
    Option 1 
    in bulk using  Office File Converter (OFC) and Version Extraction Tool. Please refer below url for reference - http://technet.microsoft.com/en-us/library/cc179019.aspx
    Option 2 - PowerShell
    please refer url -http://blogs.msdn.com/b/ericwhite/archive/2008/09/19/bulk-convert-doc-to-docx.aspx
    Convert DOC to DOCX using PowerShell
    I was tasked with taking a large number of .DOC and .RTF files and converting them to .DOCX. The files were then going to be imported into a SharePoint site. So I went out on the web looking for PowerShell scripts to accomplish this. There are plenty to
    choose from.
    All the examples on the web were the same with some minor modifications. Most of them followed this pattern:
    $word = new-object -comobject word.application
    $word.Visible = $False
    $saveFormat = [Enum]::Parse([Microsoft.Office.Interop.Word.WdSaveFormat],”wdFormatDocumentDefault”);
    #Get the files
    $folderpath = “c:\doclocation\*”
    $fileType = “*doc”
    Get-ChildItem -path $folderpath -include $fileType | foreach-object
    $opendoc = $word.documents.open($_.FullName)
    $savename = ($_.fullname).substring(0,($_.FullName).lastindexOf(“.”))
    $opendoc.saveas([ref]“$savename”, [ref]$saveFormat);
    $opendoc.close();
    #Clean up
    $word.quit()
    After trying out several I started to convert some test documents. All went well until the files were uploaded to SharePoint. The .RTF files were fine but even though the .DOC fiels were now .DOCX files they did not allow for all the functionality of .DOCX
    to be used.
    After investigating a little further it turns out that when doing a conversion from .DOC to .DOCX the files are left in compatibility mode. The files are smaller, but they don’t allow for things like coauthors.
    So back to the drawing board and the web and I found a way to set compatibility mode off. The problem was that it required more steps including saving and reopening the files. In order to use this method I had to add a compatibility mode object:
    $CompatMode = [Enum]::Parse([Microsoft.Office.Interop.Word.WdCompatibilityMode], “wdWord2010″)
    And then change the code inside the {} from above to:
    $opendoc = $word.documents.open($_.FullName)
    $savename = ($_.fullname).substring(0,($_.FullName).lastindexOf(“.”))
    $opendoc.saveas([ref]“$savename”, [ref]$saveFormat);
    $opendoc.close();
    $converteddoc = get-childitem $savename
    $opendoc = $word.documents.open($converteddoc.FullName)$opendoc.SetCompatibilityMode($compatMode);
    $opendoc.save()
    $opendoc.close()
    It worked, but I didn’t like it. So back to the web again and this time I stumbled across the real way to do it. Use the Convert method. No one else seems to have used this in any of the examples but it is a much cleaner way to do it then the compatibility
    mode setting. So this is how I changed my code and now all the files come in to SharePoint as true .DOCX files.
    $word = new-object -comobject word.application
    $word.Visible = $False
    $saveFormat = [Enum]::Parse([Microsoft.Office.Interop.Word.WdSaveFormat],”wdFormatDocumentDefault”);
    #Get the files
    $folderpath = “c:\doclocation\*”
    $fileType = “*doc”
    Get-ChildItem -path $folderpath -include $fileType | foreach-object
    $opendoc = $word.documents.open($_.FullName)
    $savename = ($_.fullname).substring(0,($_.FullName).lastindexOf(“.”))
    $word.Convert()
    $opendoc.saveas([ref]“$savename”, [ref]$saveFormat);
    $opendoc.close();
    #Clean up
    $word.quit()

  • I can not open adobe files. mainly ones that end in doc. I purchased the 19.99 to convert .doc files

    I can not open adobe files that end in .doc. I purchased the 19.99 to convert doc to pdf and I still cant open. I get an error reading.

    Hi,
    Which Adobe Service did you purchased?
    If you have purchased CreatePDF please visit: https://createpdf.acrobat.com/SignIn.html
    Sign in with your Adobe ID and password, and then convert your word doc into PDF.
    Please let me know if that works.
    If you have Adobe Reader, you cannot convert .doc file to .PDF by drag and drop.
    ~ Aditya

  • How can i convert video files from my mac to watch them on my iphone?, how can i convert video files to watch them on my iphone?

    how can i convert video files from my mac to watch them on my iphone?, how can i convert video files to watch them on my iphone?

    Turns out the answer to that question changes if you ask it more than 4 times, so ask it again....
    The answer depends on the type of video files you want to convert.  If they are DRM protected commercial videos, no help can be given here.  Google.

  • How to convert .doc file into .rtf file in Java?

    Hello All,
    I want to convert doc file into rtf format in java and for the same i am not getting any help so pls suggest some solution for that.
    Thanks and Regards
    only1Vinay

    MS-Word formats (DOC) are notorious for not being standardized from one version to another, so what ever you get will be version specific. If you must do the conversion, I suggest you do a MS-Script in Word to do it or one of the .Net languages. As stated the Word format from version to version is not standardized.

  • How to convert Doc file into image

    hello frnds
                     Can any body guide me how to convert doc file into image and show into swf loader.
    actually i have to convert doc files into swf files in runtime so that i have to use this flow.
    is it possible to convert doc file into byte array and than convert into image.
    Thanks And Regards
        Vineet Osho

    You can convert any DisplayObject to byeArray using this function ImageSnapshot.captureBitmapData().getPixels()

  • There's a way to convert doc file to OTF ?

    please give me example if it can be implement.

    the FM isn't help.
    It's for spool and i'm talking about convert doc file to otf.
    Eliram.

  • Converting *.doc files to *.swf files

    I PURCHASED FLASHPAPER 2 SOME YEARS BACK TO CONVERT STATIC
    WINDOWS *.DOC FILES TO *.SWF FILES TO UPLOAD ONTO A WEBSITE. I
    RECENTLY BOUGHT A NEW COMPUTER WITH WINDOWS VISTA. FLASHPAPER 2
    DOES NOT WORK ON VISTA. I WAS INFORMED BY ADOBE THAT FLASH CS3 CAN
    RUN ON VISTA. I WOULD LIKE TO FIND OUT HOW TO CONVERT STATIC *.DOC
    FILES INTO *.SWF FILES ON FLASH CS3.

    you can also try this:
    Step 1. convert .doc file to .pdf
    you can find a free converter here
    http://sourceforge.net/projects/pdfcreator/
    Step 2. convert the .pdf file to .swf
    using PDF2SWF & SWFCombine from
    http://www.swftools.org/

  • Windows 2008 R2 Folder assign permission "Read and Write" problem with *.doc file

    Hello All,
    I am a new one here,
    I am sorry for any mistakes and also my english is so poor.
    M Brother company runing Windows 2008 R2 as Active Directory...
    We have folder Name: Admin
    and in this folder, there are alot documents files as : *.doc, *.dwg, *.txt etc.....
    All user accesing to these files and they can open to edit and save...
    One day my brother want me to set Admin folder for all users just"Read and Write.." mean they still can open files to edit and save... but can't delete..
    I did success with this..
    But only one thing happen.. when they open *.doc file to edit and attempting to save, the message alert" access denide " and they can only "SAVE AS"...We don't want "Save as"
    Could you show me how can we fix error with *.doc file while they trying to save? because it allow only save as.. but other files as *.text file or *.dwg they can save without problem..
    Could expert here ever face this issues and fix by yourself, please share me with this..
    Please help me..
    Best regards,

    Hi,
    Office programs are specific. They will create a temp file when edit, then the temp file will be deleted when close. So Delete permission is needed for users to saving Office files like Excel/Word.
    For more detaile information, please refer to the thread below:
    Special Permissions - User cannot save files
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/721fb2f1-205b-46e5-a3dc-3029e5df9b5b/special-permissions-user-cannot-save-files
    Best Regards,
    Mandy 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Files in watch folder not moving to "Sources" after being processed

    Files are not moving from the root of the watch folder into the "Sources" folder after being processed, which results in the files getting re-processed everytime AME is re-opened.
    I just upgraded to Creative Cloud from the Production Bundle 5.5 with no changes in hardware/software config, so it's not that, however since I'm new I'll walk through the checklist:
    Version: 6.0.3.1
    Other applications installed: Premiere, Photoshop, Lightroom, AME, After Effects
    Recent updates installed? Yes.
    OS: Windows 7 64-bit, all updates applied.
    Using AME through Creative Cloud? Yes.
    Source footage: Avid DNxHD exports from timeline in .MOV container
    Error message(s): None.
    Error present in specific output format/encoding preset? No. It's a global issue.
    What were you doing when the problem occured? Relaunching AME.
    Has this ever worked before? Yes, in CS5.5 Production Bundle's AME.
    What other sofware are you running? At the time, nothing.
    Third party codecs? Nope, other than the ones that Avid installs during it's own application installation.
    Computer hardware: *sighs* i7 3770k, 32gb ram, asus motherboard, gtx 570 graphics card, a bunch of hard drives, no third-party hardware.
    MPE Acceleration in Premiere: Not really relevant in this issue, but yes, when I use Premiere I use MPE.
    Is anyone else running into this issue?

    siva,
    can you check the url in SLD for the related business system. It should be 8000 also and not 50000(i had a similar error and it was resolved by changing the URL in SLD.
    is your DB up?
    thanks
    tony

  • Converting .doc file to PDF using Word 2008 - does not convert as is..

    I am trying to convert a .doc file (Word 2008) to a PDF file.  I have tried using the save as function and the print function.  Both will work however everytime 2 things happen:
    1.  The PDF file splits into 2 files (the document is 20 pages long)
    2.  In one area of text, two words are overlapped (in the PDF version) but are not overlapped in the .doc version.
    How do I convert the .doc to a PDF with out these two items occuring?
    Thanks in advance for your help
    T.

    I do not think this is an app but rather a function of MS-Word, the very function that does not work with high fidelity on Mac.  Any document of substance (greater than 10,000 words, imbedded images, figures, tables, or high formatting) will not convert accurately to PDF on Macbook Pro. 
    Using newest MS Office with updated service pacs, and experienced users. This is a puzzling incompetency on the Apple team's side. And there have been no fixes.  One could argue this is a MS problem since the software is theirs.  Probably true, but the problem occurs on Mac platforms, not PC platforms.  Apple can drive improvements.  Not sure Apple customers can.

  • Convert doc file generated by OpenOffice to PDF X1a

    Hi, I have a .doc file originally produced by Open Office Writer and then converted to a Word format. I would now like to use Acrobat 10 to convert this .doc file to a PDF X format, but I'm not having any luck. I've tried the following two approaches:
    1. I'm able to use Open Office Writer to convert it to a normal PDF format. I then tried to take that PDF file and convert it to a PDF X file using Acrobat Pro with Preflight, but a bunch of errors appeared.
    2. If I start in Acrobat Pro, select Create PDF from file, select my documents, none of the .doc files produced in Open Office show up on the list--as if Acrobat Pro won't read any .doc files produced by Open Office.
    Hope someone can help. I'm new to Acrobat Pro.
    Thanks in advance.

    Use Ctrl-P or Use FILE>Print when you have OO Writer open with your document. You should get something like below.
    Just select the Adobe PDF printer, check properties if you like, then print. In this case, OO shows a preview of the pages in the document as they should look. I created a simple one as an example. I did a preflight after using the PDF-X1A settings and did get errors noted. One of them had to do with tagging that does not happen when you use the print. You might try to print normally and then use preflight to convert. I tried also and still got errors. At least I may have given you some things to try.

  • Convert .doc file with embedded file(s)

    Dear all,
    I have around 1 million documents that need to convert from .doc / .xls to PDF, and I've found that some .doc files embedded with other files into it, like a .doc inside another .doc, or .xls inside another .doc, for those files, after converted them using LC PDFG, the embedded files will become an icon image, is there any methods to convert those documents so that the embedded files are also "attached" inside the result PDF? Thanks!
    Regards,
    Bearyung

    Hi Joel,
    The feature you are looking for, is currently not available in Acrobat.
    But you can create an interactive link (to open Word/Excel) using Acrobat. Please look at the following link:
    http://acrobatusers.com/tutorials/creating-and-editing-links
    Regards,
    Anoop

  • Pickup and process zip file in watch folder

    Hi,
    Could someone refer me to an example where it shows me how to use Java script in the Execute Script service to do the following:
    - Pickup the zip file from the Watch Folder
    - Unzip the zip file
    - Loop through all the folders, look for the documents and store them in the list document variable in the process
    Thank you in advance for the help!
    Hai

    You can certainly remove that file. it's basically the cached applet demo.jar (the JRE caches the downloaded jars so that you don't have to keep re-downloading them each time you visit the web site).
    The fact that your Antivirus complains about it just means that it's confused. We're all using the Sun environment, and I have the latest and greatest Norton, and there are no complaints, so it's clear that your Antivirus software needs a fix.

  • Problem converting music file into aiff: 'empty' aiff file

    I can't get on with my edit!! Problem: I try to convert a music file so I can use it in a sequence as background music. When I convert (export using quicktime conversion) the mp3 file into a aiff file (choosing bit depth 16 and 48000 khz) I can convert the file in an aiff file, but then, when I import this aif file and I want to listen to it, it doesn't contain any music, sound doesn't show up, as if it was empty (though shows 3 MB and right duration). What is going on here, what am I doing wrong??
    Please help!!

    It's not DRM protected, not coming from Itunes store... In fact it worked before but I don't know why it doesn't now, following all FCE instructions... MartinR you're right, it works when converting directly in itunes and then importing into FCE.
    Thanks guys!

Maybe you are looking for

  • Problem in creating new delivery order using BAPI_OUTB_DELIVERY_SPLIT_DEC.

    I'm using BAPI_OUTB_DELIVERY_SPLIT_DEC. It's creating a new delivery with zero quantity. I am populating the del_qty field in the Item_data table with the desired quantity. Can anyone suggest what should be done to get the new delivery order with the

  • ITunes media folder on external hard drive

    I moved my iTunes librrary to my external TC and hook up to it wirelessly.  How do I get my iTunes library to stop changing to my local drive on my MBA?  It has changed now 3 times from my TC to MBA. iTunes 11.1

  • Why my Itunes is not shuffling songs all time?

    After shuffling three or four songs from different albums, my Itunes will keep playing songs on shuffle mode from one album before going to the rest of my library. My Itunes is 10.6.3 version.

  • Stop Motion Effect?

    Is there a QUICK way to create an effect similar to stop motion animation (1 fps) with a video clip already on the time line in Final Cut Pro?

  • Unzipping archives

    HI there! I am trying to unzip a book I downloaded from a website and cannot. I have tried with Winrar, RAR and the unarchiver and the only thing I get is to double the icon of the document which never opens because everytime I click it to open it pr