BPEL 10.1.2 and BAM

I am trying to create a BAM server connection in my JDeveloper. I enter all the details correctly and I get result failed with details as "Authentication Failed for Basic realm=my machine name".
I tried using localhost, port 80, my user id and password and my domain name(all caps).
Also, we are going live with the BPEL version 10.1.2 so my question here is would BAM 10.1.3 work with BPEL 10.1.2 without any problems?
Any help would be greatly appreaciated.
Dipal Patel

Sanjeev,
I work for Hitachi Consulting and we are implementors for a client based in Dallas. We had informal training with you if you recall at dallas. I have tried all the combination i.e. machine name, machine+domain. I am not sure what do you mean by namesapce issue?
My contact information - [email protected]
+Dipal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Email activity for soa and bam with pre-built virtualbox images

    Dear OTN,
    i am running pre built virtualbox image for soa and bam and want to run with email activity and configure the email inside the virtualbox can anyone help me with email activity in pre-built virtualbox image.
    Thanks & Regards,
    Pavan

    Hi there
    I have a Technote that shows how the information can be published from EBS to BAM. In addition you could create an end to end visibility across the products e.g. B2B - BPEL - EBS - Financials etc by raising the events to BAM .
    There is no out of the box dashboards available today. However, i have a number of customers who are doing this use case by themselves or through some SI/Oracle consulting.
    can we contact you offline to discuss your requirement?
    http://www.oracle.com/technology/products/integration/bam/11g/technotes11g/whitepaperBAM_E-BusinessSuiteIntegration.pdf
    There are certified adapters available for EBS to FM as well.
    Regards
    Payal
    Edited by: PayalS on May 21, 2010 4:25 PM

  • Eclipse BPEL: Qualified input payload and UnQualified ouput payload

    Hi All,
    We are currently using Eclipse BPEL to develop our BPEL processes, and we have a requirement that the incoming payload would be qualified whereas the output payload is unqualified.
    Currently, in Eclipse BPEL, both the input and output elements are defined under the same Schema definition in the WSDL file. Hence, both of them can either be qualified or unqualified. But in Oracle BPEL we have different XSD definition files for input and output elements. So, we can handle them independently.
    Can someone please suggest a way to achieve the same in Eclipse BPEL.
    Below is the WSDL file for your reference:
    +<?xml version="1.0" encoding="UTF-8" standalone="no"?>+
    +<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"+
    +     xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"+
    +     xmlns:tns="http://CFvalidation" xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"+
    +     xmlns:wsdl="http://validateCF" xmlns:xsd="http://www.w3.org/2001/XMLSchema"+
    +     name="CFvalidation" targetNamespace="http://CFvalidation">+
    +     <!--+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +          TYPE DEFINITION - List of types participating in this BPEL process The+
    +          BPEL Designer will generate default request and response types but you+
    +          can define or import any XML Schema type and use them as part of the+
    +          message types.+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +     -->+
    +     <plnk:partnerLinkType name="ValidateCF_PLT">+
    +          <plnk:role name="ValidateCF_Role" portType="wsdl:ValidateCF" />+
    +     </plnk:partnerLinkType>+
    +     <import location="ValidateCF.wsdl" namespace="http://validateCF" />+
    +     <types>+
    +          <schema xmlns="http://www.w3.org/2001/XMLSchema"+
    +               attributeFormDefault="unqualified" elementFormDefault="unqualified"+
    +               targetNamespace="http://CFvalidation">+
    +               <element name="SSF_LEDGER_ID">+
    +                    <complexType>+
    +                         <sequence>+
    +                              <element maxOccurs="unbounded" minOccurs="0" name="SSF_GL_SEGMENT">+
    +                                   <complexType>+
    +                                        <sequence>+
    +                                             <element minOccurs="0" name="SSF_GL_SEGMENT_VALUE"+
    +                                                  type="xsd:string" />+
    +                                        </sequence>+
    +                                        <attribute name="name" type="xsd:string" />+
    +                                   </complexType>+
    +                              </element>+
    +                         </sequence>+
    +                         <attribute name="value" type="xsd:integer" />+
    +                    </complexType>+
    +               </element>+
    +               <element name="SSF_CF_COMBO_RTVLD_ITEM">+
    +                    <complexType>+
    +                         <sequence>+
    +                              <element name="SSF_CF_COMBO_VALID" type="xsd:string" />+
    +                              <element name="SSF_CF_COMBO_ID" type="xsd:string" />+
    +                         </sequence>+
    +                    </complexType>+
    +               </element>+
    +          </schema>+
    +     </types>+
    +     <!--+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +          MESSAGE TYPE DEFINITION - Definition of the message types used as part+
    +          of the port type defintions+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +     -->+
    +     <message name="CFvalidationRequestMessage">+
    +          <part element="tns:SSF_LEDGER_ID" name="payload" />+
    +     </message>+
    +     <message name="CFvalidationResponseMessage">+
    +          <part element="tns:SSF_CF_COMBO_RTVLD_ITEM" name="payload" />+
    +     </message>+
    +     <!--+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +          PORT TYPE DEFINITION - A port type groups a set of operations into a+
    +          logical service unit.+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +     -->+
    +<!-- portType implemented by the CFvalidation BPEL process -->+
    +     <portType name="CFvalidation">+
    +          <operation name="process">+
    +               <input message="tns:CFvalidationRequestMessage" />+
    +               <output message="tns:CFvalidationResponseMessage" />+
    +          </operation>+
    +     </portType>+
    +     <!--+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +          PARTNER LINK TYPE DEFINITION+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +     -->+
    +     <plnk:partnerLinkType name="CFvalidation">+
    +          <plnk:role name="CFvalidationProvider" portType="tns:CFvalidation" />+
    +     </plnk:partnerLinkType>+
    +     <binding name="CFvalidationBinding" type="tns:CFvalidation">+
    +          <soap:binding style="document"+
    +               transport="http://schemas.xmlsoap.org/soap/http" />+
    +          <operation name="process">+
    +               <soap:operation soapAction="http://CFvalidation/process" />+
    +               <input>+
    +                    <soap:body use="literal" />+
    +               </input>+
    +               <output>+
    +                    <soap:body use="literal" />+
    +               </output>+
    +          </operation>+
    +     </binding>+
    +     <service name="CFvalidationService">+
    +          <port binding="tns:CFvalidationBinding" name="CFvalidationPort">+
    +               <soap:address location="http://localhost:9000/ode/processes/CFvalidation" />+
    +          </port>+
    +     </service>+
    +</definitions>+
    Thanks in advance,
    Dev

    Hi All,
    We are currently using Eclipse BPEL to develop our BPEL processes, and we have a requirement that the incoming payload would be qualified whereas the output payload is unqualified.
    Currently, in Eclipse BPEL, both the input and output elements are defined under the same Schema definition in the WSDL file. Hence, both of them can either be qualified or unqualified. But in Oracle BPEL we have different XSD definition files for input and output elements. So, we can handle them independently.
    Can someone please suggest a way to achieve the same in Eclipse BPEL.
    Below is the WSDL file for your reference:
    +<?xml version="1.0" encoding="UTF-8" standalone="no"?>+
    +<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"+
    +     xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"+
    +     xmlns:tns="http://CFvalidation" xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"+
    +     xmlns:wsdl="http://validateCF" xmlns:xsd="http://www.w3.org/2001/XMLSchema"+
    +     name="CFvalidation" targetNamespace="http://CFvalidation">+
    +     <!--+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +          TYPE DEFINITION - List of types participating in this BPEL process The+
    +          BPEL Designer will generate default request and response types but you+
    +          can define or import any XML Schema type and use them as part of the+
    +          message types.+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +     -->+
    +     <plnk:partnerLinkType name="ValidateCF_PLT">+
    +          <plnk:role name="ValidateCF_Role" portType="wsdl:ValidateCF" />+
    +     </plnk:partnerLinkType>+
    +     <import location="ValidateCF.wsdl" namespace="http://validateCF" />+
    +     <types>+
    +          <schema xmlns="http://www.w3.org/2001/XMLSchema"+
    +               attributeFormDefault="unqualified" elementFormDefault="unqualified"+
    +               targetNamespace="http://CFvalidation">+
    +               <element name="SSF_LEDGER_ID">+
    +                    <complexType>+
    +                         <sequence>+
    +                              <element maxOccurs="unbounded" minOccurs="0" name="SSF_GL_SEGMENT">+
    +                                   <complexType>+
    +                                        <sequence>+
    +                                             <element minOccurs="0" name="SSF_GL_SEGMENT_VALUE"+
    +                                                  type="xsd:string" />+
    +                                        </sequence>+
    +                                        <attribute name="name" type="xsd:string" />+
    +                                   </complexType>+
    +                              </element>+
    +                         </sequence>+
    +                         <attribute name="value" type="xsd:integer" />+
    +                    </complexType>+
    +               </element>+
    +               <element name="SSF_CF_COMBO_RTVLD_ITEM">+
    +                    <complexType>+
    +                         <sequence>+
    +                              <element name="SSF_CF_COMBO_VALID" type="xsd:string" />+
    +                              <element name="SSF_CF_COMBO_ID" type="xsd:string" />+
    +                         </sequence>+
    +                    </complexType>+
    +               </element>+
    +          </schema>+
    +     </types>+
    +     <!--+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +          MESSAGE TYPE DEFINITION - Definition of the message types used as part+
    +          of the port type defintions+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +     -->+
    +     <message name="CFvalidationRequestMessage">+
    +          <part element="tns:SSF_LEDGER_ID" name="payload" />+
    +     </message>+
    +     <message name="CFvalidationResponseMessage">+
    +          <part element="tns:SSF_CF_COMBO_RTVLD_ITEM" name="payload" />+
    +     </message>+
    +     <!--+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +          PORT TYPE DEFINITION - A port type groups a set of operations into a+
    +          logical service unit.+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +     -->+
    +<!-- portType implemented by the CFvalidation BPEL process -->+
    +     <portType name="CFvalidation">+
    +          <operation name="process">+
    +               <input message="tns:CFvalidationRequestMessage" />+
    +               <output message="tns:CFvalidationResponseMessage" />+
    +          </operation>+
    +     </portType>+
    +     <!--+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +          PARTNER LINK TYPE DEFINITION+
    +          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+
    +     -->+
    +     <plnk:partnerLinkType name="CFvalidation">+
    +          <plnk:role name="CFvalidationProvider" portType="tns:CFvalidation" />+
    +     </plnk:partnerLinkType>+
    +     <binding name="CFvalidationBinding" type="tns:CFvalidation">+
    +          <soap:binding style="document"+
    +               transport="http://schemas.xmlsoap.org/soap/http" />+
    +          <operation name="process">+
    +               <soap:operation soapAction="http://CFvalidation/process" />+
    +               <input>+
    +                    <soap:body use="literal" />+
    +               </input>+
    +               <output>+
    +                    <soap:body use="literal" />+
    +               </output>+
    +          </operation>+
    +     </binding>+
    +     <service name="CFvalidationService">+
    +          <port binding="tns:CFvalidationBinding" name="CFvalidationPort">+
    +               <soap:address location="http://localhost:9000/ode/processes/CFvalidation" />+
    +          </port>+
    +     </service>+
    +</definitions>+
    Thanks in advance,
    Dev

  • How to have Weblogic and BAM process run in background

    I ssh to the Weblogic (also the BAM) server via putty and use below command to start the weblogic and BAM:
    /opt/oracle/Middleware/user_projects/domains/base_domain/startWebLogic.sh
    /opt/oracle/Middleware/user_projects/domains/base_domain/bin/startManagedWebLogic.sh bam_server1
    And then I have no way to have the weblogic and BAM run in backgroup as it needs to ask me for login and password. I cannot close the ssh connection neither otherwise the weblogic and BAM processes will die
    Clay

    Hi Clay,
    Both these points can be easily handled.
    To start admin server enter the below command with the &. This & will make the process run in background.
    . /opt/oracle/Middleware/user_projects/domains/base_domain/startWebLogic.sh &
    If you want the logs to be redirected to some file then you can use a nohup as given below
    nohup . /opt/oracle/Middleware/user_projects/domains/base_domain/startWebLogic.sh &
    Same holds good for bam serevr also
    . /opt/oracle/Middleware/user_projects/domains/base_domain/bin/startManagedWebLogic.sh bam_server1 &
    OR
    nohup . /opt/oracle/Middleware/user_projects/domains/base_domain/bin/startManagedWebLogic.sh bam_server1 &
    It will respond to you with the process-id, you can just hit an enter and safely close the putty session while the server is still up & running.
    To stop the same, in a new putty session you can enter the below. Here you need not(will not) give &
    . /opt/oracle/Middleware/user_projects/domains/base_domain/stopWebLogic.sh weblogic welcome1 t3://hostname:port
    . /opt/oracle/Middleware/user_projects/domains/base_domain/bin/stopManagedWebLogic.sh bam_server1 t3://hostname:port
    Password:
    As you see above we are not passing user-id/password while starting the server. We need to create a file named boot.properties and place it in /opt/oracle/Middleware/user_projects/domains/base_domain/servers/AdminServer/security directory. security directoy will not be present, you have to create it.
    Contents of boot.properties file will be only 2lines as below
    username=weblogic
    password=welcome1
    On next startup server will encrypt the password.
    Same boot.properties file has to be created in /opt/oracle/Middleware/user_projects/domains/base_domain/servers/bam_server/security location.
    Hope this answers your question.
    Thanks,

  • How to enable BPEL loggers at domain and system level ?

    As far as I know there are two kind of BPEL loggers
    - at domain and
    - system level
    Where EXACTLY can I enable/disable them resp. set them to e.g. DEBUG mode?
    Peter

    Apart from the posts mentioned above, please note that log4j-config.xml is the files that has these logging entries.
    For domain level : SOA_ORACLE_HOME\bpel\domains\default\config\log4j-config.xml
    For system level : SOA_ORACLE_HOME\bpel\system\config\log4j-config.xml
    You set these loggers on domain level or system level depending on the information you are interested to see, so set that particular logger.

  • Just built, and BAM - BSOD!! Hello, MSI!

    Ok, specs.
    MSI Neo2 Plat Bios V1.3
    Winchester 939 3500+
    BFG nVidia 6800 Ultra
    Corsair XMS 512x2 3200C2
    Win XP, SP2
    WD 80g CE + WD 120g CE hds
    NEC 2500A
    Lite-On DVD 16x
    Coolermaster CM Stacker
    Got Win XP installed, got SP2 installed, all driver chipsets, and had activated XP on the internet. Installed Zonealarm Pro and BAM! BSOD. 4 reboots and 4 BSOD. Now, it says check Gigabit cable (its onboard, no cable silly computer!) and says SYSTEM BOOT ERROR INSERT SYSTEM DISK.
    Dude, this is a brand new board? ? I have checked and double checked avery cord, moltex, fan, you name it. Unplugged IDEs, everything. Help???

    Quote
    Originally posted by ttreaders
    Quote
    You think its the ram? OK I will run memtest; I used this ram in another rig for the last year and it was A_OK, but maybe there is incompatibility with this MSI board. Will try. EDIT: FYI, I have the ram in slots 1+3 (green).
    I am not positive but on the Neo2 don't you have to run with 1 stick in a green slot and the other one in a purple slot for the memory to run in dual channel mode?
    the motherboard manual was a little confusing for me; if its not written for a 2 year old then I can't understand it...
    I asked this question not here (I guess I should have come here first lol) but at
    [H]ard and Anand forums; if this is the case someone please let me know!!! I would greatly appreciate it!
    I currently have it in slot 1 and 3. I installed an xp 90 on th is board and guess I am gonna have to live with the fact I am gonna now have to pull it off and reconnect it   to get my ram out...damn!!!
    Before I do this, can someone confirm this for me?

  • SES v10.1.3.1 and BAM/BPEL

    Hello
    My idea is create some sensors which are accesible to BAM.
    I dont't know it's possible - maybe some examples.
    Best regards
    Tomasz Haase

    Hello
    I'm preparing pilot for the client. The dashboard is part of the pilot.
    The pilot will start in january 2007.
    If it's possible give me a sample dashboard. I prepare this pilot based on SOA Suite and SES v10.1.3.1.
    Best regards
    Tomasz Haase

  • JDev 11g 113 designer - Composite with BPM and BAM does not compile

    Using JDev1113 with SOA additions. Weblogic 11g.
    I have an Application which includes a BPM project.....
    This project makes and can be deployed to the Middleware and executes successfully.
    However, when I add a BAM adapter to the composite and wire it in either to a BPEL Orchestration or the BPM process directly I am unable to make the project.
    Adding BAM to the project adds the xsd file into the Business catalog, but with an error icon attached.
    I have tried modifying the BPM Project properties but don't really understand the Data Objects path... which may be the reason for my error.
    Make returns multiple errors as below : all relating to the xsd schema.
    +Error: BPM-71701: Business Catalog object 'Services.Externals.BAM_Upd_URL_Fluid' is not valid. The parameter 'custURLUpdFluidCollection' of the method 'writetoBAM' is referencing an XML Schema element '{http://xmlns.oracle.com/bam}_CustURLUpd_fluidCollection' that cannot be found in the project.. Cause: This can happen if the XML Schema element or complex type is removed. Action: Check the project XML Schemas files+
    Error: BPM-71529: Xml Schema '/xsd/BAMServerConnection_BPM_SOA11gLoadTest_CustURLUpd_fluid.xsd' could not be loaded due to an error parsing the XML tag 'undefined' defined at line '-1'.  Cause: Invalid schema element ''.  Action: Fix the Xml Schema to continue
    The BAM function works fine if BPM is not incorporated into the project. i.e a typical BPEL orchestration. writing to BAM Data objects.... So this error is definitely related to adding a BPM process diagram into the Project.
    Can anyone offer any advice ?
    Thanks
    Cliff

    Hi Cliff
    I'm experimenting almost the same problem.
    I know your question is a little bit old, but might you have the problem yet.
    If it is the case, try to edit the XSD generated by DBAdapter's wizard, removing all "annotation" tags.
    Close the project and open it again to properly refresh (for me just refresh the catalog didn't work).
    I hope this help you.
    Regards,
    Luis F Heckler

  • BAM-06146 and BAM-01265 Faults

    HI,
    I am getting below fault when i am pushing payload to BAM Data Object using BAM Adapter in BPEL flow.
    Is there a problem with payload( according to BAM-06146) or tablespace problem (according to BAM-01265) or any other problem is there.
    Please help me to rectify.
    Used : SOA SUITE 11.1.1.6.0
    <fault>
    -<bpelFault>
    <faultType>
    0
    </faultType>
    -<bindingFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'writetoBAM' failed due to: javax.resource.ResourceException: java.rmi.RemoteException: *BAM-06146: Cannot upsert rows in data object /public/DataObject/KPI/BOM/ECN Created For BOM.;*
    nested exception is:
    oracle.bam.adc.common.exceptions.CacheException: *BAM-01265: An error (No more data to read from socket) has occurred in the Active Data Cache storage system.".*
    The invoked JCA adapter raised a resource exception.
    Please examine the above error message carefully to determine a resolution.
    </summary>
    </part>
    -<part name="detail">
    <detail>
    No more data to read from socket
    </detail>
    </part>
    -<part name="code">
    <code>
    null
    </code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>
    -<faultType>
    Regards,
    Abhinav Gupta

    HI ,
    Now this error is coming also in server console
    <Aug 2, 2012 9:00:34 AM IST> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM DUAL" set up for pool "BAMDataSource" failed with exception: "java.sql.SQLRecoverableException: Closed Statement".>
    <Aug 2, 2012 9:00:38 AM IST> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM DUAL" set up for pool "BAMDataSource" failed with exception: "java.sql.SQLRecoverableException: Closed Connection".>
    DO i need to do increase capacity ??
    Oracle WebLogic ServerConsole>Datasources>BAMDataSource>Configuration-Connection
    Pool>Maximum Capacity, and set BAMDataSource to 200 (default 100).
    Please help its urgent !!
    Abhinav
    Edited by: Abhinav on Aug 2, 2012 9:41 AM

  • BPEL - Handling invocation timeouts and Modifying Partner Link endpoints

    Hi,
    We've built the basic functionality that we need in our BPEL process but are facing 2 specific questions that we are a bit stuck with and would really appreciate some help on..
    1. Our BPEL process calls an external synchronous web service. We have a requirement that if this external web service is unable to respond to our BPEL process within a fixed timespan (say 1 minute), we need to treat this as a timeout and move on. Can anyone suggest what settings are required for this?
    2. The second query is with regards to a likely situation we will face after go-live. If the URL of the external service changes (lets say the service moves from one server to another), ideally we would want to be able to configure this URL change rather than have to modify the WSDL and rebuild the BPEL project in JDev with the new WSDL. Does the BPEL Admin Console provide any such feature? As far as I can recall from a project a couple of years ago, Websphere Process Server did provide such a feature and I'm looking for something similar here but have not found it yet. I am not looking to use dynamic endpoints within our flow - just for an admin feature that would allow me to modify the URL externally via the console.
    Would really appreciate any suggestions on these 2 points..
    Thanks and Regards,
    TB

    In response to your second query -
    a) you don't need to rebuild the BPEL project in Jdev in order to change the wsdl file. If you update the WSDL file with new values for your endpoint simply clear the WSDL cache and the process will pick up the new values in the new instances created from thereon.
    b) or if you dont' want to update the wsdl manually, you can write a piece of java code to change the endpoint URL's for the deployed BPEL processes using the code given here
    hth

  • BPM and BAM Connectivity Issue....

    Hi All,
    I'm going to connect my BPM project to BAM application.
    Initial works are done. But the Data Object should follow name format like 'BI_<partition>_<composite name>_<process name>' .
    But my composite name and process name has '_' characters. Will this affect to the naming convention ??
    (Version 11.1.1.6.0)
    Thanks,
    Nir

    This is just a guess as I'm not a Transall user. My first guess is that your DSN will need to be made using the 32-bit ODBC driver. As a default, using Windows 7 or later, you created a 64-bit source.
    To create or modify a 32-bit DSN on 64-bit Windows, you must run C:\WINDOWS\SysWOW64\odbcad32.exe. You may find it useful to create a shortcut to this on your desktop or Start menu if you access it frequently. I believe the interface is exactly the same after that.

  • Integrating BPM 11g and BAM

    Hi everyone,
    I'm using Oracle SOA Suite PS4 (11.1.1.5) on Oracle Linux 6, 64-bit.
    I have a simple BPM project, from which I want to send data to BAM to be able build a BAM dashboard.
    I went through all neccessary steps:
    1. I configured BAM adapter
    2. I configured BPMN engine for BAM integration
    3. I imported BAM Monitor Express
    4. I configured BPM project (enabled BAM and provided JNDI,...)
    I've repeated previous steps several times and I'm pretty sure that I didn't do any mistake. I also tried to restart servers, etc.
    However, when I deploy the project the BI data object is not created as it should be and also when I create a new composite instace, the following errors occur in SOA server log:
    1. Errror
    Module     oracle.soa.bpmn.engine.sensor
    Host     localhost.zeus
    Host IP Address     193.2.72.73
    User     <anonymous>
    Thread ID     BAMActionMDB
    ECID     d43c0affab89694f:5f271097:131e7a88bfd:-8000-0000000000001ced
    Supplemental Detail     java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:19
    2. Error
    Module     oracle.soa.bpmn.engine.sensor
    Host     localhost.zeus
    Host IP Address     193.2.72.73
    User     <anonymous>
    Thread ID     BAMActionMDB
    ECID     d43c0affab89694f:5f271097:131e7a88bfd:-8000-0000000000001ced
    Message     Unable to invoke the webservice
    Supplemental Detail     java.net.ConnectException: Connection refused
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    3. Warning
    Component     soa_server1
    Module     oracle.bpm.analytics.bam
    Host     localhost.zeus
    Host IP Address     193.2.72.73
    User     <anonymous>
    Thread ID     BAMActionMDB
    ECID     d43c0affab89694f:5f271097:131e7a88bfd:-8000-0000000000001ced
    Message     failed on bamDataObjectCache.getBAMDataObjectBean(). Unable to find /Samples/Monitor Express/COMPONENT
    There is no error on BAM server so it looks like the SOA server (BAM adapter) can't connect to BAM (java.net.ConnectException: Connection refused).
    Can anyone help, please?
    Regards,
    Sonny

    Hi,
    I also had the same issue with 11.1.1.5. The data objects were not getting created. I manually created the data object using BAM Architect. And that solved my issue. I was able to see graphs in BAM.
    However, 11.1.1.4 is working fine. It creates the data objects for BAM during deployment.

  • Invoking secure services inside bpel with x509 certificate and weblogic

    Hi, everyone. Here we have a problem with invoking secure webservices (*client authentication*) from a bpel deployed in weblogic that is consuming so much time (more than a week) and don't know what else to try.
    The scenario: we have a bpel process which invokes a series of web services without any security mechanisms. Now, we have to change it to invoke a series of webservices that do exactly the same, but using ssl and client authentication with x509 certificates. The first part of it, the ssl one, is done without any problems. But the second part is not working at all, and we (I) are running out of ideas how to configure it in weblogic.
    The situation: I want to invoke a webservice, say, Service1. It requires client authentication, so I should pass a certificate (*which I already have*). I put that certificate inside a keystore (with keytool -importkeystore, from p12 to jks). With SoapUI I have no problem now to invoke the service now. But, I'm not sure what should I do to make it work in weblogic; after all, the provider keeps answering with a HTTP 403 Forbidden error.
    The actions: inside the weblogic's enterprise manager, in SOA deployments (SOA / soa-infra / default ) I selected my composite, and in the Dashboard (down at Services and references), clicked the particular service (Service1). Then, it took me to another page where I can see statistics about that service, and a tab named Policies. There (in Policies) I have the chance to attach a policy, but I don't know which one is the approppriate; I guest it should be WSS11_x509_token_with_message_protection_service_policy, which in turn asks me to provide a value for keystore.recipient.alias, keystore.sig.csf.key and keystore.enc.csf.key. For this keys, I provide values that I configured in Credentials (Weblogic Domain / Security / Credentials, subtree oracle.wsm.security). My own logic tells me that what I have done is what I should have done, but still no luck :(
    I am sure the keystore is ok (if I rename the keystore file it tells me that the keystore file cannot be found, and if I specify an alias which is not inside the keystore it tells me that the alias is not found and list me valid aliases). I guess I am missing something, somewhere, but after many hours (days, almost 2 weeks) googling, still cannot make it work.
    Any ideas would be apreciated. If anyone knows about a post or article about this, it would be apreciated too, but I can tell is not that I just googled for 25 minutes, but I have spent more than a week googling, trying, analyzing and reading formal documentation, with no results.
    Thanks in advance!

    Try to enable SSL and WS debugging on your WLS. Add the following to your startup script:
    -Dweblogic.webservice.verbose=true
    -Dssl.debug=true
    ..then you might be able to spot if the rejection is based on some handshake problem.

  • Oracle EBS and BAM

    I am trying to integrate Oracle EBS R12 with BAM, so I created external data source in BAM and it got created successfully.
    But when I try to select the table from this data source in order to create data object, the lov for table name never shown up, it has been busy for a long time in getting table names from this data source and after sometime, its going out.
    I know this may be because we have huge number of tables in APPS schema in EBS.
    Is this the best way to integrate EBS with BAM through external data source or any other suggestible way?
    Regards,
    Suneel Jakka

    Hi Suneel,
    Yes I have seen the same issue with mine too.the problem with because of have huge number of tables in APPS schema in EBS.
    In my case I waited about 21 minutes ,after that the tables got populated, even if got i am not able to select my required table.I tried lot of time I am finally created DataObject.
    after tables got populated I used key board to select tables by using up arrows & down arrows to select Table.
    I think this techniques may useful, be patience you will get!!
    Regards
    Siva Shankar

  • BPEL Workflow Tasks - Assignees and how BPEL handles rejection of tasks.

    (JDeveloper 10.1.3.1.0)
    So I am curious about the following:
    1) When rejecting a task, can it go to the person that initiated the task? Or do we need to handle this through new tasks? Like in a while loop?
    2) Can we specify users and groups when selecting a management chain?
    3) How do we handle multilevel approvals? Seperate Tasks?
    The management chain functionality seems interesting. I would like to be able to create a management chain task so that we specify the user (initiator), reviewGroup, approvalGroup. If the Reviewer Rejects, then it would go back to the user. If the Approver in the approvalGroup rejects it, it would go back to the reviewGroup.
    This seems like standard type of functionality, but I don't think it is in this version of BPEL, or at least the JDev wizard interface.
    Any thoughts, suggestions, insights?
    Thanks,
    BradW

    While loop was the only way I could make this work... :) BPEL is pretty linear, not like a typical activity diagram...

Maybe you are looking for

  • Pdf images won't display

    In many display/annotate apps pdf files will not display images. In Adobe's app most images disply properly, but some turn into black rectangles.

  • Getting "Protection Error" msg due to same serial number on network

    Hello Finale Cut Studio users, I've run into an annoying problem here and I was wondering if anyone else has dealt with this issue who is working in a similar situation as me? I take care of eleven student iMac workstations, all of which are exact cl

  • Image for background

    I have an image now that I want to use for a background on all of my WebPages. The image size is 2912x 4368 and I have made it 1024x1536. On the page it looks good but what happens is the image repeats itself twice for width and length. I want it to

  • Why cannot I not open file with .wmv extensions?

    I am not able to open file attachments that have a .wmv extension - I can open power point presentations. Am I missing an app or does Apple simply not recognize these as valid files? It seems to download, but then does not ever open.

  • Can default opening position of image window be adjusted in Photoshop CS5?

    When having to deal with large numbers of files any repetitive task on each one, no matter how small, becomes tiresome and is the reason why actions came into being. On opening an image its default position is to the extreme left edge of the screen b