OTN Webcast: Jan 22nd: Leveraging BPEL to Extend Siebel Business Processes

Leveraging BPEL to Extend Siebel Business Processes
In this Webcast, we will give you an overview of how Oracle BPEL Process Manager can be used to extend Siebel Business Processes. This presentation will provide a demonstration and opportunity for interactive Q&A.
When: Tuesday 22nd January 2008 - Noon PST, 8pm GMT
Duration: 45 minutes
Audience: Siebel Developers, Siebel Technologists, Fusion Middleware Developers and anyone wanting to learn how to best leverage FMW with Siebel Applications
http://www.oracle.com/technology/tech/fmw4apps/siebel/webcasts/jan2008.html

Similar Messages

  • Automating Business Process.. should we go for BPEL??

    Dear All,
    I hope you help me in this:
    We need to automate all the business processes exists at the work. Currently we are using Oracle database and Oracle Forms and Reports to build all our applications.
    The developers are excellent at SQL and PL/SQL. There is not any knowledge about Java or any other programming language.
    Should we go for Oracle BPEL to automate our business processes? Could it be used from Oracle Forms??? Or it needs to be used from other development Oracle tools such as JDeveloper??
    I hope you help me in this
    Emad

    The idea is to automate everything. I am working in a university, so, there are many bunisess process such as:
    1. Hiring New Employee: starting from the request of hiring the new employee up to the approving of hiring and signing the contract with this new employee.
    2. Student Process: such as request to drop registered course, enrolling a closed course because of a special conditions... etc
    3. Employees Requests: could be software/hardware maintenance request, could be electrical maitenance...etc
    The nice thing that we (as IT department) has worked with the Quality unit at my work and we have documented every business process. So, now we know every business process from it will start and where it will end.
    Now, we need to automate this. There is a debation that our developers should develop this system. I have said NO, there are Workflow Engines exist in the IT world and we have to study them and choose the best one for our needs.
    We are using Oracle Database and Oracle Forms and Reports. We have excellent working experience in SQL and PLSQL.
    Honestly, I have been thinking of Oracle Workflow, but Oracle BPEL beckons me.
    Therefore, I am posting this thread for the sake of help from experts here who already has an excellent experience in this
    Waiting for your participations..
    Thanks

  • Customer Service - Extended Warranty Sales Process

    Hi All,
    I want to implement Extended warranty sales process in sap. Here, dealer will send extended warranty form to company. Company wants to capture warranty related information (such as Vehicle number, Chassis Number, Date) in sap and want to sell warranty to dealer.
    Monthly once company will give discount to dealer based on performance. How to give discount to dealer monthly?
    I want to know the following details:
    Material type
    Item category
    Process flow
    How to capture warranty information?
    Thanks in advance,
    Babu

    Thanks for your reply......
    I have created new sales document type for extended warranty sales. I am using variant material for capturing dealer's requirement in va01 itself.
    Now my client dont want to create invoice for that sales order.
    With this Extended warranty sales order reference, they will create manual posting in Finance.
    Actually, they don't want to treat this as a revenue. This is a liability when they sell extended warranty to customer and after the extended warranty period is over (after 3 years), if the vehicle doesnt come for ext warranty claim then it will be treated as income.
    Is it correct process to leave extended warranty order (sales order-va01) without doing billing ?How can i proceed further?
    Thanks in advance,
    Babu

  • Bpel deployment fails for all processes that have revision other than 1.0.

    Using: Release *10.1.3.3.1*
    Hello All,
    Bpel deployment fails for all processes that have revision other than *1.0*.
    We have been attempting to deploy several BPEL projects via ANT script to a target environment and are encountering failures to deploy for every project which isn’t a (revision 1.0). We are getting the following error whenever we try to deploy a process with a revision other than 1.0:
    D:\TJ_AutoDeploy\BPEL_AutoDeploy_BETA\build.xml:65: BPEL archive doesnt exist in directory "{0}"
         at com.collaxa.cube.ant.taskdefs.DeployRemote.getJarFile(DeployRemote.java:254)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.deployProcess(DeployRemote.java:409)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.execute(DeployRemote.java:211)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.apache.tools.ant.Main.runBuild(Main.java:668)
         at org.apache.tools.ant.Main.startAnt(Main.java:187)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    The structure of our automated deployment script is as follows:
    First, a batch script calls (Jdeveloper_BPEL_Prompt.bat) in order to set all necessary environment variables i.e. ORACLE_HOME, BPEL_HOME, ANT_HOME, etc for ant.
    Next, the script lists every .jar file within the directory to an .ini file called BPEL_List.ini. Furthermore, BPEL_DIR, ADMIN_USER and ADMIN_PSWD variables are set and initialized respectively to:
    -     “.” – point to directory where script is running from because all the BPEL processes are located here
    -     “oc4jadmin”
    -     “*********” (whatever the password for out environment is)
    We’ve developed a method to have the script prompt the user to select the target environment to deploy to. Once the user selects the appropriate environment, the script goes through the BPEL_List.ini files and a loop tells it that for every BPEL process listed:
    DO ant
    -Dprocess.name=%%b
    -Drev= !Rev!
    -Dpath=%BPEL_DIR%
    -Ddomain=default
    -Dadmin.user=%ADMIN_USER%
    -Dadmin.password=%ADMIN_PWD%
    -Dhttp.hostname=%HOST%
    -Dhttp.port=%PORT%
    -Dverbose=true
    (What’s happening is that the variables in the batch file are being passed on to the ANT script where *%%b* is the process name, !rev! is revision #, and so on…)
    The loop goes through each line in the BPEL_List.ini and tokenizes the BPEL process into 3 parts *(%%a, %%b, and %%c)* but we only extract 2 parts: *%%b* (process name) and *%%c* which becomes !Rev! (revision number).
    Example:
    Sample BPEL process:
    bpel_ThisIsProcess1_1.0.jar
    bpel_ThisIsProcess2_SOAv2.19.0.001B.jar
    After tokenizing:
    %%a     %%b     %%c
    bpel     ThisIsProcess1     1.0.jar
    bpel     ThisIsProcess2     SOAv2.19.0.001B.jar
    *!Rev!* and not *%%c* because *%%c* will return whatever the revision number is + the “.jar” file extension as illustrated above. So to circumvent this, we parse *%%c* so that the last 4 characters are stripped. Such is done like this:
    set RevN=%%c
    set RevN=!RevN:~0,-4!
    Hence, the usage of !Rev!.
    Below is a screenshot post of the ANT build.xml that goes with our script:
    <!--<?xml version="1.0"?>-->
    <!--BUILD.XML-->
    <project name="bpel.deploy" default="deployProcess" basedir=".">
         <!--
         This ant build file was generated by JDev to deploy the BPEL process.
         DONOT EDIT THIS JDEV GENERATED FILE. Any customization should be done
         in default target in user created pre-build.xml or post-build.xml
         -->
         <property name="process.dir" value="${basedir}" />
              <!-- Set BPEL process name -->
              <!--
              <xmlproperty file="${process.dir}/bpel/bpel.xml"/>
              <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}"/>
              <property name="rev" value="${BPELSuitcase(rev)}"/>
              -->
         <property environment="env"/>
         <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME -->
              <condition property="bpel.home" value="${env.BPEL_HOME}">
                   <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
              </condition>
         <!-- show that both bpel and oracle.home are located (TESTING purposes ONLY) -->
         <!-- <echo>HERE:${env.BPEL_HOME} ${env.ORACLE_HOME}</echo> -->
         <!-- END TESTING -->
         <!--If bpel.home is not yet using env.BPEL_HOME, set it for JDev -->
         <property name="oracle.home" value="${env.ORACLE_HOME}" />
         <property name="bpel.home" value="${oracle.home}/bpel" />
         <!--First override from build.properties in process.dir, if available-->
         <property file="${process.dir}/build.properties"/>
         <!--import custom ant tasks for the BPEL PM-->
         <import file="${bpel.home}/utilities/ant-orabpel.xml" />
         <!--Use deployment related default properties-->
         <property file="${bpel.home}/utilities/ant-orabpel.properties" />
         <!-- *************************************************************************************** -->
         <target name="deployProcess">
              <tstamp>
                   <format property="timestamp" pattern="MM-dd-yyyy HH:mm:ss" />
              </tstamp>
              <!-- WRITE TO LOG FILE #tjas -->
              <record name="build_verbose.log" loglevel="verbose" append="true" />
              <record name="build_debug.log" loglevel="debug" append="true" />
              <echo></echo>
              <echo>####################################################################</echo>
              <echo>BPEL_AutoDeploy initiated @ ${timestamp}</echo>
              <echo>--------------------------------------------------------------------</echo>
              <echo>Deploying ${process.name} on ${http.hostname} port ${http.port} </echo>
              <echo>--------------------------------------------------------------------</echo>
              <deployProcess
                   user="${admin.user}"
                   password="${admin.password}"
                   domain="${domain}"
                   process="${process.name}"
                   rev="${rev}"
                   dir="${process.dir}/${path}"
                   hostname="${http.hostname}"
                   httpport="${http.port}"
                   verbose="${verbose}" />
              <sleep seconds="30" />
              <!--<echo message="${process.name} deployment logged to ${build_verbose.log}"/>
              <echo message="${process.name} deployment logged to ${build.log}"/> -->
         </target>
         <!-- *************************************************************************************** -->
    </project>
    SUMMARY OF ISSUE AT HAND:
    ~ Every bpel process w/ 1.0 revision deploys with no problems
    ~ At first I would get an invalid character error most likely due to the “!” preceding “Rev”, but then I decided to set rev=”false” in the build.xml file. That didn’t work quite well. In another attempt, I decided to leave the –Drev= attribute within the batch script blank. That still led to 1.0s going through. My next thought was deploying something other than a 1.0, such as 1.2 or 2.0 and that’s when I realized that if it wasn’t a 1.0, it refused to go through.
    QUESTIONS:
    1.     IS THERE A WAY TO HAVE ANT LOOK INTO THE BPEL PROCESS AND PULL THE REVISION ID?
    2.     WHAT ARE WE DOING WRONG? ARE WE MISSING ANYTHING?
    3.     DID WE GO TOO FAR? MEANING, IS THERE A MUCH EASIER WAY WE OVERLOOKED/FORGOT/OR DON’T KNOW ABOUT THAT EXISTS?
    Edited by: 793292 on Jul 28, 2011 12:38 PM

    Only thing i can think of is instead of using a MAC ACL , u cud jus use the default class
    Policy Map Test
    class class-default
    police 56000 8000 exceed-action drop
    Class Map match-any class-default (id 0)
    Match any
    You would be saving a MAC-ACL ;-).

  • BPEL with Oracle E-business suite 11.5.10

    Hi,
    We are in the process of testing BPEL with Oracle E-Business suite 11.5.10. What is the best document for configuring these two components.
    Thanks
    Giri

    I recommend you to read documentation about Oracle Applications adapter. This is good start from technical point of view. http://download-west.oracle.com/docs/cd/B14099_19/integrate.1012/b16498.pdf

  • Automating Business Process.. Workflow or BPEL??

    Dear All,
    I hope you help me in this:
    We need to automate all the business processes exists at the work. Currently we are using Oracle database and Oracle Forms and Reports to build all our applications.
    The developers are excellent at SQL and PL/SQL. There is not any knowledge about Java or any other programming language.
    Should Oracle Workflow be used to automate our business processes? Could it be used from Oracle Forms? or any other Oracle tools in general?
    Or we should go for Oracle BPEL instead of Oracle Workflow?
    I hope you help me in this
    Emad

    The idea is to automate everything. I am working in a university, so, there are many bunisess process such as:
    1. Hiring New Employee: starting from the request of hiring the new employee up to the approving of hiring and signing the contract with this new employee.
    2. Student Process: such as request to drop registered course, enrolling a closed course because of a special conditions... etc
    3. Employees Requests: could be software/hardware maintenance request, could be electrical maitenance...etc
    The nice thing that we (as IT department) has worked with the Quality unit at my work and we have documented every business process. So, now we know every business process from it will start and where it will end.
    Now, we need to automate this. There is a debation that our developers should develop this system. I have said NO, there are Workflow Engines exist in the IT world and we have to study them and choose the best one for our needs.
    We are using Oracle Database and Oracle Forms and Reports. We have excellent working experience in SQL and PLSQL.
    Honestly, I have been thinking of Oracle Workflow, but Oracle BPEL beckons me.
    Therefore, I am posting this thread for the sake of help from experts here who already has an excellent experience in this
    Waiting for your participations..
    Thanks

  • BPEL in PeopleSoft Data Conversion Process

    I am new to BPEL and my requirement is to use BPEL to extract data from PeopleSoft to flat files and load to a 3rd party external system. The same requirement used to be accomplished by SQR...
    Can someone advise how BPEL fits in this convesion process? I am reading documents but still not very clear. If there are any online resource, that would help too.
    Thanks in advance!
    Max

    1. what are the basic steps i need to manually configure in new box before i do LSMW --- depends on how system is setup - normally you define number ranges manually           
    2. what i need to do with number ranges so that assets will have the same asset numbers. --- Define you number ranges to generate numbers externally (not internally) and you can load the "old" SAP asset number in new box as it is.
    3.what are the steps to bring asset balances --- read LSMW and/or search on this forum. You will find lots of threads discussing the same.
    4. what are the steps to continue do depriciation in the new system from the remaining useful life ( Ex. Lets say i have asset worth 1000 dollers and use ful life is 5 yrs. lets say 2.5 yrs is depriciated and the current balance is 500. But now iam moving that asset to new instance so that it should continue from 2.6 month and continusly run depriciation.
    Once you load APC, Accum Depr and the original useful life of the old asset SAP will automatically start depreciating from the current month onwards based on the remaining useful life/months.
    Please always search on this forum before you ask.

  • How to create BPEL Guided Business Process

    I am using JDeveloper 11.1.1.3 with the updates for BPM Studio.
    I created an application with a SOA project with a SOA BPEL Process. When I opened the BPEL process, I can't find the "Activity Guide Properties" icon to open the "Edit Activity Guide" window to setup the "Activity Guide" as per the documentation:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e15176/soa_activity_guides.htm#insertedID7
    I looked through everywhere on the BPEL process screen and the menus but had no luck to find a way to open the "Edit Activity Guide" window.
    Anyone knows how to open the "Edit Activity Guide" window within the BPEL process ?

    I believe the documentation for createing a BPEL Guide Business Process may be incorrect
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e15176/soa_activity_guides.htm#CJAHCECC
    Incorrect #1: there is no "Activity Guide Properties" icon anywhere when the BPEL process is opened.
    (I am able to open the "Edit Activity Guide" window by clicking the "Activity Guide" node under the "BPM Project Navigator")
    Incorrect #2: There is no "Expose as Activity Guide" check box in the "Edit Activity Guide" window
    My hypothesis on setting up a Guided BPEL process is to set the set the BPEL process as the root process in the "Edit Activity Guide" window.
    This is based on how a Guided BPMN process is setup.
    However, the drop down listbox for the "Root Process" is empty even there is a BPEL process created in the project.
    As a result, I can't set the BPEL process to be the root process of the "Activity Guide".
    I am pretty sure there is no way you can create a Guided BPEL Business Process following the instructions in the above documentation link.
    Hopefully, I'll hear from some BPM guru from Oracle who can point out how to create a Guided BPEL Business Process using JDeveloper 11.1.1.3 with plug-ins for BPM Studio.

  • BPEL Component not spawning SOA processes

    I am trying to get a workflow running that passes a payload consisting of several ucm document metadata elements, a few custom elements, and the DocURL and idcReference to a SOA Composite with a BPEL Process on it.
    I have created the Composite in JDeveloper with the SOA plugin, and I have added <binding.adf registryName="" serviceName="soa"> to the service entry in the composite.xml just as the BPEL Component guide tell you to do.
    The BPEL Process wizard creates by default a <process_name>.xsd which is used as the payload for the process. It has 1 input field of type string. I replace that 1 field with dID, dDocName, dDocType, xFormType, xNotificationType, xPackageId, xSubmissionId, xBatchId, xBatchDate, docURL, and idcRef, all of type string.
    I have deployed it to soa-infra and created a Connection Configuration (tested, works) and Process Configuration with a Configuration ID of "soa" and an action pointing to my BPEL composite and process. I have created Mappings to the BPEL payload tying all of the pertinent UCM fields to their appropriate BPEL payload fields.
    I have created a criteria workflow with a step named SendToSOA which has scripts in it exactly like the example given in the BPEL Component Guide, except with "soa" where the Configuration ID should go instead of "process_3". I add another step afterward with review for the "weblogic" user so that I can look at the workflow before it finishes.
    I check in content of the appropriate type , and the workflow is engaged, and says that it passes the SendToSOA step, but when I go to soa-infra in EM and look to see if any new processes are spawned, I see no change. No errors or log messages are produced in any of the logs on the UCM or SOA Managed servers.
    I have rebuilt this process from the ground up about a hundred times. Once in a while, a deployment will start kicking off processes, with no consistent rhyme or reason. Sometimes, (maybe 1 time in 10) when I have built the BPEL component without changing the payload (meaning I can only pass one piece of data to my BPEL process....), the workflow will start spawning processes.
    Once, it started working randomly with a full payload, and it worked fine as a vehicle for 3 separate workflows for an entire day, spawning processes on SOA like a champ, but then because of a design change, I had to change the payload, and add 2 new fields. I deployed the changed BPEL process to SOA with the new payload, and when I went to the update the mappings on the Process Configuration, the Process configuration page made no effort to notice the new payload settings, and the Component Provides no way to tell the Process Configuration to update itself. At first I tried to update the payload in the <processconfiguration>.hda file under <domain>/ucm/cs/data/orabpel/process/, but when I did, the workflow stopped creating bpel processes on the SOA server. Then I tried deleting the configuration and rebuilding it, which did allow me to add the new payload fields in, but still, the workflow would not spawn SOA processes ever again.
    I have tried rebooting the UCM and/or SOA managed servers, I have tried rebooting them both, even between each configuration step. I have rebuilt everything from the ground up literally over a hundred times. I have tried it with changing the names of each of the components, from the composite to the bpel process to the adf binding service name to workflow. I have tried disabling and enabling the workflows, I have tries making the adf binding service name entirely unique, or matching the bpel wsdl client name, or matching the bpel process name, or matching the ucm process configuration id. I have tried many different ucm process configuration ids. I have tried simplifying the workflow script down to just <$obInvokeProcess("soa")$> or <$obConfigID="soa"$><$obInvokeProcess(obConfigID)$>. I have tried this whole process both on my development system and on a VM running UCM and SOA, both in linux and windows installations, the behavior is the same on both systems. I have tried it with Asynchronous, Synchronous and One-way BPEL processes.
    So far, there has been 5 instances of the workflow suddenly working without any explanation. twice with just the default single input payload created by the BPEL wizard in JDeveloper. Once when I had added one extra input field named input2 (string), but this was on the VM on my laptop, so not useful to my developement effert. I tried re-creating the exact same deployment on dev with the EXACT SAME steps, but on dev the workflow would not spawn SOA processes. Once, the process started working with only the script <$obConfigID="soa"$><$obInvokeProcess(obConfigID)$> in the Entry Eventof the workflow, and once with just <$obInvokeProcess("soa")$>, but trying to re-create this with full payloads failed.
    I am at wits end. there is little information on the internet or on otn or on Oracle Support or on intradoc_users yahoo group about the BPEL Component.
    Please help?

    Sorry for the confusion Vlad.
    With "And instance state is being shown as Running" i meant to say was : The instance state that we see in EM whenever we open our composite along with all other details like InstanceID,Name,ConversationIS etc.
    "BPEL component instance is not generated.": i meant to say was that whenevr we click on particular instanceid flow trace window pops up where we see the complete trace. I am here not able to see BPEL process .It didnt get invoke overall.
    Flow of BPEL as mentioned in my first post:
    1. DB is polled using DB adapter(logical delete)
    2. response from DB is passed to BPEL process for furthur processing.
    3. BPEL after some transformation publishes message in jms queue using JMS adapter.
    Hope it helps.
    Regards,
    Karan

  • [Urgent Help] How to call BPEL 10.1.3.3 process from JAVA Class?

    Dear all,
    we need to call a BPEL process of SOA Suite 10.1.3.3 from Oracle Portlet (OAS 10.1.2.0.2). I reviewed following technote, but it seems for BPEL 10.1.2:
    http://www.oracle.com/technology/obe/obe_as_1012/integration/bpel/initiate/bpel_initiate.htm
    My question is: does this solution still work on BPEL 10.1.3.3? If so, where I should deploy this app into, OAS or SOA Suite?
    Thank you.

    This must be still valid. I use the similar following code in to invoke 10.1.3.4 BPEL Process.
    Locator locator = new Locator("default","bpel");
    IDeliveryService deliveryService = (IDeliveryService)
    locator.lookupService(IDeliveryService.SERVICE_NAME );
    +// Construct a normalized message and send to Oracle BPEL Process Manager+
    NormalizedMessage nm = new NormalizedMessage();
    nm.addPart("payload", xml);
    +// Initiate the BPEL process+
    deliveryService.post("MyLoanFlow", "initiate", nm);
    The application you will develop will be J2EE application which will act as an invoker to your bpel process. You will deploy this on Application Server. When you will invoke this j2ee application, the bpel process will be initiated in turn.

  • OSB exception while calling BPEL (10.1.3.4) process

    Hi all,
    I have some problem when I try to test a Business Service on OSB that call a BPEL process.
    I have seen in some discussion concerning this error at run-time:
    20 mars 2009 17:29:54 oracle.j2ee.rmi.RMIMessages EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER
    ATTENTION: Exception returned by remote server: {0}
    com.evermind.server.rmi.RMIConnectionException: Disconnected: javax.xml.namespace.QName; local clas
    m classdesc serialVersionUID = 4418622981026545151, local class serialVersionUID = -912044875489660
    at com.evermind.server.rmi.RmiCallQueue.notifyQueuedThreads(RmiCallQueue.java:70)
    at com.evermind.server.rmi.RMIClientConnection.notifyQueuedThreads(RMIClientConnection.java
    at com.evermind.server.rmi.RMIClientConnection.resetState(RMIClientConnection.java:147)
    at com.evermind.server.rmi.RMIConnection.receiveDisconnect(RMIConnection.java:236)
    at com.evermind.server.rmi.RMIClientConnection.receiveDisconnect(RMIClientConnection.java:1
    at com.evermind.server.rmi.RMIConnection.handleOrmiCommand(RMIConnection.java:208)
    at com.evermind.server.rmi.RMIClientConnection.processReceivedCommand(RMIClientConnection.j
    at com.evermind.server.rmi.RMIConnection.handleCommand(RMIConnection.java:152)
    at com.evermind.server.rmi.RMIConnection.listenForOrmiCommands(RMIConnection.java:127)
    at com.evermind.server.rmi.RMIConnection.run(RMIConnection.java:107)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:830)
    at java.lang.Thread.run(Thread.java:619)
    I found a few things about that, in particular this metalink note (about a patch to apply) :
    https://metalink2.oracle.com/metalink/plsql/f?p=130:14:1155360189717582688::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,788141.1,1,1,1,helvetica
    I successfully installed the patch but everything remains the same, I get the same error ...
    Any Ideas ?
    Thanks Anthony

    I managed to do the same without updating the default jdk to 1.5.0_16/17. The entire process involved a lot of patches both to the Oracle SOA Suite v10.1.3.4.0 and Oracle Service Bus 10gR3. I am listing the steps I followed and the references.
    Steps for modifying the environment
    On SOA Suite
    1. Apply patch 6880880 from metalink. This is just an upgrade to the Opatch utility to handle patches for GENERIC_PLATFORMS
    2. Apply patch 7586063 (Reference 1)
    3. Apply patch 5507491 (Reference 1)
    On OSB
    1. Update SetDomainEnv.bat (Reference 2)
    2. Update bpel10gtransport.ear (Reference 2)
    The references mentioned above are as follows:
    1. [https://metalink2.oracle.com/metalink/plsql/f?p=130:14:1970391832150201494::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,788141.1,1,1,1,helvetica]
    2. [http://biemond.blogspot.com/2009/03/calling-async-bpel-services-from-osb.html]
    After the changes, the process mentioned in (2) should work
    Hope this is helpful for someone!

  • Correlation Exception - BPEL - Proxy Service and Business Service

    Hi All ,
    Correlation exception
    Flow - BPEL - Proxy - Business service
    We are invoking a proxy service from a bpel process with a correlation set(property set as Yes)) and it works absolutely fine when the service is available But the problem occurs when the service is down or a remote fault occurs.
    In the fault policy we had an action saying that retry three times but when it retries three times with the same correlation set
    <Action id="ora-retry">
    <retry>
    <retryCount>3</retryCount>
    <retryInterval>2</retryInterval>
    <exponentialBackoff/>
    <retryFailureAction ref="ora-human-intervention"/>
    <retrySuccessAction ref="ora-terminate"/>
    </retry>
    </Action>
    It was throwing an correleation exception.
    since it was hitting the service wth same correletion set it was throwing an error. Is there any way i can retry for the same service with out exception
    Thanks,
    Raja
    Edited by: user12893766 on Oct 1, 2010 3:30 AM

    1. No it can be any kind of request: binary, text, xml...
    2. ALSB support a lot of different transport/protocols:
    EMAIL, FTP, FILE, HTTP, JMS, EJB, TUXEDO. In ALSB 3.0 we will add support for ERPs: SAP, SIEBL ..., MQ native and SFTP
    3. It depends on the transport. For example for file, the client drops a file in the file system, for http it opens a http connection to the URL http://host:port/address etc...
    4. TCP/Socket transport is provided as a sample transport in ALSB 2.5 and 2.6. You can look in the weblogic92/samples/servicebus folder. You can also write your own transport if you like. There is a public SDK.

  • BPEL Integration with  Siebel CRMOD ServiceRequest.wsdl

    Hi All,
    Iam trying connect to Siebel CRMOD webservice which is across SSL to create an Service Request.I have a ServiceRequest.wsdl with me, What is best practices to follow to create Service Request in seibel, How does the username and password passed to siebel and do we need to install the crmod certificate in the weblogic server.Please let me know, I many trying out many options without getting any results.
    thanks
    Krishnaveni

    Hi Vikky,
    Make sure that your BPEL wsdl has only one schema element.
    If you have many imports with each in one schema element ...modify them and put all in one schema element.
    And another thing is your request XSD should in same folder where you are placing BPEL WSDL.
    Regards
    PavanKumar.M
    Edited by: pavan4s on Aug 3, 2010 9:31 PM

  • Can the time out for loading a page be extended for busy sites?

    (Error:)
    Problem loading page
    The connection has timed out
    The server at xxx.xxx is taking too long to respond.
    * The site could be temporarily unavailable or too busy. Try again in a few moments.
    Question: Is there a way to extend the time out for sites which are known to be busy?

    This issue appears under two different Mozzila "Questions". Both appear to have the same OUTDATED, INEFFECTIVE ANSWERS. A lot of us are on WIN7 now and still have erratic network speeds due to cable multiplexing -- but have been trained to leave the registry alone. Has not anyone solved this problem -- other than going notoriously unreliable FIOS ??

  • BPEL Error in SOA approval process

    Hi,
    In my composite workflow, i
    have added a java code to get manager email id from manager login to send an email notification to manager.
    I have set Oimclient.jar and Jps-manifest.jar in class path and successfully deployed the workflow.
    When i have run my approval process, the request id status is Failed and when i see the log in Enterprise manager getting the following error
    <bpelFault><faultType>0</faultType><runtimeFault xmlns="http://schemas.oracle.com/bpel/extension">
    <part name="summary"><summary>oracle/iam/platform/OIMClient</summary></part><part name="detail">
    <detail>java.lang.NoClassDefFoundError: oracle/iam/platform/OIMClient at orabpel.approvalprocess.ExecLetBxExe6.execute(ExecLetBxExe6.java:177) at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELxExecWMP.__executeStatements(BPELxExecWMP.java:42) at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:158) at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2543) at com.collaxa.cube.engine.CubeEngine._handleWorkItem(CubeEngine.java:1165) at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1071) at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:73)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:220) at
    Thanks,
    Madhavi
    Edited by: Madhavi Panuganti on Mar 13, 2012 3:39 AM

    we have set the bpelc class path
    then we have added oimclient.jar to SCA-INF/lib in OIM_HOME/workflows/new-workflow/process-template/<Workflowname>/SCA-INF/lib
    intially we created the project in OIM server machine and zipped it and taken it to my localbox (where my Jdeveloper exists) i have customized the workflow and deployed the same to SOA server, i only set the jasr files in project properties section
    Now am i adding the oimclient.jar at correct place...
    pls respond

Maybe you are looking for

  • Having trouble with creation of a cloud service with multiple virtual machines using java sdk.

    I am creating a cloud service on azure with 2 virtual machines using java sdk API. Service created successfully. My input endpoint details are as follows. INPUT ENDPOINTS Head : 191.238.144.47:2400 Head : 191.238.144.47:22 Node0 : 191.238.144.47:4321

  • Deploy Acrobat Reader 10.1.3 via MSI Group Policy

    The purpose of this thread is to identify EASIEST way to create/obtain an MSI file of the LATEST VERSION of Acrobat Reader (currently 10.1.3 as of 7/19/2012) to be deployed via GPO.  I am not concerned with customizations of Reader settings as I have

  • Free Personnal Java VM for Linux Familiar on ipaq H3800

    I would like to known if there is a free virtual machine and personnal profile to download for arm familiar linux on Ipaq H3800? Otherwise, I am interrested by speaking with someone that has always compiling the sun Personnal Profile source for this

  • Sent messages re-appearing from years ago.

    Today I checked for something I sent over the weekend in my Sent items in the Mail client on my Mac, and discovered that a lot of emails I sent over a year ago (up to 3 years ago) have magically appeared in my sent mail as having been sent only a cou

  • Drivers for Import and Export Wizard

    How do I load the drivers for adding Excel and Access to the Data Sources options in the Import Export wizard?