ECM and BPM integration

Hi,
Where can I find a tutorial or design pattern how to integrate ECM (IPM) with BPM ? I mean documents management in BPM process context (workflow).
Kuba

BPM integration with UCM

Similar Messages

  • What's up with Webservices and BPM integration?

    According to http://e-docs.bea.com/wli/docs70/design/intarch.htm, table
    3-1, webservices are a key component of the Integration architecture,
    which:
    "Provides sample code to support WebServices integration using
    WebServices technologies
    such as UDDI, WebServices Description Language (WSDL), and Simple Object
    Access
    Protocol (SOAP). WebLogic Integration provides the ability to invoke a
    WebService
    from a BPM workflow, enable a BPM workflow as a WebService, and to
    enable the
    Application View as a WebService. For an introduction to WebLogic
    WebServices,
    see the WebServices and XML Tech Track in the BEA dev2dev Online at the
    following
    URL:
    http://dev2dev.bea.com/index.jsp"
    The only thing which comes close to this description is the BPM Plugin
    for webservices, which is alpha code for WLI 2.1. To deploy this on 7, I
    have only seen a message here describing loosely what to do.
    So is this how we are expected to use webservices together with
    Integration? With alpha code that requires tweaking to work with the
    current version? Or am I missing something vital? The quote from the
    docs suggest "sample code", however the webservices plugin is not
    provided in source, so I don't see how it qualifies as sample code?
    Somehow I also don't quite understand how "sample code" can be construed
    as a "key component".
    So what's up with webservices and Integration?
    -Lasse
    (only speaking for myself in news!)

    Your comment about the lacking of web services in WLI is correct
    and a fundamental issue I have signalled to BEA already many
    months ago. I even followed the BPM course to make sure I did
    not miss an important point. The BPM course did not deal with
    webservices because it is not available. But the fundamental remark goes further
    because webservices also have a dynamic
    interface WSCI to behave within a choreography of webservices
    within a business process. BPM is still mainly workflow based
    and intracompany. This is not what is expected as business
    processes which are collaborative and a new paradigm alternative for applications
    conform BPML-WSCI or BPEL4WS-ws transaction.
    I still wait from BEA a confirmation that webservices and collaborative business
    processes according to (at least) one of
    the above standards will be included within the next version of weblogic enterprise
    platform due end of March 2002.
    Kind regards,
    Paul Meurisse
    Email : [email protected]

  • OSM and BPM integration

    Hi all,
    We're trying to integrate OSM with BPM through web services but we are having some issues with the message itself.
    On the GetOrderBySpecification we have the Data variable as type "any" and we are sending a string through bpm.
    concat("<_root>","<Customer_Sites>","<numerositio>",bpmn:getDataObject('SFactibilidad')/ns:numerositio,"</numerositio>","<nombresitio>",bpmn:getDataObject('SFactibilidad')/ns:nombresitio,"</nombresitio>","<estado>",bpmn:getDataObject('SFactibilidad')/ns:estado,"</estado>","<ciudad>",bpmn:getDataObject('SFactibilidad')/ns:ciudad,"</ciudad>","<delegacion>",bpmn:getDataObject('SFactibilidad')/ns:delegacion,"</delegacion>","<direccion>",bpmn:getDataObject('SFactibilidad')/ns:direccion,"</direccion>","<Service_Site>","<producto>",bpmn:getDataObject('SFactibilidad')/ns:producto,"</producto>","<paquete>",bpmn:getDataObject('SFactibilidad')/ns:paquete,"</paquete>","<modalidad>",bpmn:getDataObject('SFactibilidad')/ns:modalidad,"</modalidad>","<accesoprincipal>",bpmn:getDataObject('SFactibilidad')/ns:accesoprincipal,"</accesoprincipal>","<otroproducto>",bpmn:getDataObject('SFactibilidad')/ns:otroproducto,"</otroproducto>","</Service_Site>","</Customer_Sites>","</_root>")
    But we get some errors.
    Any idea of how to send this message to OSM via Web Services?
    Regards,

    Hi all,
    Yes, we're using the WSDL definitions, we also constructed the message but there is still a error.
    This is the XML we created with BPM:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://www.w3.org/2005/08/addressing">
    <env:Header>
    <wsse:Security env:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsse:UsernameToken xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" wsu:Id="UsernameToken-dWh4ibGqa7Tiaxn6FnXW0g22" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsse:Username>admin</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">password</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </env:Header>
    <env:Body>
    <CreateOrderBySpecification xmlns="http://xmlns.oracle.com/communications/ordermanagement">
    <Specification>
    <Cartridge>
    <Name>PoC_Axtel_BPM</Name>
    <Version/>
    </Cartridge>
    <Type>PoC_Axet_BPMOrder</Type>
    <Source>PoC_Axet_BPMOrder</Source>
    <View/>
    </Specification>
    <Reference>Test</Reference>
    <Priority>5</Priority>
    <AutoAddMandatoryData>true</AutoAddMandatoryData>
    <StartOrder>true</StartOrder>
    <Data>     
    <_root xmlns="">          
    <Customer_Sites>               
    <numerositio>100</numerositio>               
    <nombresitio>100</nombresitio>               
    <estado>100</estado>               
    <ciudad>100</ciudad>               
    <delegacion>100</delegacion>               
    <direccion>100</direccion>               
    <Service_Site>                    
    <producto>100</producto>                    
    <paquete>100</paquete>                    
    <modalidad>100</modalidad>                    
    <accesoprincipal>100</accesoprincipal>                    
    <otroproducto>100</otroproducto>               
    </Service_Site>          
    </Customer_Sites>     
    </_root>
    </Data>
    <Remark/>
    </CreateOrderBySpecification>
    </env:Body></env:Envelope>
    It is almost the same to the one we´re using with SOAPUI, the only difference is the XML qualification being done like <Data> instead of <ord:Data>, with SOAPUI the qualitifcation is done in the <envelope> and our message does it on <createOrderBySpecification>
    This is the error we get using the above message:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <env:Fault xmlns:ord="http://xmlns.oracle.com/communications/ordermanagement">
    <faultcode>ord:client</faultcode>
    <faultstring>Request failed validation</faultstring>
    <faultactor>unknown</faultactor>
    <detail>
    <ord:InvalidRequest>
    <ord:Message>
    <ord:Severity>ERROR</ord:Severity>
    <ord:Line>9</ord:Line>
    <ord:Description>string value '' does not match pattern for EntityNameType in namespace http://xmlns.oracle.com/communications/ordermanagement</ord:Description>
    </ord:Message>
    <ord:RequestBody>
    <CreateOrderBySpecification xmlns="http://xmlns.oracle.com/communications/ordermanagement">
    <Specification>
    <Cartridge>
    <Name>PoC_Axtel_BPM</Name>
    <Version/>
    </Cartridge>
    <Type>PoC_Axtel_BPMOrder</Type>
    <Source>PoC_Axtel_BPMOrder</Source>
    <View/>
    </Specification>
    <Reference>Test</Reference>
    <Priority>5</Priority>
    <AutoAddMandatoryData>true</AutoAddMandatoryData>
    <StartOrder>true</StartOrder>
    <Data>
    <_root>
    <Customer_Sites>
    <numerositio>1</numerositio>
    <nombresitio>test8.6</nombresitio>
    <estado>test8.6</estado>
    <ciudad>test8.6</ciudad>
    <delegacion>test8.6</delegacion>
    <direccion>test8.6</direccion>
    <Service_Site>
    <producto>test8.6</producto>
    <paquete>test8.6</paquete>
    <modalidad>test8.6</modalidad>
    <accesoprincipal>test8.6</accesoprincipal>
    <otroproducto>test8.6</otroproducto>
    </Service_Site>
    </Customer_Sites>
    </_root>
    </Data>
    <Remark/>
    </CreateOrderBySpecification>
    </ord:RequestBody>
    </ord:InvalidRequest>
    </detail>
    </env:Fault>
    </env:Body>
    </env:Envelope>
    Any idea?
    Regards!

  • Integration Visual Composer and BPM (netwearver CE7.11)

    Hi Guys.
    System: netwearver CE7.11
    We have a problem with the process of integration between Visual Composer and BPM. We have found a message  |https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2011e628-b317-2c10-9fa7-952155e10705] explaining the step by step to join my visual compeser with BPM.
    The steps from guide(the guide includes a video) already have been implemented and the final result looks fine, but it is in this moment, when we want to create and deploy the BPM process with the result from guide(Web dynpro wrapp with the visual composer), when the error happens, the BPM process is created OK but not properly deployed.
    Could anyone help us?, thank you in advanced.
    The message error is:
    Status ERROR
    Plugin : com.sap.ide.tools.services
    code=0
    children=[
    Status ERROR
    Plugin : com.sap.ide.tools.services
    code=0
    Deploy Exception.
    com.sap.engine.services.dc.api.deploy.DeployException: [ERROR CODE DPL.DCAPI.1027] DependenciesResolvingException.
    Reason: ASJ.dpl_dc.006505 [ERROR CODE DPL.DC.3033] An unresolved dependencies error occurred while sorting the deployment batch items regarding the dependencies.; nested exception is:
         com.sap.engine.services.dc.cm.deploy.sdu_deps_resolver.UnresolvedDependenciesException: [ERROR CODE DPL.DC.3437] Unresolved dependencies found for the following deployment items: [
    1. Component: name: [firsttask], vendor: [demo.sap.com], location: [localDevelopment], version: [20090617122840], software type: [J2EE], csn component: [], dependencies: [[name: 'tcblloggingapi', vendor: 'sap.com', name: 'tcddicruntimefacade', vendor: 'sap.com', name: 'tcaiibaseofflinefacade', vendor: 'sap.com', name: 'tccmi', vendor: 'sap.com', name: 'tcvcglxbridgecomp', vendor: 'test.sap.com', name: 'tcblexceptionlib', vendor: 'sap.com', name: 'tcbljrfcapi', vendor: 'sap.com', name: 'tcwdapi', vendor: 'sap.com']]
    Unresolved dependency:
    name: 'tcvcglx~bridgecomp', vendor: 'test.sap.com'     ( not found in the admitted batch items and the repository)
    Edited by: iaspano on Jun 18, 2009 5:31 PM

    Hi,
    Is 'tcvcglx~bridgecomp' already deployed or part of the deployment? There is a deploy time dependency specified. Thus without this DC the other DC won't deploy.
    Cheers
    Martin

  • Diff between BPM and weblogic integration

    hi,
    can anybody tell me what is the difference between aqualogic BPM and weblogic integration.
    both do business process modelling.
    and can anybody tell me when to use one . a usecase example would be helpful.
    thanks

    hi,
    can anybody tell me what is the difference between aqualogic BPM and weblogic integration.
    both do business process modelling.
    and can anybody tell me when to use one . a usecase example would be helpful.
    thanks

  • BPM Integration Process that correlates 2 messages.

    I have an BPM Integration Process defined that collects Deliveries for an Order number and when an Invoice arrives for the same Order number it merges the messages to produce another file that is for a 3rd party.
    I correctly receive in the Delivery and the Invoice u2013 I can see them in SXMB_MONI with a checkered flag and they are directed to my BPM.  I can see this also in SXMB_MONI_BPE.  I can also see the correlation correctly found in both messages.  No error is reported by either SXBM.. transaction.
    However it does nothing except receive the files u2013 I am expecting a transformation and then the send step to execute.
    Start >  CollectIDOCBlock  > Collect Fork
    Fork1
    Infinite Loop for Receive Delivery (Start process) and Collect in Container. It uses and activates Correlation OrderNum
    Fork2
    Receive Invoice uses Correlation OrderNum (it does not activate the correlation)
    At the end of the Fork (when Delivery collected and an Invoice is received)
    It will then do the Transformation and Send Step.
    <End
    I have tried various combinations of the correlations and which receive step starts the process.  Any ideas ?

    Yes that did work.  Now does somebody know what exactly the FORK parameter number of branches does ?
    The SAPHelp is here
    http://help.sap.com/saphelp_nw04/helpdata/en/08/16163ff8519a06e10000000a114084/frameset.htm
    +You can specify the required number of branches and then define whether the process must run through all branches, or just a particular number of branches+
    But it does not explain why you need to have 1 as necessary branches rather than 2.  There are 2 branches in the FORK - so why does having 1 as the parameter work and not 2.
    In this SAPHelp for Message-Dependent Loop
    http://help.sap.com/saphelp_nw04/helpdata/en/08/16163ff8519a06e10000000a114084/frameset.htm
    it indicates to me that the parameter should be 2.
    BUT the SAP pattern (BpmPatternCollectMessage) I have used as a base for mine has this as 1 and not 2.
    Why is 1 the correct value and not 2 ??

  • Question on BPM Integration Process

    Hello Experts,
    I am following this BPM article which is very similar to what I want to do.
    We are using PI 7.1 without EP1.
    I have an XML to IDoc scenario where my XML's external definition resides in a seperate SCV (SCV1) and my imported IDoc resides in a seperate SCV (SCV2). We did this to follow the Sender-Mapper-Receiver model. We have a different SCV for Mapping which holds MM and OM (SCV3). Now, I have my Abstract Service Interfaces for external definition in SCV1 and abstract interface for IDoc in SCV2. And, Integration Process in SCV1 (no good reason). But, now I am not able to access SCV2 abstract interfaces (IDoc abs) in my Integration Process since it sits in SCV1. I am thinking if I have to crate my external definitions, idoc, abstract service interfaces, MM, OM and Ingtration Process in one SCV instead of having them in three different SCVs. I was trying to follow sender-mapper-reciever model but seems like for BPM you need to have all your stuff in one SCV. Please help if you know how to resolve this issue wiithout getting rid of sender-mapper-receiver concept.
    Thank you in advance for your help.
    - Mayur

    Thanks Jose. I think creating dependencies is a away to go. I also found this this where Stefan suggested same thing.
    So, now Sender (SCV1) and Receiver (SCV3) have been added under Mapper (SCV2)'s dependencies list and I will have my BPM Integration Process in the SCV2 which will give me access to both sender and receiver abstract service interfaces.
    Re: Software Component Dependencies PI 7.1
    Thanks,
    Mayur

  • Rfc Jco communication channel error in BPM integration process

    Hi,
           when we are processing the records some records are processed succussfully some records does not in integration process view. when we restart the workflow we can able to process the error messages succussfully.
    but here not understanding how to reprocesse automatically error messages in the BPM integration process level.
    thanks and regads,
    krushi.

    Hi
    re-submission of messages after corrections that were failed
    Reconciliation of Messages in BPM
    Reconciliation of Messages in BPM Contd. - Restart Workflow

  • BPM integration with BRM

    Hi All,
    I am looking for a blog for complete scenario which includes business rules used in BPM,that is ,complete STEP BY STEP blog for BPM integration with BRM.Searched a lot but finding either BPM or BRM or BRM already created without mentioning steps and imported in BPM process.
    Can you help me with a complete blog for BPM integration with BRM STEP BY STEP blog?
    Thanks in advance

    Hi,
    Please check if the below articles are useful
    http://scn.sap.com/thread/3446620
    http://scn.sap.com/docs/DOC-47066
    http://scn.sap.com/docs/DOC-4588
    Regards,
    Sriram

  • BPM integration with BRM step by step

    Hi All,
    I am looking for a blog for complete scenario which includes business rules used in BPM,that is ,complete STEP BY STEP blog for BPM integration with BRM.Searched a lot but finding either BPM or BRM or BRM already created without mentioning steps and imported in BPM process.
    Can you help me with a complete blog for BPM integration with BRM STEP BY STEP blog?
    Thanks in advance

    Hi,
    Please check if the below articles are useful
    http://scn.sap.com/thread/3446620
    http://scn.sap.com/docs/DOC-47066
    http://scn.sap.com/docs/DOC-4588
    Regards,
    Sriram

  • Hi Regarding How to work on SAP Net Weaver CE 7.1  and BPM

    Hi Friends
    I need Some help from u r side
       Currently i have got work on SAP Net Weaver CE 7.1  and BPM (Business Process Management)
       How to Work on these SAP Net Weaver CE 7.1  and BPM (Business Process Management)
      If u have any Documents .can u give that links
      How Configure SAP Net Weaver CE 7.1 with NWDI can u tell me this think also
    Regards
    Vijay

    Hi Friend,
    You can follow following pointers hope it will help.
    [SAP NetWeaver MDM-7.1 Key Mapping interoperability with SAP NetWeaver Process Integration-7.1 using Web Services u2013 Webinar Presentation|FEATURED EVENTS;
    [Best Practices Workflow for Master Data Managemen|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/50f1c01b-972d-2c10-3d9d-90887014fafb]
    [Best Practices on Workflow Tools Usage for Master Date Management (MDM) Scenarios - Webinar Presentation|http://www.sdn.sap.com/irj/sdn/index?rid=/library/uuid/c0fee6f1-8795-2c10-8ca9-e4883bae5e81]
    Regards
    Jeetendra

  • What products to choose for a SOA and  BPM Scenario?

    Hi, i am beggining in this interesting world of SOA and BPM. I am responsible for evaluating to implement a business testing case of SOA and BPM that involves these products: Oracle BPM, Oracle Service Bus, Oracle BPEL, Oracle Weblogic Server.
    So, i decided to install and configured in the same order, the following products (some of them are from the Fussion Middle Ware 11g):
    1- Oracle Database XE
    2- Repository Creation Utility (11.1.1.2.0) to create schemas in database for SOA and BAM
    3- WebLogic Server (10.3.2)
    4- SOA Suite (11.1.1.2.0), that includes BPEL
    5- JDeveloper and Application Development Framework (11.1.1.2.0)
    6- Soa-jdev-extension
    7-Oracle BPM Suite
    Next, i tried to follow the running y building tutorial for Fusion Order Demo, according to "e10275-Running y Building an Application with SOA Suite" guide, but i couldn´t deploy the demo because of Ant Module Issue.
    Also, i've noticed, that the service bus included in SOA Suite 11g is not the Oracle Service Bus but Enterprise Service Bus called mediator, and according to documentation in Soa Suite 11g, Oracle Service Bus is available as a separate download with an Oracle SOA Suite license. But revising Oracle Service Bus downloads, there is an only one: Oracle Service Bus 10gR3 (10.3.1.0) hat works with Weblogic server 10.3.
    Besides that, there is no integration between Oracle BPM Suite and SOA Suite.
    And after all, i have the following questions:
    1. Is it correct the products choosen (version 11g) to implement Business SOA/BPM evaluation case?
    In case of answer to question 1 be affirmative:
    2. How can i integrate Oracle Service Bus to SOA Suite 11g?
    3. How can i integrate Oracle BPM Suite to SOA SUite 11g?
    In case of answer to question 1 be negative:
    4. What products to install and configure to fulfill the business test case products requeriments: Oracle BPM, Oracle Service Bus, Oracle BPEL, Oracle Weblogic Server?
    I would appreciated your help.
    Roycito

    Hi Roycito,
    And after all, i have the following questions:
    1. Is it correct the products choosen (version 11g) to implement Business SOA/BPM evaluation case?Yes. From technical perspecive it is possible and you have chosen the right combination, however it may differ as per your business requirements and use case.
    In case of answer to question 1 be affirmative:
    2. How can i integrate Oracle Service Bus to SOA Suite 11g?Current version of OSB (10.3.1) does not support 11g resource adapters so direct integration may not be possible but through a transport protocol such as HTTP(S), JMS, File and FTP, you can integrate OSB indirectly with SOA suite 11g. Please refer -
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10223/04_osb.htm
    3. How can i integrate Oracle BPM Suite to SOA SUite 11g?Through BPEL it should possible. Please refer -
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10223/505_bpm.htm
    Try to contact your local Oracle Sales Representative for more details and support from Oracle for implementaion of your use case.
    Regards,
    Anuj

  • How to use objects from other SWCs in my BPM Integration Scenario

    Dear all,
    I am experiencing some difficulties with the following. I have created a BPM Integration Scenario in a SWC. It contains a tranformation step in which a message from that SWC is split and mapped to two IDOCs. These IDOCs are imported in anothern SWC which I use for common objects. I have created Abstract Message Interfaces based on these IDOCs in this "COMMON" SWC, but the probIem is that I cannot use them in my scenario in the other SWC. Even though I have a usage dependency (Installation Time) created to the "COMMON" SWC.
    Any suggestions would be much appreciated!!
    Thanks in advance.
    Will happily provide points for good answers.
    Auke

    Thus, I would have to copy/import all objects to the same SWC?
    Or create a separate SWC for BPM Integration scenarios?
    I have tried to create the Abstract Message Interface in the SWC and reference it to the IDOC structure in the "COMMON" SWC. This results in a reference to an invalid object during activation. Even though the defined usage dependency.
    What's the standard solution?
    Cheers,
    Auke
    Message was edited by:
            A. Schotanus

  • Ecm and gmp-ecm conflict

    Hi all, this is my first post on this forum. I'm not sure where to post this and was afraid to post this to package-bugs so I'll try here. Tried to find mention of this problem but didn't find, so here it goes:
    I encountered a package conflict between packages ecm (https://www.archlinux.org/packages/comm … 86_64/ecm/) and gmp-ecm (https://www.archlinux.org/packages/comm … 4/gmp-ecm/). Both wants to install executable "ecm".

    Yupyup, I can confirm. Time to report this as a bug.
    claire ~ % sudo pacman -S ecm gmp-ecm
    [sudo] password for claire:
    resolving dependencies...
    looking for conflicting packages...
    Package (2) New Version Net Change Download Size
    community/ecm 1.03-4 0.02 MiB 0.01 MiB
    community/gmp-ecm 6.4.4-1 0.48 MiB
    Total Download Size: 0.01 MiB
    Total Installed Size: 0.49 MiB
    :: Proceed with installation? [Y/n] y
    :: Retrieving packages ...
    ecm-1.03-4-x86_64 8.0 KiB 0.00B/s 00:00 [----------------------] 100%
    (2/2) checking keys in keyring [----------------------] 100%
    (2/2) checking package integrity [----------------------] 100%
    (2/2) loading package files [----------------------] 100%
    (2/2) checking for file conflicts [----------------------] 100%
    error: failed to commit transaction (conflicting files)
    /usr/bin/ecm exists in both 'ecm' and 'gmp-ecm'
    Errors occurred, no packages were upgraded.
    EDIT: Reported as this bug.
    Last edited by clfarron4 (2015-01-15 14:37:40)

  • Oracle Portal and Discoverer Integration

    Portal Version: 9.0.2.0.1
    RDBMS Versjion: 9.0.1.3
    OS/Vers. Where Portal is Installed:: Suse 7 SLES
    Error Number(s)::
    Oracle Portal and Discoverer Integration
    We're trying to integrate Discoverer with Portal unsuccessfully.
    We made many things in accordance with oracle's documentation until add discoverer portlets (worksheet and list of workbooks) in a test page.
    In view mode, the worksheet portlet shows the error:
    "The portlet has not been defined. The publisher must define the portlet by clicking on Edit Defaults for the portlet on the edit mode of this page. Please contact the publisher of this page."
    We think we have to edit properties before. Is this? Anyway edit worksheet portlet crashes between step 1 and 2. The error is: "The listener returned the following Message: 500 Internal Server Error".
    We have a public conection created in EM and a discoverer application which can be viewed using plus or viewer.
    Furthermore, it's not possible delete the added portlets neither the page that contain it. The error at delete is:
    Error: An unexpected error occurred: User-Defined Exception (WWC-44082)
    (WWC-00000)
    An unexpected error has occurred in portlet instances: User-Defined Exception (WWC-
    44846)
    An unexpected error occurred: User-Defined Exception (WWC-43000)
    The following error occurred during the call to Web provider:
    oracle.portal.provider.v2.PortletNotFoundException
    at oracle.portal.utils.v2.ContainerException.fillInStackTrace(Unknown Source)
    at java.lang.Throwable.<init>(Throwable.java:78)
    at java.lang.Exception.<init>(Exception.java:29)
    at oracle.portal.utils.v2.ContainerException.<init>(Unknown Source)
    at oracle.portal.provider.v2.PortletException.<init>(Unknown Source)
    at oracle.portal.provider.v2.PortletNotFoundException.<init>(Unknown Source)
    at oracle.disco.portlet.provider.DiscoPortletPersonalizationMgr.destroy
    (DiscoPortletPersonalizationMgr.java:65)
    at oracle.portal.provider.v2.DefaultPortletInstance.deregister(Unknown Source)
    at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.deregisterPortlet
    (Unknown Source)
    at java.lang.reflect.Method.invoke(Native Method)
    at oracle.webdb.provider.v2.utils.soap.SOAPProcessor.doMethodCall(Unknown Source)
    at oracle.webdb.provider.v2.utils.soap.SOAPProcessor.processInternal(Unknown Source)
    at oracle.webdb.provider.v2.utils.soap.SOAPProcessor.process(Unknown Source)
    at oracle.webdb.provider.v2.adapter.SOAPServlet.doSOAPCall(Unknown Source)
    at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind.server.http.ResourceFilterChain.doFilter
    (ResourceFilterChain.java:59)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.invoke
    (ServletRequestDispatcher.java:523)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal
    (ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest
    (HttpRequestHandler.java:735)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    (WWC-43147)
    Edit properties for portlet List of Workbook works but in view mode we have the error in the portlet area:
    "Failed to refresh portlet. Please verify that the information used to create the
    portlet instance or customization is still valid. Otherwise, please contact your
    iAS administrator. oracle.discoiv.controller.FatalControllerException:
    DiscoNetworkException - Nested exception: org.omg.CORBA.OBJECT_NOT_EXIST: minor
    code: 0 completed: No null"
    Any ideas?
    Thanks

    Hi there,
    Have you applied any patches to 9ias since it was first installed? We had the same problem and had to apply a couple of patches to get the portlets working.
    1. Apply the 9.0.2.53.16 one-off patch for Oracle 9iAS Discoverer which takes Discoverer up to 9.0.2.53.16. This patch appears to be password protected and you need to get someone at Oracle support to give you a password.
    2. Apply the Discoverer Portlet Provider: 9.0.2.53.00c patch (patch no. 2595444) which gives you a new discportal.xsl file that actually works. It's this second step that solves your problem but you need to do step 1 before this. This is password protected as well.
    3. As you've upgraded Disco on the server to 9.0.2.53, you'll need to upgrade Disco Admin & Desktop within your 9iDS installation using patch no. 2555265. This is because Disco 9.0.2.53 uses an upgraded EUL that Disco Admin & Desktop need to be patched to use.
    This was the course of action Oracle support advised us about nine months ago. Of course they may have released a further patch to Disco that does 1 & 2 in one go, but we regularly carry out steps 1 and 2 on servers we use and we can use the Disco portlets successfully.
    Hope this helps
    Mark Rittman
    [email protected]

Maybe you are looking for