Visualhub start conversion in applescript

Hi,
I have set up an applescript but Im stuck at this point.
I have set up a folder action so that when a new file (video) is added to a particular folder it runs this script which opens Visualhub, selects the new item and runs a standard conversion.
I have borrowed some code from dougscripts that delays the start of this conversion until the file has completed the transfer. Once this is done it opens Visualhub, selects the item added to the folder. see code below:
property DELAYTIMESECONDS : 5 -- How long to wait between checking file size.
on adding folder items to thisFolder after receiving theItems
repeat with f in theItems
set oldSize to 0
set newSize to -1
-- When newSize equals oldSize, it means the copy is complete because the size hasn't changed.
repeat while newSize is not equal to oldSize
-- Get the file size.
set oldSize to size of (info for f)
delay DELAYTIMESECONDS
-- Sample the size again after delay for comparison.
set newSize to size of (info for f)
end repeat
tell application "VisualHub"
launch
open (theItems)
end tell
end repeat
end adding folder items to
This all works fine, but this is where Im stuck. I need the script to hit the start button to start the conversion.
Does anyone know how to do this?
Thanks
Dave
Message was edited by: Dangerous Dave

I had read that post and had trouble getting it to suit my needs.
I have added an automator workflow which I saved as an application and called it StartConvertButton, which I recorded my actions hitting the start button in VisualHub. I then just got the script to launch the application and it works.
property DELAYTIMESECONDS : 5 -- How long to wait between checking file size.
on adding folder items to thisFolder after receiving theItems
repeat with f in theItems
set oldSize to 0
set newSize to -1
-- When newSize equals oldSize, it means the copy is complete because the size hasn't changed.
repeat while newSize is not equal to oldSize
-- Get the file size.
set oldSize to size of (info for f)
delay DELAYTIMESECONDS
-- Sample the size again after delay for comparison.
set newSize to size of (info for f)
end repeat
tell application "VisualHub"
launch
open (theItems)
end tell
tell application "StartConvertButton"
Launch
end tell
end repeat
end adding folder items to
I now want to research using script to set the vhub settings and a folder to save in.
Dave

Similar Messages

  • Hello button opens "start conversation", but after this there is no further action

    on my mac os 10.6.8 I updated firefox to 36.0 in order to use HELLO. But when the hello button is clicked it only displays the blue "start conversation" button - but furthermore nothing. Besides this the selection bar for changing search engines in firefox is blocked.

    hello, firefox hello won't work when you've set it up to run in permanent private browsing mode ("never remember history" in the options > privacy panel).
    [[Settings for privacy, browsing history and do-not-track]]

  • CUPC Error - Failed to start conversation Start conversation capability is not available

    We are running CUCM 7.1.5.32900-2 and Presence 8.5.2.10000-49.
    When some of the users highlight numbers and call them using click to call (The click to call that comes as a part of CUPC), they are getting the following error box...
    Error
    Failed to start conversation
    Start conversation capability is not available
    Our users typically have 7941 phones that are associated with their user. They are not using softphone.
    Has anyone else come across this error, and what was the culprit?
    Thanks,
    David

    Hi David,
    http://www.cisco.com/en/US/docs/voice_ip_comm/cups/8_0/english/install_upgrade/deployment/guide/deploy.html
    Cannot Place or Receive Calls After a Secure Profile is Enabled
    Problem   After a secure profile is enabled for a user, the user cannot place or receive calls. The user might see the following error message multiple times:
    Failed to start conversation
    The user can use the instant messaging features.
    This problem occurs if a secure profile is enabled for the user in Cisco Unified Communications Manager while either of the following is true:
    •The user is signed in to Cisco Unified Personal Communicator.
    •The cucsf.exe process is running on the computer of the user, that is, Cisco Unified Personal Communicator is running, but the user has not signed in.
    Ask the user to sign out of Cisco Unified Personal Communicator, then sign in again.
    Hope it helps,
    Anand

  • Messages not allowing me to start conversations with text only recipient on iMac/MB

    I do not know if Messages is supposed to work this way - but right now I can't START conversations with someone who I have to SMS message (they are NOT a part of iCloud, etc.) from my computer (both running released Yosemite).
    The reason I say I'm not sure - is that I was part of the developer beta (even tried the public beta on one laptop when it was available) - and Messages has operated about 3 different ways during that time.  During the beta - I went from it working just like I thought it should, and in two weeks, lost some abilities, and by the start/middle of August I lost ALL ability to text SMS recipients prior to GD release of Yosemite.
    Wasn't able to initiate conversations with SMS recipients right after the GD release either.  Then a couple weeks after the GD release, it started working fine, and I COULD initiate SMS conversations on my computers.  Now in the last few days, I again can't initiate SMS messaging with SMS-only recipients on the computers.
    IF I START the SMS conversation using my phone or iPad, my computers will sync-up with the messages, and I can carry on a conversation using my computers, but can't initiate a conversation to an SMS-only recipient.  However, the "SMS" section on https://www.apple.com/osx/continuity/, indicates I'm supposed to be able to initiate SMS conversations by "clicking a phone number".  I think iCloud has been up and down, and between the iOS updates, etc. and iCloud issues/updates that it is causing problems.
    So - is this something that others are having issues with?  Is this just some temporary issue that's occurring until 10.10.1 or 8.1.x are released?  ????

    Thanks for all the replies! 
    I finally got time to go through a longer session dealing with the issue.  Wound up having to completely disable, then re-enable the affected systems on my iPhone.  Even though enabled - they simply would not work.  Had to disable on the iPhone, wait a while, then re-enable on the iPhone.

  • Automated report/ PDF conversion with AppleScript

    Hello-
    I am attempting to PDF a spreadsheet from Dropbox, and email it to a set list of recipients with AppleScript.  Much of this I have been able to figure out, but I am having some issues with the PDF conversion.  As you can see below, I am still working on sending the xls file, and have not yet been able to get AppleScript to convert a specific tab of the file to aPDF.  I expect scheduling to be handled theough crontab.
    Current script is as follows:
    tell application "Finder"
              set folderPath to folder "Macintosh HD:Users:user:Dropbox:folder:Calculated PO Sheet"
              set theFile to first file in folderPath as alias
              set fileName to name of theFile
    end tell
    set theSubject to "Current PO Report" date
    set theBody to "See attached."
    set theAddress to "recipient email"
    set theAttachment to "CALCULATED PO SHEET.xlsx"
    set theSender to "sender email"
    tell application "Mail"
              set theNewMessage to make new outgoing message with properties{subject:theSubject, content:theBody & return & return, visible:true}
              tell theNewMessage
                        set visibile to true
                        set sender to theSender
      make new to recipient at end of to recipients with properties {address:theAddress}
                        try
      make new attachment with properties {file name:theAttachment} at after the last word ofthe last paragraph
                                  set message_attachment to 0
                        on error errmess -- oops
      log errmess -- log the error
                                  set message_attachment to 1
                        end try
                        log "message_attachment = " & message_attachment
      #send
              end tell
    end tell

    Hi,
    there is a special setup for this requirement. Please see the following support note
    Reference
    Oracle Reports Output For Indian Languages Like Gujarati, Marathi [ID 980554.1]
    Roberto

  • IMessage won't start conversation from Mac

    Hey everyone,
    Iv'e been looking for a solution online for this problem iv'e been having, but i couldn't find answers anywhere.
    The problem is that for some reason, i can't start a conversation from my mac when trying to send new messages. when i send those messages from my iphone it works, and then i can continue the conversation from my mac.
    also, iv'e noticed that it takes a lot of time for messages to "sync" itself with my conversations that i started on my iphone. is there any way to "refresh" imessage (like on mail for example...)???
    i verified that my accounts on both devices are the same, that i have the same settings, but still, nothing works.
    anyone is having the same problems?? anyone has a solution...?
    Thanks,
    Tal.

    Hi,
    So,  in Messages main window you have New Message at the top left.
    You are entering  your Contacts Name in the "To" field or using the Blue + icon > Contacts and selecting the contact.
    The name is turning Blue ?
    The Text entry field at the bottom also reads iMessage ?
    If the name is not Blue then carefully click the downward arrow head at the end of the name.
    Select the active iMessage option (highlighted with blue Speech bubble)
    Does the name go Blue now ?
    I tried testing with my iMessage Account logged out and the setting in the General Section set to Allow IMs and iMessages to "Wake" the app but this did not start the iMessage account when iMessaging from the iPhone
    It was only a one off test with the app open but the account logged out which seemed closest to what you describe.
    9:26 PM      Thursday; February 14, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Start dictation with applescript

    Is there a way to start OS X new dictation from AppleScript?
    I tried :
    tell application "DictationIM" to activate 
    but it did not seem to work although it didn't give me an error.
    Any clue?

    Hi,
    If you don't mind using GUI Scripting (you must enable access for assistive devices in the Accessibility System Preference pane), the following script should toggle the Dictation switch between On and Off.
    tell application "System Preferences"
        reveal pane id "com.apple.preference.speech"
        -- activate -- only if you wish to make the Dictation & Speech window visible
        tell application "System Events"
            tell process "System Preferences"
                tell window "Dictation & Speech"
                    tell tab group 1
                        click radio button "Dictation"
                        tell radio group 1
                            if value of radio button "On" is 0 then
                                click radio button "On"
                            else
                                click radio button "Off"
                            end if
                        end tell
                    end tell
                    if sheet 1 exists then
                        tell sheet 1
                            click button "Enable Dictation"
                            repeat while sheet 1 exists
                            end repeat
                        end tell
                    end if
                end tell
            end tell
        end tell
        quit -- optional
    end tell
    Hope it can help.
    Message was edited by: Pierre L.

  • Starting a Slideshow Applescript help

    I am trying to make an Applescript to launch a slideshow from the finder, not an iPhoto slideshow, but the one you get by clicking the Tools button and selecting slideshow. It is much easier to choose which photos I want to save my computer by using that, but it is a pain to have to select all the photos, and then click multiple buttons to view it.
    So I set out to create a script to select all the files in the folder, and start a slideshow. I am very close. I can click that button, but don't know how to script the menu it displays when clicking the button. Much help would be appreciated.
    Here is my script so far:
    tell application "Finder"
    activate
    tell application "System Events"
    tell process "Finder"
    tell menu bar 1
    tell menu bar item "Edit"
    tell menu "Edit"
    click menu item "Select All"
    end tell
    end tell
    end tell
    end tell
    end tell
    end tell
    tell application "System Events"
    tell process "Finder"
    tell window 1
    tell tool bar 1
    tell group 2
    tell menu button 1
    click
    end tell
    end tell
    end tell
    end tell
    end tell
    end tell
    13" Macbook Mac OS X (10.4.9) 2 GHZ Core 2 Duo, 2 GB RAM, 80 GB HD

    I assume you're after the 'Quick Look' option, right?
    If so, there's a far more direct way of doing what you want. In general, avoid using UI scripting (the whole 'tell application "System Events" stuff) as much as possible. You can't do it all via direct scripting, but you can simplify your script a lot:
    <pre class=command>tell application "Finder"
    activate
    select every file of window 1
    tell application "System Events"
    tell process "Finder"
    keystroke "y" using {command down}
    end tell
    end tell
    end tell</pre>
    In this case I'm using the Finder's direct commands to select all the files. This is much better than trying to drive the menu bar (what happens to your script, for example, if you're running on a non-English version of the OS that doesn't have a 'Select All' item in the 'Edit' menu since those words are translated to some other language.
    Unfortunately I can't see a way to invoke the slideshow directly, but I'm using the command-key equivalent of Quick Look. This is also preferable since your script would fail if the toolbar wasn't visible in the current window, and using keystrokes wouldn't have any negative effects if the menu item wasn't available for some reason.
    The other advantage of using direct scripting is that you can get more creative/precise in what you want to do. For example, selecting all the items in a folder might not be appropriate, especially if there were mixed media files (word processor documents, spreadsheets, photos, etc.) or folders.
    By driving the Finder directly you can do things like:
    <pre class=command>tell application "Finder"
    activate
    select (every file of window 1 whose kind is "JPEG Image")
    end tell</pre>
    This makes sure you only select JPEG images, leaving everything else deselected, which is hard to do via the menus.

  • Why is it taking 6 hours to start conversion??

    I figured that since it says that subscribers have priority over trial users I would subscribe...but there is no improvement in the service after I paid! Tried converting 2 files yesterday on the trial, it sat there for almost 24 hours and nothing happened. I need these files today, and after paying, I see nothing different than I saw yesterday. I don't HAVE 6 hours to wait for this!! What is going on???

    I have done that, and as of yet received no response. If I can't get these files converted by the end of the day, I have wasted the ten bucks. I used this service a while back (trial, even) and it started right away and worked beautifully, no idea what is going on.

  • When starting a conversation via email instead of imessage

    hello,
    I have a iphone 5, when starting a conversation with your icloud email  instead of your imessage, I am curious, if im texting and people see my email instead of my phone number, will I still be able to track my messages sent and receive thru my icloud email or no?..or does this still show up on my phone bill as a messaging texting or no?
    let me make this clear texting someone thru my Imessages not when I go to my regular email account

    I don't think you understand what im saying ...for example
    1.. go to setting
    2. then messages
    3. then go to send and receive column
    4..in there you can choose if you can text with email or phone..on bottom says start conversation with and gives a the list or phone number or email option and you can check it off.... I do it all the time

  • IMessages sent from icloud address/phone number=2 conversations!

    This is a long-standing issue that defies resolution. At times, my iphone or my wife's iphone will send iMessages from our iCloud addresses instead of our phone number. So if my wife sends an iMessage to me, I sometimes get a new message from "[email protected]". Although her name, email addresses and phone number are in my Contacts, this new conversation shows up as her email address. We used to think it was because she travels abroad and uses wi-fi in her hotel that caused the phone to use an email address rather than her number because she was out of the UK. Not so! Here's what happened today: My wife sent me and our 2 children iMessages from London Heathrow to us three at home. My message came through as from her email address, my daughter's also came through from her email address, but my son, a few yards down the hallway got his from her phone number.
    This is a typical scenario which can work the other way round when it's ME sending her the iMessages where she gets my message as though I'd sent it from my email address rather than the phone number.
    I have been through all the hoops I know of to sort this but I just can't fix it. I don't know whether it's the iPhone, iCloud or what that's at fault. But it is driving me mad.
    In this morning's case, I replied to her message by using an older (yesterday's) conversation to send my iMessage to her, and her reply to that came to me via her phone number, as expected, and good as gold. Had I just replied to her iMessage, it would have perpetuated the TWO conversations. I have tried logging out and back in, deleting the accounts and reinstating them, re-entering the settings, making sure that the "Start new conversations from..." is set up correctly and so on. Then after a while, it returns, randomly, to sending texts from the email and starts a new conversation again. And you can't combine the 2 conversations even when you go to Details-Add to existing contact etc.
    I have also just been informed by a supplier that my iMessages to him are showing up as my email address not my phone number, despite my iphone being set to 'Start conversations from +44777...etc"
    Please throw out suggestions as you wish and I'll be grateful, even if it's one I've already tried and failed with.
    This icloud is a nightmare.
    Many thanks in advance.
    Chris
    iphone 6, latest iOS

    Bump.
    So no one knows anything about this, or how to correct this iMessage bug?

  • CUCIMOC 8.0 Error "Start converstation capability is not available"

    I've got a user that I'm trying to setup CUCIMOC 8.0 for. We're using the latest CUCIMOC client release, Office Communicator 2008 R2 at the latest CU level, and Call Manager 7.1. I've got everything setup for the user identically to how other (working) CUCIMOC users on our CM are setup. The user is able to login to the CUCIMOC client, and is able to use his phone to make calls, but when he tries to use the softphone he gets the error message:
    "Failed to start converstation. Start conversation capability is not available."
    Digging further, when looking at this device in CUCM Admin, the softphone device shows up as Active and Trusted, but doesn't show a registration.
    Looking further, in the Core client log from his machine, I get the error below (indicating the softphone isn't able to register):
    Any ideas?
    2011-04-25 12:41:46,292 INFO  [ws-pool-thread-2] [EventAdapter] [SpringWSServiceLogger.logMessage(137)] - SOAP Incoming --- SystemServiceEndpoint - <heartbeat xmlns="http://service.system.v2.soap.uc.cisco.com"><clientId>CUCIMOC-1</clientId></heartbeat>
    2011-04-25 12:41:46,293 INFO  [ws-pool-thread-2] [EventAdapter] [SpringWSServiceLogger.logMessage(137)] - SOAP Outgoing --- SystemServiceEndpoint - <ns2:heartbeatResponse xmlns:ns2="http://service.system.v2.soap.uc.cisco.com" xmlns:ns3="http://system.v2.soap.uc.cisco.com/types"><ns2:ok>true</ns2:ok></ns2:heartbeatResponse>
    2011-04-25 12:42:02,911 ERROR [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(69)] - 17:42:02.911 [11d0] SIP : sip_tcp_read_socket : socket error=92011-04-25 12:42:02,911 INFO  [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(73)] - 17:42:02.911 [11d0] SIPCC-SIP_REG_STATE: 1/51, sip_reg_sm_process_event: SIP_REG_STATE_REGISTERING <- E_SIP_REG_TMR_RETRY2011-04-25 12:42:02,911 DEBUG [Thread-19] [SoftPhoneProvider] [JPlatUi.uiSetCcmConnStatus(175)] - Status of CCM 'mdsn-cmpub1' is NONE
    2011-04-25 12:42:02,911 ERROR [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(69)] - 17:42:02.911 [11d0] SIP : sip_tcp_detach_socket : Invalid socket2011-04-25 12:42:02,912 DEBUG [Thread-19] [SoftPhoneProvider] [JPlatUi.uiSetCcmConnStatus(175)] - Status of CCM 'mdsn-cmsub1' is NONE
    2011-04-25 12:42:02,912 DEBUG [Thread-19] [SoftPhoneProvider] [JPlatUi.uiSetCcmConnStatus(175)] - Status of CCM 'mdsn-cmpub1' is NONE
    2011-04-25 12:42:02,912 DEBUG [Thread-19] [SoftPhoneProvider] [JPlatUi.uiLineRegState(119)] - Registration status for line:1 is:false
    2011-04-25 12:42:02,912 DEBUG [Thread-19] [SoftPhoneProvider] [SoftPhoneConnectionContext.lineNotify(777)] - Registration state not changed
    2011-04-25 12:42:02,912 INFO  [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(73)] - 17:42:02.911 [11d0] SIPCC-UI_API: ui_set_ccm_conn_status: ***********CUCM mdsn-cmpub1 Not connected***********2011-04-25 12:42:02,912 ERROR [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(69)] - 17:42:02.911 [11d0] SIPCC-LINE_NUM: sip_platform_localexpires_timer_stop: Error: Line number (60) is invalid2011-04-25 12:42:02,912 ERROR [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(69)] - 17:42:02.911 [11d0] SIPCC-LINE_NUM: sip_platform_localexpires_timer_stop: Error: Line number (61) is invalid2011-04-25 12:42:02,912 INFO  [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(73)] - 17:42:02.911 [11d0] SIPCC-UI_API: ui_set_ccm_conn_status: ***********CUCM mdsn-cmsub1 Not connected***********2011-04-25 12:42:02,913 INFO  [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(73)] - 17:42:02.911 [11d0] SIPCC-UI_API: ui_set_ccm_conn_status: ***********CUCM mdsn-cmpub1 Not connected***********2011-04-25 12:42:02,913 INFO  [Thread-9 ] [SIP (C++)] [JavaTracer.NativeTraceCallback(73)] - 17:42:02.912 [12bc] SIPCC-UI_API: 1/0, ui_set_sip_registration_state: 02011-04-25 12:42:03,011 DEBUG [Thread-19] [SoftPhoneProvider] [JPlatUi.uiRegAllFailed(138)] - Registration failed for all lines:
    2011-04-25 12:42:03,011 ERROR [Thread-19] [SoftPhoneProvider] [SoftPhoneConnectionContext.regAllFailed(850)] - All registrations failed.
    2011-04-25 12:42:03,011 DEBUG [Thread-19] [SoftPhoneProvider] [SoftPhoneConnectionContext.updateRegStateAllLines(1073)] - regState = false

    Hi,
    Try the following-
    1) Uninstall local antivirus/firewall
    2) disable all network adapters except the one being used
    3) update hardware driver such as video and audio
    4) uninstall cucimoc and re-install using local admin permission
    Also try the latest version cuci-lync 8.5.2 (it is compatible with OCS 2007 R2 and up)
    http://www.cisco.com/en/US/partner/docs/voice_ip_comm/cucimoc/8_5/english/release/cucimocReleaseNote.html#wp64340
    http://www.cisco.com/cisco/software/release.html?mdfid=283665631&softwareid=283732952&release=8.5%282%29&relind=AVAILABLE&rellifecycle=&reltype=latest&i=rm
    Thanks

  • Two different conversations from same contact - Problem

    Hi..
    I have a weird problem guys. Ive always used a 3GS, and never faced this issue before.
    Ive bought a new brand iPhone 5 with iOS 6.1.2 and problem is that when i create a new SMS message and send it to a contact, a new conversation appears, as usual.
    But when that contact answers that same message, another conversation appears with the same contact over the first one.
    This does not happen with all my contacts, only a few. I dont know if this is happening because of their carrier or what.
    If i continue writing on the conversation "started" by my contact then, theres no problem at all.
    The problem is that my new started conversation is different from the one started by my contact.
    I must say that some of this contacts have only one number registered in my iphone so i dont think its an issue with numbers.
    Im not using imessage, and also these people does not have idevices, so its not an imessage problem.
    Im posting a picture for you to understand. I couldnt find anything related to this that happened to another person.
    I dont know if its iOS related or what because i used only one version of iOS till now.
    Please i need answers. Thanks in advanced!

    Purnendu,
    Does not matter how many user groups are there - the only requirement you need to fulfil is the portal user id of these users should be exactly same (spelling) with their user id in the backend CRM systems. Then your basis administrator can easily import the verify.der certificate from portal in to the CRM system (for both clients) and have the SSO working for both.
    Now create two roles - not one - one each for each client. Create two system objects connecting to CRM system's two clients, and create two iViews for each client. Add these iViews individually to seperate roles. Assign the first role to first group of users and second role to second group. If the SSO is configured correctly I dont see any issues here.
    If you dont have all the userids for these two groups in the backend then probably you can use two userids in these two clients - and then do the user mapping between the groups and these two users. But better approach should be using logon tickets only.
    Regards,
    Shubhadip

  • Conversion Agent Error - CMException

    Hi ,
    We are trying to map an excel file to another system using conversion Agent for transformation. We have created the transformation in the Conversion Agent Studio and deployed the service in our integration engine on XI Server(in the serviceDB folder).
    But the file is not getting transformed and the message is failing in the communication channel only giving the below errors . ( Runtime WorkBench - > Communication Channel monitoring ) .
    The source file is getting picked up from the respective folder where it has been placed, and also the TransformBean is being called too.
    "Attempt to process file failed with com.itemfield.contentMaster.CMException".
    "Transformation failed : CMException : Failure while trying to create engine log .
    D:/ConversionAgent/Log/Init/Events.cme"
    Please let us know what parameters we have missed out due to which we are getting this error.
    Thanks
    Satish

    Hi refer this link may be helpful
    have a look at the following(page 8 for conversion agent)
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9913a954-0d01-0010-8391-8a3076440b6e
    /people/alexander.bundschuh/blog/2006/03/14/integrate-sap-conversion-agent-by-itemfield-with-sap-xi
    /people/paul.medaille/blog/2005/11/18/conversion-agent-a-free-lunch
    /people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield- [original link is broken] How To Get Started Conversion Agent
    /people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield
    http://help.sap.com/saphelp_nw04/helpdata/en/43/6f3f4347336fc9e10000000a1553f6/CMSap.pdf
    in this document:
    http://help.sap.com/saphelp_nw04/helpdata/en/43/6d960dac846fcbe10000000a1553f6/CMAdminGd.pdf
    To check with your installation and configuration refer following blog
    /people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield
    Thanks!!
    Pls reward if useful

  • Help with configuring docx - PDF conversion needed

    Hi all,
    Problem is: pdf is created but it is not pdf, files are just renamed to .pdf
    I have following environment
    - centos 5.6
    - WLS 10.3.5.0
    - UCM 11gR1-11.1.1.5.0-idcprod1-110413T184243 (Build:7.3.2.182)
    - IBR Version:11gR1-11.1.1.5.0-idcprod1-110413T184243 (Build:7.3.2.182)
    - Enabled PDFExportConverter on IBR.
    - Checked "Convert to PDF using PDF Export" on "primary web rendition"
    - Configured IBR to convert doc and docx files to pdf.
    When i checkin new docx, following data is written to agent log:
    Log entry for conversion job '77':
    Starting to convert: Input File = '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/881.docx' Output File = '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.docx' Conversion Type = 'Word' Content ID = 'ITDL267HKI000884' Title = 'test444'
    Info     11/1/11 8:27 AM     Log entry for conversion job '77':
    Started PDFExport step.
    Info     11/1/11 8:27 AM     Log entry for conversion job '77':
    Creating PDF
    Writing PDF Export resource file.
    Launching PDF Export
    Info     11/1/11 8:27 AM     Log entry for conversion job '77':
    Step PDFExport completed.
    Info     11/1/11 8:27 AM     Log entry for conversion job '77':
    Success
    Conversion history says Success.
    However, the file is not converted to pdf, it is only renamed to .pdf. If i download the file and rename it back to .docx it opens in office just fine.
    Thank you in advance,
    -hk
    Below is also the console output of operation:
    refperformance/6     11.01 08:27:23.609     IdcServer-4768     job progress for: 77 -- accepting job
    refperformance/6     11.01 08:27:23.611     IdcServer-4768     job progress for: 77 -- putting in preconversion queue
    refinery/6     11.01 08:27:23.686     IdcServer-4769     entered m_postConvertedJobsTable edit with action: COPYJOBS; on jobID:
    refperformance/6     11.01 08:27:27.904     Job_77_itdl267tempitlocal16200     job progress for: 77 -- starting conversion
    refsteplogic/6     11.01 08:27:27.905     Job_77_itdl267tempitlocal16200     Loading data for step: PDFExport
    refsteplogic/6     11.01 08:27:27.905     Job_77_itdl267tempitlocal16200     Secondary Conversion step: PDFExport
    refinery/6     11.01 08:27:27.906     Job_77_itdl267tempitlocal16200     starting conversion: WORD; is subconversion: false
    refinery/6     11.01 08:27:27.907     Job_77_itdl267tempitlocal16200     Script: TRUE
    refinery/6     11.01 08:27:27.907     Job_77_itdl267tempitlocal16200     Evaluated to: TRUE
    refinery/6     11.01 08:27:27.907     Job_77_itdl267tempitlocal16200     Script: ExecuteSubconversion<$subConversion="MSOffice",msOfficeApp="WORD"$>
    refinery/6     11.01 08:27:27.907     Job_77_itdl267tempitlocal16200     Evaluated to: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     Starting step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.909     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Script: ignoreStatus
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Evaluated to: ignoreStatus
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Script: <$subConversion$>
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Evaluated to: MSOffice
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     starting conversion: MSOFFICE; is subconversion: true
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Script: TRUE
    refinery/6     11.01 08:27:27.910     Job_77_itdl267tempitlocal16200     Evaluated to: TRUE
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Script: ExecuteSubconversion<$stepsToWebviewable="MSOfficeToPostscript, PostscriptToPDF, ExecuteSubconversion<$subConversion='CreateThumbnail'$>", subConversion="UniversalConversion", supportsOIX="true", supportsXX="true", supportsOO="true", supportsIX="true"$>
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Evaluated to: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Starting step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Script: ignoreStatus
    refinery/6     11.01 08:27:27.911     Job_77_itdl267tempitlocal16200     Evaluated to: ignoreStatus
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Script: <$subConversion$>
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Evaluated to: UniversalConversion
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     starting conversion: UNIVERSALCONVERSION; is subconversion: true
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Script: TRUE
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Evaluated to: TRUE
    refsteplogic/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     processing Direct PDF Export
    refsteplogic/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     PrimaryWebviewable is 'ExportPDF' with current stepsToWebviewable set '' setting subConversion to 'Direct PDFExport' and setting conversionSet to 'true'
    refsteplogic/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     XML rendition steps not defined
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Script: <$include universal_conversion$>
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     Evaluated to: ExecuteSubconversion
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200     
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200                    
    refinery/6     11.01 08:27:27.912     Job_77_itdl267tempitlocal16200               ,
    refsteplogic/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Starting step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Script: ignoreStatus
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Evaluated to: ignoreStatus
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Script: <$subConversion$>
    refinery/6     11.01 08:27:27.913     Job_77_itdl267tempitlocal16200     Evaluated to: Direct PDFExport
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     starting conversion: DIRECT PDFEXPORT; is subconversion: true
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Script: true
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Evaluated to: true
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Script: PDFExport, ExecuteSubconversion<$subConversion='CreateThumbnail', supportsIX='true'$>
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Evaluated to: PDFExport, ExecuteSubconversion
    refsteplogic/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Loading data for step: PDFExport
    refinery/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Starting step: PDFExport
    refsteplogic/6     11.01 08:27:27.914     Job_77_itdl267tempitlocal16200     Loading data for step: PDFExport
    refinery/6     11.01 08:27:27.915     Job_77_itdl267tempitlocal16200     Script: onErrorFail, producesRequiredWebviewable
    refinery/6     11.01 08:27:27.915     Job_77_itdl267tempitlocal16200     Evaluated to: onErrorFail, producesRequiredWebviewable
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'preferoitrendering' was overridden with value: false
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'dbshowheadings' was overridden with value: false
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'defaultmarginbottom' was overridden with value: 1440
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'defaultheight' was overridden with value: 11
    refinery/6     11.01 08:27:27.916     Job_77_itdl267tempitlocal16200     export parameter 'timezone' was overridden with value: 0
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'watermarkpath' was skipped, no value set
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'ssdirection' was overridden with value: AcrossandDown
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'ssshowgridlines' was overridden with value: false
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'compress' was overridden with value: true
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'dolinearization' was overridden with value: false
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'defaultwidth' was overridden with value: 8.5
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'embedfonts' was overridden with value: true
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'defaultmarginleft' was overridden with value: 1440
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'usedocpagesettings' was overridden with value: true
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'defaultmarginright' was overridden with value: 1440
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'defaultmargintop' was overridden with value: 1440
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'dbshowgridlines' was overridden with value: false
    refinery/6     11.01 08:27:27.917     Job_77_itdl267tempitlocal16200     export parameter 'fontdirectory' was overridden with value: /usr/share/fonts/msttcorefonts/
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     export parameter 'exportstartpage' was overridden with value: 1
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     export parameter 'ssshowheadings' was overridden with value: false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     extra px parameters: null
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     contents of /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/px.cfg
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     maxssdbpageheight     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     exportendpage     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     watermarkiotype     unix
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultmarginright     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssshowgridlines     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     mimeheader     standard
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     enablewatermark     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     outputid     FI_PDFA
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     timezone     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     fallbackformat     FI_TEXT
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssscalexhigh     1
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     tempdir     /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssscalepercent     100
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     readbuffersize     2
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     dolinearization     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     graphicoutputdpi     72
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     graphicheightlimit     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     dbshowheadings     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     lzwcompression     enabled
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     compress     true
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultmarginleft     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     jpegcompression     enabled
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultinputcharset     utf8
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssdirection     AcrossandDown
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     dbfittopage     NoScaling
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     embedfonts     true
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     watermarkposition     offsetfromcenter
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     horizontalpos     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultprintfontface     Arial
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     whattoexport     all
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     graphicwidthlimit     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultprintfonttype     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     verticalpos     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     tempbuffersize     2048
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultprintfontheight     20
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     dbshowgridlines     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     usedocpagesettings     true
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultmargintop     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssscalexwide     1
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     defaultmarginbottom     1440
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     preferoitrendering     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     mapbuffersize     8192
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     showhiddenssdata     no
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     unmappablechar     0x002A
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssfittopage     NoScaling
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     isodateformatting     no
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     fiflags     SCCUT_FI_EXTENDEDTEST
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     fontdirectory     /usr/share/fonts/msttcorefonts/
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     exportstartpage     1
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     watermarkscalepercent     100
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     ssshowheadings     false
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     maxssdbpagewidth     0
    refinery/6     11.01 08:27:27.918     Job_77_itdl267tempitlocal16200     watermarkscale     ScaletoPercent
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     Launching exsimple with: /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/881.docx /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/px.cfg
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     working directory: /opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess/
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     There are 3 environment vars set for this process
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200          LD_LIBRARY_PATH=/opt/middleware/jrockit_160_24_D1.1.2-4/jre/lib/i386/jrockit:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/lib/i386:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/../lib/i386:/opt/middleware/Oracle_ECM1/ucm/idc/components/EmailMetadata/lib:/opt/middleware/Oracle_ECM1/ucm/idc/components/NativeOsUtils/lib/linux/7.2.1.0:/opt/middleware/Oracle_ECM1/ucm/idc/components/SiteStudio/lib:/opt/middleware/Oracle_ECM1/ucm/idc/components/SiteStudioPublisher/lib:/opt/middleware/patch_wls1035/profiles/default/native:/opt/middleware/patch_oepe1050/profiles/default/native:/opt/middleware/patch_ocp360/profiles/default/native:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/lib/i386/jrockit:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/lib/i386:/opt/middleware/jrockit_160_24_D1.1.2-4/jre/../lib/i386:/opt/middleware/patch_wls1035/profiles/default/native:/opt/middleware/patch_oepe1050/profiles/default/native:/opt/middleware/patch_ocp360/profiles/default/native:/opt/middleware/wlserver_10.3/server/native/linux/i686:/opt/middleware/wlserver_10.3/server/native/linux/i686/oci920_8:/opt/middleware/wlserver_10.3/server/native/linux/i686:/opt/middleware/wlserver_10.3/server/native/linux/i686/oci920_8:/opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess:/opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess/
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200          GDFONTPATH=/usr/share/fonts/msttcorefonts/
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200          PATH=/opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess/
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     min time = 120000
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     max time = 300000
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     time factor = 2
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     (adjusted) time allowed 120000
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     appending to launch cmd: '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/881.docx'
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     appending to launch cmd: '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf'
    refinery/6     11.01 08:27:27.919     Job_77_itdl267tempitlocal16200     appending to launch cmd: '/opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/px.cfg'
    refinery/6     11.01 08:27:27.920     CmdLineConversion_77_exsimple     /opt/middleware/Oracle_ECM1/ucm/idc/components/ContentAccess-linux/linux/lib/contentaccess//exsimple /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/881.docx /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/px.cfg
    refinery/6     11.01 08:27:28.090     TaskLauncher_CmdLineConversion_77_exsimple_stdout     Export successful: 1 output file(s) created.
    refinery/6     11.01 08:27:28.090     Job_77_itdl267tempitlocal16200     exsimple return value: 0; out file: /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf; isValid: true
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Finished step: PDFExport
    refsteplogic/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Starting step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Loading data for step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     No timeout name was passed....using: DefaultTimeout
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Script: ignoreStatus
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Evaluated to: ignoreStatus
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Script: <$subConversion$>
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Evaluated to: CreateThumbnail
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     starting conversion: CREATETHUMBNAIL; is subconversion: true
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Script: <$isTrue(CreateThumbnails)$>
    refinery/6     11.01 08:27:28.093     Job_77_itdl267tempitlocal16200     Evaluated to: 0
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     finished conversion: CREATETHUMBNAIL; is subconversion: true
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Finished step: ExecuteSubconversion
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     finished conversion: DIRECT PDFEXPORT; is subconversion: true
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Finished step: ExecuteSubconversion
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     finished conversion: UNIVERSALCONVERSION; is subconversion: true
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Finished step: ExecuteSubconversion
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     finished conversion: MSOFFICE; is subconversion: true
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Finished step: ExecuteSubconversion
    refsteplogic/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Loading data for step: PDFExport
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     Steps completed for Job: 77
    refinery/6     11.01 08:27:28.094     Job_77_itdl267tempitlocal16200     PDFExport: 1: /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     dConversionState = Converted
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     dConvMessage = Success
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     dFormat = application/pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     dWebExtension = pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     RefineryConvertedFile = itdl267hki000884~1.pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     RefineryPrimaryConvertedPath = /opt/middleware/user_projects/domains/wcs_domain/ucm/ibr/vault/~temp/itdl267tempitlocal16200/77/itdl267hki000884~1.pdf
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     AdditionalRenditions =
    refinery/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     finished conversion: WORD; is subconversion: false
    refperformance/6     11.01 08:27:28.095     Job_77_itdl267tempitlocal16200     job progress for: 77 -- finished conversion
    (internal)/6     11.01 08:27:32.906     QueueLockId_77     Refinery tryied to return key 'AdditionalRenditions' but value was null
    refperformance/6     11.01 08:27:32.906     QueueLockId_77     job progress for: 77 -- moving to postconverted queue
    refinery/6     11.01 08:27:32.907     QueueLockId_77     entered m_postConvertedJobsTable edit with action: ADDJOB; on jobID: 77
    Edited by: hessu on 1.11.2011 8:50

    What exactly you mean with pdf drivers.
    I have not configured "Distiller Engine" in any way, since configuration guide says:
    http://download.oracle.com/docs/cd/E21764_01/doc.1111/e10800/c03_pdfi_all.htm
    "PDFExportConverter      Enables Inbound Refinery to use Oracle OutsideIn PDF Export to convert native formats directly to PDF on multiple platforms without the use of any 3rdParty >tools."br,
    -hk
    i remember configuring distiller engine ghostscript with earlier 10g version...
    Edited by: hessu on 4.11.2011 8:44

Maybe you are looking for