Does Oracle 11g index Office 2007 documents?

I recently upgraded to 11g, because 10g didn't seem to index Office 2007 documents (e.g. Word, Excel, and PowerPoint) or PDFs v1.5 or higher. I need to be able to search on text in those documents. Everything works fine for PDFs and files generated using earlier versions of Microsoft products, but not for Office 2007 documents. The Oracle documentation for 11g says that it supports Office 2007, but I haven't had any luck. Any thoughts?
Edited by: sac1222 on Nov 1, 2009 11:49 AM
Edited by: sac1222 on Nov 1, 2009 1:59 PM

All download versions of Oracle software are the full versions. The 11.1.0.7 patchset will work with your downloaded 11.1.0.6, but you will need an Oracle Support account before you can download the patchset.
I believe you can download 11.1.0.7 directly for certain platforms - like Windows Server 2008 64 bit. If you don't have access to Oracle Support this might be an option for testing - you can get a 60 day evaluation copy of Windows Server 2008 [from Microsoft|http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=13c7300e-935c-415a-a79c-538e933d5424].

Similar Messages

  • Office 2007 Document Attaching in Solution Manager

    Dear Gurus,
    When document attaching in Solution Manager 7.01, the system does not support Microsoft Office 2007 formats. (docx, xlsx) Are there any customizing for this topic?
    Thank you,

    Hi,
    Thanks, in lieu with your detailed system message, please try with this
    The warning is because the file extension docx is not known for the
    system. All the known extension is defined in table SDOKMIME by standard
    . And customer can extend it in table SDOKMIME_C.
    Actually that is only a warning message, which will not block the
    following up processing. The docx file will be attached if you click on
    the green tick. And the file can be previewed and checked later on.
    If you would like to get rid of this warning anyway, you may extend the
    customer table using the following step:
    -spro->SAP Customizing Implementation Guide
    ->SAP NetWeaver->Knowledge Management
    ->Settings in the Knowledge Warehouse System
    ->Document Management Service
    ->Define MIME Type for File Name Extension
    -add an entry like
    File name extension = docx
    MIME type of a Web object = application/vnd.openxmlformats
    After everything has been done as above, please retry to attach, it should help.
    Cheers,
    sh

  • Web Location URLs for Office 2007 documents (pptx, xlsx, docx) not working

    In our current Content Server solution implemented, each content has a Web Location URL and a Native File associated with it. The Web Location URL(for a content in Public security group) is of the following format:
    http://ucmurl/groups/public/intranetcontent/CONTENT_ID.doc
    So far when a user clicks on this link, they are just presented with an 'Open' 'Save' dialog box, which clearly shows that UCM identifies this file format. So for a Word 2003 document called test.doc, the Open-Save dialog box says:
    Name: test.doc
    Type: Microsoft Word document..etc.
    The behaviour is the same for all Office 2003 documents, pdfs and images. However, it seems like UCM does not identify Office 2007 documents. When I check-in a content - test.pptx, and click on the Web Location URL, it prompts me to Open/Save a 'ZIP' file, which is what UCM does for any unidentified file formats.
    Any suggestions on how to fix this?
    The file formats under configuration manager have been updated to include the following formats with PASSTHRU conversion (since we dont need any conversion on these):
    pptx: application/vnd.openxmlformats-officedocument.presentationml.presentation
    docx: application/vnd.openxmlformats-officedocument.wordprocessingml.document
    xlsx: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
    The desired functionality is that when the user clicks on web location url, UCM should identify these file formats, and NOT consider them as ZIP files. Any help would be greatly appreciated.

    Try these - if you're using IIS. If not, them something similar should fix.
    Update IIS to include additional MIME types
    Also, if you want to add all of the Microsoft Office 2007 mime-types to IIS in one step you can do this:
    1. Stop IIS
    2. Edit the metabase XML file (C:\WINDOWS\system32\inetsrv\MetaBase.xml) using a text editor.
    3. Search for the <IIsMimeMap Location="/LM/MimeMap" …> element and append the lines below to the MimeMap attribute
    .docm,application/vnd.ms-word.document.macroEnabled.12
    .docx,application/vnd.openxmlformats-officedocument.wordprocessingml.document
    .dotm,application/vnd.ms-word.template.macroEnabled.12
    .dotx,application/vnd.openxmlformats-officedocument.wordprocessingml.template
    .potm,application/vnd.ms-powerpoint.template.macroEnabled.12
    .potx,application/vnd.openxmlformats-officedocument.presentationml.template
    .ppam,application/vnd.ms-powerpoint.addin.macroEnabled.12
    .ppsm,application/vnd.ms-powerpoint.slideshow.macroEnabled.12
    .ppsx,application/vnd.openxmlformats-officedocument.presentationml.slideshow
    .pptm,application/vnd.ms-powerpoint.presentation.macroEnabled.12
    .pptx,application/vnd.openxmlformats-officedocument.presentationml.presentation
    .xlam,application/vnd.ms-excel.addin.macroEnabled.12
    .xlsb,application/vnd.ms-excel.sheet.binary.macroEnabled.12
    .xlsm,application/vnd.ms-excel.sheet.macroEnabled.12
    .xlsx,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
    .xltm,application/vnd.ms-excel.template.macroEnabled.12
    .xltx,application/vnd.openxmlformats-officedocument.spreadsheetml.template
    4. Save the C:\WINDOWS\system32\inetsrv\MetaBase.xml file
    5. Start IIS
    6. Perform Collection Rebuild on Content Server

  • How does oracle text differentiate between various document formats?

    how does oracle text differentiate between text documents of various formats. does it read binary headers or a file extension is necessary?
    please comment..

    Oracle uses the inso_filter for document filtering as desribed in the documentation:
    http://download-west.oracle.com/docs/cd/B10501_01/text.920/a96518/afilsupt.htm#625110
    I did a little test (included below) where I copied a .pdf file to a file with a .test extension and it was still able to index it and search it, so apparently it does not need the file extensions and must read the header.
    scott@10gXE> BEGIN
      2   CTX_DDL.CREATE_PREFERENCE ('test_datastore', 'FILE_DATASTORE');
      3   CTX_DDL.SET_ATTRIBUTE ('test_datastore', 'PATH', 'c:\oracle');
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    scott@10gXE> CREATE TABLE test_tab
      2    (id        NUMBER,
      3       docs        VARCHAR2 (2000),
      4       CONSTRAINT test_tab_id_pk PRIMARY KEY (id))
      5  /
    Table created.
    scott@10gXE> INSERT INTO test_tab VALUES (1, 'master~1.pdf')
      2  /
    1 row created.
    scott@10gXE> CREATE INDEX test_tab_idx ON test_tab (docs)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS
      4    ('DATASTORE test_datastore
      5        FILTER    CTXSYS.INSO_FILTER')
      6  /
    Index created.
    scott@10gXE> SELECT id FROM test_tab
      2  WHERE CONTAINS (docs, 'meat') > 0
      3  /
            ID                                                                     
             1                                                                     
    scott@10gXE>
    scott@10gXE> DROP INDEX test_tab_idx
      2  /
    Index dropped.
    scott@10gXE> HOST COPY c:\oracle\master~1.pdf c:\oracle\master.test
    scott@10gXE> INSERT INTO test_tab VALUES (2, 'master.test')
      2  /
    1 row created.
    scott@10gXE> CREATE INDEX test_tab_idx ON test_tab (docs)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS
      4    ('DATASTORE test_datastore
      5        FILTER    CTXSYS.INSO_FILTER')
      6  /
    Index created.
    scott@10gXE> SELECT id FROM test_tab
      2  WHERE CONTAINS (docs, 'meat') > 0
      3  /
            ID                                                                     
             1                                                                     
             2                                                                     
    scott@10gXE>

  • RMAUTH - Trouble uploading Office 2007 Documents

    Good morning everybody!
    I am having some trouble uploading documents into the Roadmap I've just created.
    The documents that are from Office 1997-2003 I have no problems: I upload them as accelerators and save them. But the Office 2007 documents give me this message when i try to upload them: "The current KW settings do not allow file format PPTX to be checked in".
    My Solution Manager is at the latest Service Package and I have the latest version of the SAP GUI. What should I do to solve this question?
    Thanks!

    Mateus,
    That note didn't solve my problem. But I've managed to find a solution.
    I just had to mantain de documentation files I would need in the table IWDOCFRMT
    Thanks!

  • Office 2007 documents integration - SAP Note 1062725

    Hi,
    the SAP note regarding the comtability of Office 2007 - documents is gone. Why is that? Has it become irrelevant? Well, we still have this problem and I don't know what to do...

    Hi Danny,
    The note is currently in status 'Released for Customer' so it should be available at:
    [1062725|http://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=DISPL_TXT&_NNUM=1062725]
    Regards, Lorcan.

  • What are the effects in processing office 2007 document filtering in Oracle

    Does any one know what are the effects or changes in Oracle text (9i - 9.2.0.4.0) while handling the MS office 2007 file formats?
    Does Oracle 10g solves the problem or will there be any patches released for this issue?

    No I am not having any specific problems at the moment. I may be upgrading to 2007 office and i want to make an assessment.

  • Win 7 "Default Programs" does not include MS Office 2007 Programs, the missing Programs are missing ICONs as well

    I installed Windows 7 in an upgrade from Windows XP.  As part of the process MS gave me a URL to download a Office 2007 Pro I could activate with the license key I owned.  I got similar URLs for Visio Professional and Project Professional. 
    Downloaded, installed, activated, started the programs.
    From the beginning some of the icons were missing.  Like the icons for Word, Excel, Access, Outlook, Power Point, Publisher, Visio, and of course Project.  I tried most of the answers in this forum, that didn't sound like guesswork, and none of
    them solved either problem.  There must be at least 65 guesses to fix the icon problem, but none with the missing Default Programs problem.
    The programs related to the missing "Default Programs" still work, they startup when you select the related document.  If I check "Associate a File Type or Protocol with a Specific Program" the missing Office 2007 programs are listed
    there, associated with the designated programs, but are missing icons.
    I make it a habit not to pay a vendor for a product so that I can have the privilege of fixing the vendor's problems.   Google tells me these are well known problems.  The only thing missing is the answer.  I won't ever use MS chat or telephone,
    because all they do is tell me why they can't help and transfer me elsewhere.
    Does anyone have a REAL answer please?

    To restore office icons you could try this method
    http://transitionmarketing.wordpress.com/2013/01/16/restoring-microsoft-office-icons/
    I had the same problem with Office 2010 programs not showing in "Set Your Default Programs". No other "fixes" (including repair) worked. Found this thread:
    http://www.sevenforums.com/microsoft-office/222503-office-2010-not-listed-default-programs.html
    and used it as a guide. When you look at this key
    HKEY_LOCAL_MACHINE\SOFTWARE\RegisteredApplications
    you will see a list of software pointing to another HKEY_LOCAL_MACHINE registry key. For example, my Word program was showing up as "Word.Application.14" and pointing to Software\Clients\Word Processing\Microsoft Word\Capabilities
    (In contrast, PastorMike's fix in the link above advocates making a new entry under HKEY_LOCAL_MACHINE\Software\Microsoft\Office\14.0\Word\Capabilities. However, OneNote did appear in my "Set Your Default Programs" and it - and the other Office programs
    - were listed under ..\Software\Clients\... and not ...\Software\Microsoft\...)
    So at this point I went my own way (although maybe PastorMike's fix would also work).
    The difference between OneNote and the other programs was the existence of values for "ApplicationName"  and "ApplicationDescription" in HKEY_LOCAL_MACHINE\Software\Clients\Word Processing\Microsoft Word\Capabilities. Also, for OneNote
    there was a "FileAssociations" sub-key that was missing from the other programs.
    It is setting the values for ApplicationName and ApplicationDescription which cause the program to show up in the list in the left pane of "Set Your Default Programs". And it is the file associations in the FileAssociations key that allows resetting
    associations en masse when they are snaffled by another program.
    Below is the reg file I added for Word 2010. (i used similar for the other programs) After doing this, Word appeared after reopening "Set Default Programs" - no reboot required
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Word Processing\Microsoft Word\Capabilities]
    "ApplicationDescription"="Create and edit professional-looking documents such as letters, papers, reports, and booklets by using Microsoft Word."
    "ApplicationName"="Microsoft Word 2010"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Word Processing\Microsoft Word\Capabilities\FileAssociations]
    ".doc"="Word.Document.8"
    ".dochtml"="wordhtmlfile"
    ".docm"="Word.DocumentMacroEnabled.12"
    ".docmhtml"="wordmhtmlfile"
    ".docx"="Word.Document.12"
    ".docxml"="wordxmlfile"
    ".dot"="Word.Template.8"
    ".dothtml"="wordhtmltemplate"
    ".dotm"="Word.TemplateMacroEnabled.12"
    ".dotx"="Word.Template.12"
    ".htm"="wordhtmlfile"
    ".html"="wordhtmlfile"
    ".odt"="Word.OpenDocumentText.12"
    ".rtf"="Word.RTF.8"
    ".wbk"="Word.Backup.8"
    ".wiz"="Word.Wizard.8"
    ".wll"="Word.Addin.8"
    By using my ramblings and the link provided above you may be able fix the problem you are having with Office 2007. However, I am unsure of how to find the necessary file associations for Office 2007 except by trawling through your registry for the filetypes
    listed in the link above and the values for them in HKEY_CLASSES_ROOT.

  • Does Oracle 11g Express Edition 11.2.0.0 support the impdp utility ?

    Hi,
    We are trying to import an Oracle dump within a Express Edition, without success. We got the error message: ORA-39213: Metadata processing is not available.
    A) Source data base: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
    B) Target data base: Oracle Database 11g Express Edition Release 11.2.0.2.0
    Searching for solution led us to following forum entries:
    1. http://kmpdba.wordpress.com/2012/05/02/ora-39213-metadata-processing-is-not-available/ Cause: DBMS_METADATA_UTIL package does not successfully ran. Solution: to install (among others) SQL> @$ORACLE_HOME/javavm/install/initjvm.sql
    2. But: there is no @$ORACLE_HOME/javavm/install/initjvm.sql scrript -> http://www.oracle.com/us/products/database/enterprise-edition/comparisons/index.html -> Oracle 11g EX does not support java
    Questions:
    a) Does support Oracle 11g EX the impdp utility at all ?
    b) How would it be possible to import the above mentioned dump from (A) into (B) ?
    Thanks in advance,
    Michel

    Sounds like the messing xsl files issue here: Upgrade from XE10 to XE11
    Try
    execute sys.dbms_metadata_util.load_stylesheets;and see if you get the missing xsl files error.
    The XSL files are not distributed with Oracle 11g XE, but seems to be pre-loaded in the default database created by the installer. If you try to create your own database it wont have the stylesheets loaded and you'll need the xsl files to load them up.
    The quick solution will be to copy the 180 xsl files from an Oracle 11.2.0.2 Enterprise to your Oracle 11g installation ($ORACLE_HOME/rdbms/xml/xsl/) and load the stylesheets.

  • BPC and Office 2007 documents

    Is the following statement true:
    "Documents created / used by BPC should be in the Excel 97-2003 format"  
    I am on the SAP Basis team and new to BPC. We are in the development phase of implmenting BPC 7.5 Patch 6 on Netweaver .
    The desktops are running Office 2007 and Office 2010.
    I resolved an issue last week for a user that was trying to open a template that was saved in an Excel 2007 format and it would not open.  I have another user telling me that his BPC locks up whenever he attempts to open an Excel 2007 "Marco Enabled Workbook" - this is a *.XLSM file. I have two other users telling me that their BPC session "freeze" and need to check with them as to what exactly they are doing when this happens.
    Should I be telling my end users that BPC only supports Excel 97-2003 documents and that they should be saving their BPC related documents in this older format?
    Thanks in advance for your input

    Hi,
    As Sanjeev said ,  that SAP BPC 7.5 supports MS office 2007 and 2010.
    one scenario  is that If you save the file in MS office 2003 and then try to open in MS office 2007 it will give that kind of error.
    Another scenario  is that once they installed BPC client and then they upgraded the MS Office to 2007 or 2010 it will give problem.
    To solve this :
    Re-install MS office first then install BPC Client.
    Hope this will help youu2026
    Thanks,
    Devi

  • Viewing Office 2007 Documents on the iPhone

    I have no problem viewing Office 2003 documents on the iPhone (3G), but can't seem to view Office 2007 docs (docx format).
    Is there a way to view these docs (email attachments and through Air Sharing
    Thanks

    Not sure on your exact need but try this site for app shopping... http://appshopper.com/. Much easier and quicker than the App store. There are a few others you can find with Google.

  • Acrobat 9/Vista - Can only covert Office 2007 documents to PDF once before having to stop acrtoray.e

    I have Acrobat 9 Pro Extended, Office 2007, and Vista Ultimate 64 with UAC off. I can only convert from an Office document (.doc, .xls) to PDF once before getting problems, after which I have to close the acrotray.exe process in Task Manager (or restart Vista) to get it to work again.
    After I successfully convert an Office document, on future attempts it says "Adobe Acrobat is not activated. Cannot create the PDF file."
    If in Word I instead choose to Print to Adobe PDF, it says "Word is preparing to background print the document:" but then hangs and I have to stop the program. An error box then says "Adobe PDF creation cannot continue because Acrobat is not activated."
    After ending the acrotray.exe process or restarting the computer it works again, but like before only one time. Opening Acrobat and choosing Repair Acrobat Installation doesn't fix the problem unless I restart, which would fix it anyway.
    Is there a permanent solution to this issue?

    I Also have the same Problem
              When u try to convert word/XLS/TXT to PDF i get this error and when i kill the acrotray process from taskmanager i am able to generate the PDF.
    Can anyone of u please let me know what is the problem about and how to solve it.
    Error Message:
    Error Code:10012
    Error Message: ALC-PDG-010-012-PDFMaker reported an error while printing the document.
    [5/27/09 12:36:56:665 CDT] 000000f6 SibMessage    W   [:] CWSIV0775W: The creation of a connection for destination adobe_PEDCommandQueue on bus IDP_JMS_Bus for endpoint activation [com.ibm.ws.sib.ra.inbound.impl.SibRaStaticDestinationEndpointActivation@5e9a5e9a <active=true> <connections={}> <messageEndpointFactory=com.ibm.ejs.container.MessageEndpointFactoryImpl@f96523e1> <endpointConfiguration=[com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl$JmsJcaEndp ointConfigurationImpl@593109850 <JmsJcaActivationSpecImpl.this=[com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl@74 8432540 <userName=null> <password=null> <xaRecoveryAlias=null> <destination=queue://adobe_PEDCommandQueue?deliveryMode=Persistent&busName=IDP_JMS_Bus> <durableSubscriptionHome=null> <destinationType=javax.jms.Queue> <messageSelector=null> <acknowledgeMode=Auto-acknowledge> <subscriptionDurability=NonDurable> <shareDurableSubscriptions=InCluster> <clientId=null> <subscriptionName=null> <maxBatchSize=1> <maxConcurrency=10> <busName=IDP_JMS_Bus> <shareDataSourceWithCMP=false> <targetTransportChain=null> <readAhead=Default> <target=null> <targetType=BusMember> <targetSignificance=Preferred>]>]> <endpointInvoker=com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl@5e8c5e8c> <workManager=com.ibm.ejs.j2c.work.WorkManagerImpl@61246124> <endpointMethodTransactional=false> <remoteConnection=null> <remoteDestination=true> <timer=java.util.Timer@5f045f04>] failed with exception com.ibm.websphere.sib.exception.SIResourceException: CWSIT0088E: There are currently no messaging engines in bus IDP_JMS_Bus running. Additional failure information: CWSIT0103E: No messaging engine was found that matched the following parameters: bus=IDP_JMS_Bus, targetGroup=null, targetType=BusMember, targetSignificance=Preferred, transportChain=InboundBasicMessaging, proximity=Bus..
    [5/27/09 12:36:58:290 CDT] 000000df Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#fbd89dcd0f4e9e5228a3fabc6d917ced"
    [5/27/09 12:36:58:290 CDT] 000000df Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:36:58:290 CDT] 000000df Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:36:58:352 CDT] 000000df Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:36:58:509 CDT] 000000df Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:36:58:571 CDT] 000000df Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:36:58:618 CDT] 000000df Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:36:58:665 CDT] 000000df Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#fbd89dcd0f4e9e5228a3fabc6d917ced"
    [5/27/09 12:37:02:680 CDT] 000000f7 SibMessage    W   [:] CWSIV0775W: The creation of a connection for destination adobe_PECommandQueue on bus IDP_JMS_Bus for endpoint activation [com.ibm.ws.sib.ra.inbound.impl.SibRaStaticDestinationEndpointActivation@7db87db8 <active=true> <connections={}> <messageEndpointFactory=com.ibm.ejs.container.MessageEndpointFactoryImpl@9496c24e> <endpointConfiguration=[com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl$JmsJcaEndp ointConfigurationImpl@1839361442 <JmsJcaActivationSpecImpl.this=[com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl@19 78299882 <userName=null> <password=null> <xaRecoveryAlias=null> <destination=queue://adobe_PECommandQueue?deliveryMode=Persistent&busName=IDP_JMS_Bus> <durableSubscriptionHome=null> <destinationType=javax.jms.Queue> <messageSelector=null> <acknowledgeMode=Auto-acknowledge> <subscriptionDurability=NonDurable> <shareDurableSubscriptions=InCluster> <clientId=null> <subscriptionName=null> <maxBatchSize=1> <maxConcurrency=10> <busName=IDP_JMS_Bus> <shareDataSourceWithCMP=false> <targetTransportChain=null> <readAhead=Default> <target=null> <targetType=BusMember> <targetSignificance=Preferred>]>]> <endpointInvoker=com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl@44c444c4> <workManager=com.ibm.ejs.j2c.work.WorkManagerImpl@61246124> <endpointMethodTransactional=true> <remoteConnection=null> <remoteDestination=true> <timer=java.util.Timer@15161516>] failed with exception com.ibm.websphere.sib.exception.SIResourceException: CWSIT0088E: There are currently no messaging engines in bus IDP_JMS_Bus running. Additional failure information: CWSIT0103E: No messaging engine was found that matched the following parameters: bus=IDP_JMS_Bus, targetGroup=null, targetType=BusMember, targetSignificance=Preferred, transportChain=InboundBasicMessaging, proximity=Bus..
    [5/27/09 12:37:05:836 CDT] 000000de Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#fbd89dcd0f4e9e5228a3fabc6d917ced"
    [5/27/09 12:37:06:117 CDT] 000000de Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:37:08:664 CDT] 000000f8 SibMessage    W   [:] CWSIV0775W: The creation of a connection for destination adobe_JobManagerQueue on bus IDP_JMS_Bus for endpoint activation [com.ibm.ws.sib.ra.inbound.impl.SibRaStaticDestinationEndpointActivation@72607260 <active=true> <connections={}> <messageEndpointFactory=com.ibm.ejs.container.MessageEndpointFactoryImpl@825da81a> <endpointConfiguration=[com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl$JmsJcaEndp ointConfigurationImpl@1914991140 <JmsJcaActivationSpecImpl.this=[com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl@10 90535680 <userName=null> <password=null> <xaRecoveryAlias=null> <destination=queue://adobe_JobManagerQueue?deliveryMode=Persistent&busName=IDP_JMS_Bus> <durableSubscriptionHome=null> <destinationType=javax.jms.Queue> <messageSelector=null> <acknowledgeMode=Auto-acknowledge> <subscriptionDurability=NonDurable> <shareDurableSubscriptions=InCluster> <clientId=null> <subscriptionName=null> <maxBatchSize=1> <maxConcurrency=10> <busName=IDP_JMS_Bus> <shareDataSourceWithCMP=false> <targetTransportChain=null> <readAhead=Default> <target=null> <targetType=BusMember> <targetSignificance=Preferred>]>]> <endpointInvoker=com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl@72527252> <workManager=com.ibm.ejs.j2c.work.WorkManagerImpl@61246124> <endpointMethodTransactional=false> <remoteConnection=null> <remoteDestination=true> <timer=java.util.Timer@72ca72ca>] failed with exception com.ibm.websphere.sib.exception.SIResourceException: CWSIT0088E: There are currently no messaging engines in bus IDP_JMS_Bus running. Additional failure information: CWSIT0103E: No messaging engine was found that matched the following parameters: bus=IDP_JMS_Bus, targetGroup=null, targetType=BusMember, targetSignificance=Preferred, transportChain=InboundBasicMessaging, proximity=Bus..
    [5/27/09 12:37:08:680 CDT] 000000de Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:37:08:742 CDT] 000000de Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:37:08:805 CDT] 000000de Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:37:08:883 CDT] 000000de Reference     I org.apache.xml.security.signature.Reference verify Verification successful for URI "#d72defc93c0f2a3e50d48504a433e899"
    [5/27/09 12:37:08:883 CDT] 000000de GeneratePDFIm A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-000-
    Job ID for the submitted createPDF job =ADITYA MARLA.doc3c729d-9ec084-189d03-d650cc-0d494f-c2c7cb
    [5/27/09 12:37:08:914 CDT] 000000de BMCCaller     A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-024-ADITYA MARLA.doc: Time Job Submitted: 5/27/09 12:37 PM
    [5/27/09 12:37:08:914 CDT] 000000de BMCCaller     A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-021-ADITYA MARLA.doc: PDF Settings Used: pdfg Standard 54138
    [5/27/09 12:37:08:914 CDT] 000000de BMCCaller     A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-022-ADITYA MARLA.doc: Security Settings Used: No Security
    [5/27/09 12:37:08:914 CDT] 000000de BMCCaller     A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-023-ADITYA MARLA.doc: FileType Settings Used: Standard
    [5/27/09 12:37:08:914 CDT] 000000de BMCCaller     A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-017-ADITYA MARLA.doc: Job Submitted by User: administrator
    [5/27/09 12:37:08:945 CDT] 00000111 WordToPDFConv A com.adobe.service.ProcessResource$ManagerImpl logJdk ALC-PDG-001-001-Begin processing job : C:\Documents and Settings\wasadmin\Local Settings\Temp\pdfg-wasadmin\20\1203-c513d2-9bf144-d0a9f2-f75636-094cdc\native-in.doc
    [5/27/09 12:37:12:789 CDT] 00000111 WordToPDFConv A com.adobe.service.ProcessResource$ManagerImpl logJdk ALC-PDG-001-000-Calling function to clean registrys Resiliency entry
    [5/27/09 12:37:12:804 CDT] 000000e5 WordToPDFConv A com.adobe.service.ProcessResource$ManagerImpl logJdk ALC-PDG-001-000-The system cannot find the file specified.
    [5/27/09 12:37:12:836 CDT] 000000de BMCCaller     A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-028-ADITYA MARLA.doc: Job Completion Status: Failed
    [5/27/09 12:37:12:836 CDT] 000000de BMCCaller     A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-025-ADITYA MARLA.doc: Time Job Completed: 5/27/09 12:37 PM
    [5/27/09 12:37:12:836 CDT] 000000de BMCCaller     A com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-026-ADITYA MARLA.doc: Time of Job Execution: 3,922 ms
    [5/27/09 12:37:12:836 CDT] 000000de GeneratePDFIm E com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-000-ALC-PDG-010-012-PDFMaker reported an error while printing the document.
    [5/27/09 12:37:12:836 CDT] 000000de CreatePDFAct  E com.adobe.pdfg.logging.PDFGLogger log ALC-PDG-001-000-Invocation error.
    [5/27/09 12:37:12:836 CDT] 000000de CreatePDFAct  E com.adobe.pdfg.logging.PDFGLogger log TRAS0014I: The following exception was logged ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:152)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionBMTAdapterBean.doBMT(EjbTran sactionBMTAdapterBean.java:197)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EJSLocalStatelessEjbTransactionBMTAdapter_ 3af08fdf.doBMT(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:95)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:132)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:91)
    at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:21 5)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:57)
    at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    at com.adobe.aes.web.create.CreatePDFAct.createPDF(CreatePDFAct.java:383)
    at com.adobe.aes.web.create.CreatePDFAct.createPDF2(CreatePDFAct.java:402)
    at com.adobe.aes.web.create.CreatePDFAct.execute(CreatePDFAct.java:174)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at com.adobe.aes.web.AesActionServlet.service(AesActionServlet.java:63)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1096)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1037)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
    at com.adobe.idp.um.auth.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:154)
    at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 190)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
    at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:832)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:679)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:566)
    at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
    at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:90)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:748)
    at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1466)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:119)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:458)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink .java:387)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:267)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitia lReadCallback.java:113)
    at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
    at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
    at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
    at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
    at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1473)
    Caused by: ALC-PDG-10012-000: com.adobe.livecycle.generatepdf.client.ConversionException: ALC-PDG-010-012-PDFMaker reported an error while printing the document.
    at com.adobe.pdfg.BMCCaller.checkResult(BMCCaller.java:358)
    at com.adobe.pdfg.Native2PdfCaller.callNativeBMC(Native2PdfCaller.java:788)
    at com.adobe.pdfg.Native2PdfCaller.createPDF(Native2PdfCaller.java:298)
    at com.adobe.pdfg.GeneratePDFImpl.createPDFCommon(GeneratePDFImpl.java:342)
    at com.adobe.pdfg.GeneratePDFImpl.createPDF(GeneratePDFImpl.java:172)
    at sun.reflect.GeneratedMethodAccessor294.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:618)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    ... 60 more
    [5/27/09 12:37:14:695 CDT] 000000f9 SibMessage    W   [:] CWSIV0775W: The creation of a connection for destination Default.Topic.Space on bus IDP_JMS_Bus for endpoint activation [com.ibm.ws.sib.ra.inbound.impl.SibRaStaticDestinationEndpointActivation@7cf87cf8 <active=true> <connections={}> <messageEndpointFactory=com.ibm.ejs.container.MessageEndpointFactoryImpl@7aff2ec6> <endpointConfiguration=[com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl$JmsJcaEndp ointConfigurationImpl@2092727484 <JmsJcaActivationSpecImpl.this=[com.ibm.ws.sib.api.jmsra.impl.JmsJcaActivationSpecImpl@13 28959286 <userName=null> <password=null> <xaRecoveryAlias=null> <destination=topic://adobe_TaskEventTopic?busName=IDP_JMS_Bus> <durableSubscriptionHome=null> <destinationType=javax.jms.Topic> <messageSelector=null> <acknowledgeMode=Auto-acknowledge> <subscriptionDurability=NonDurable> <shareDurableSubscriptions=InCluster> <clientId=null> <subscriptionName=null> <maxBatchSize=1> <maxConcurrency=10> <busName=IDP_JMS_Bus> <shareDataSourceWithCMP=false> <targetTransportChain=null> <readAhead=Default> <target=null> <targetType=BusMember> <targetSignificance=Preferred>]>]> <endpointInvoker=com.ibm.ws.sib.api.jmsra.impl.JmsJcaEndpointInvokerImpl@7cea7cea> <workManager=com.ibm.ejs.j2c.work.WorkManagerImpl@61246124> <endpointMethodTransactional=false> <remoteConnection=null> <remoteDestination=true> <timer=java.util.Timer@7d627d62>] failed with exception com.ibm.websphere.sib.exception.SIResourceException: CWSIT0088E: There are currently no messaging engines in bus IDP_JMS_Bus running. Additional failure information: CWSIT0103E: No messaging engine was found that matched the following parameters: bus=IDP_JMS_Bus, targetGroup=null, targetType=BusMember, targetSignificance=Preferred, transportChain=InboundBasicMessaging, proximity=Bus..
    Thanks and Regards
    Aditya Marla

  • File association error with office 2007 documents

    I recently upgraded from office 2003 to office 2007 and now Bridge CS3 will not open my office documents with office 2007. I looked in the file associations preferences and did not see doc, docx, xls, xlsx, etc. in there at all. I have also looked at re-installing just Bridge CS3 but there is not an option for that when I put in the installation discs.
    Please help...

    This is not a Bridge problem! You would need to get it working from explorer first, you need to setup the file associations! after you have done that you should be able to open your documents from Explorer and Bridge.

  • Office 2007 Documents Keep asking for credentials

    Hi All Gurus - Is there any issue with SP 2013 and Office 2007? We are trying to access office documents using IE 11, it prompts for credentials first time after compture reboot. Once given credentials it works fine whole day. but users who reboot there
    computer have to provide credentials next day. It's not with the PDF documents. Also, we have set proper Alternate Access Mapping and FQDN for the site. Also, the intranet site has been added to the trusted site. Also, tried with the Local Intranet Zone setting
    "Automatic logon with current username and password".  
    Users with the IE 10/11 and Office 2010 have no issues.
    Could anybody please guide me on this?
    Regards,
    Khushi

    try these links:
    http://blogs.technet.com/b/office_integration__sharepoint/archive/2014/02/24/users-are-prompted-for-username-and-password-when-opening-an-office-file-from-a-web-server.aspx
    http://www.mysharepointadventures.com/2012/02/sharepoint-keeps-prompting-for-credentials/
    http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/MS-SharePoint/Q_27955868.html
    http://stackoverflow.com/questions/375390/office-documents-prompt-for-login-in-anonymous-sharepoint-site
    also you can try to disableloopbackcheck as below link:
    http://blogs.technet.com/b/sharepoint_foxhole/archive/2010/06/21/disableloopbackcheck-lets-do-it-the-right-way.aspx
    http://www.jeremytaylor.net/2010/05/24/sharepoint-disable-loopback-check-disableloopbackcheck-dword-in-registry/
    also try tocheck if compatibility issues is present between sharepoint 2013 and office2007 docs.
    Please mark as answer if you find it useful else vote for it if it is close to answer..happy sharepointing

  • BI Publisher desktop does not work on Office 2007 SP3

    Hello for everyone.
    I have installed BI Publisher Desktop 10.1.3.4.1 in a machine that has Microsoft Office 2007 SP3 installed, despite the add-in appears and after enabled all macros (Word properties), when I try to use the Add-in the following message appears: "The macro cannot be found or has been disabled because of your macro security settings".
    I am glad if you can guide me to fix this issue.
    Thanks,

    1>Close all microsoft office suite products.
    2>Find MSComctlLib.exd inside "C:\Documents and Settings\<YOUR USER NAME>\Application Data\Microsoft\forms
    3>rename to MSComctlLib.exd_bak
    4> Done :)

Maybe you are looking for

  • Xf86-video-intel problems (resolution, DRI) [SOLVED]

    I updated to day the xf86-video-i810 to the new *-intel driver and I encountered 2 problems. I have an old 845G card and an old CRT monitor that I use at 1024x786. Problem 1: Incorrect resolution The new native modesettings automatically reads the DC

  • SECURITY ENVELOPE with SUBMIT BUTTON

    The idea is: someone downloads a pdf form, fills it out and then after filling it out, click a button to email it to the one recipient. The information the person put in is confidential personal information. I have to assume the sender is limited in

  • Integrate Biller Direct 6.02 with Portal 7.0

    Hello Gurus, I am using Biller Direct 6.02 and my Portal is EP 7.0. What is the best way to integrate Biller Direct from Portal. Regards Deb [Points guranteed for helpful answers]

  • Problem in running Text Layout Framework online demo

    Hi          I am running textlayout_example but while compile itself showing error 1.1061: Call to a possibly undefined method selectRange through a reference with static type flashx.textLayout.edit:ISelectionManager 2.1120: Access of undefined prope

  • AS3 arrays and conditionals not working

    I'm working with CS4 and AS3 using timeline coding. I have three sets of movie clips in three different arrays. The idea is to have topArray and downArray movies make zeroArray movies visible. For instance, if topArray[0] and downArray[0] are clicked