Tag Archives: BPEL

Running Mediator instances issue

We encountered an issue with one of our clients when the SOA Purge wasn’t being very effective due to the running mediator instances even though the rest of the flow trace had completed, This wasn’t an issue for business as such however in most cases caused them to fall out of the criteria for Purge […]

read more

SOA 11g SOA Infra DB states for SOA Composites and Components

I found this extremely useful list of states for SOA 11g composites and various components in the SOA INFRA DB which we have benefited greatly in various engagements, so I thought it was worth sharing with you all.   COMPOSITE_INSTANCE States State Description 0 Running 1 Completed 2 Running with faults 3 Completed with faults 4 […]

read more

Duplicate instances when using DB adapter in high availability environment.

Many a times I have noticed that when you use DB Adapters (SOA Suite 11g) for integrating with applications like the E Business Suite in a clustered high availability environment, at times there will be multiple instances for the same request. The number of instances each entry in the DB would generate would directly correlate […]

read more

SOA 11g – Useful SOA Infra DB Queries [Advanced users]

Sometimes you want to identify all the faults for the messages that were sitting in BPEL Engine Level recovery as undelivered Invokes. We can run this SQL on the SOA Infra Schema to obtain this info. select wif.* FROM WI_FAULT WIF WHERE wif.cikey IN (SELECT ci.cikey FROM Dlv_Message dlv, cube_instance ci WHERE dlv.State = 0 AND […]

read more

BPEL vs Oracle Service Bus/Mediator

In continuation to my previous post about comparision between Oracle Service Bus (OSB formerly ALSB) and Mediator (formerly OESB) I thought I would like to extend it a bit to include the comparision with BPEL as well. BPEL Process Manager is the primary composition, orchestration and process engine in the SOA Suite. primarily used for stateful and […]

read more

Weblogic transaction timed out after 302/603 seconds issue

Problem: Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out after 603 seconds A lot of you might have encountered an issue of Weblogic transaction timed out after 302/603 etc seconds. We have been struggling with this for some time as well. Non Recoverable System Fault : Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out after 603 seconds BEA1-3FB6FB464035C13E3227 at […]

read more

Migrating SOA Suite 10 g components to SOA suite 11g

Hi Patrons, I have been working on some very exciting assignments offlate and one of the key ones which would like to share is the Migration from SOA suite 10g to SOA suite 11g. There are various options for this including using Jdeveloper and ant script. I prefer using a mix of both. I would […]

read more

Using Oracle BPEL Process Manager with Oracle Service Bus part 2

Calling OSB service from BPEL process In my previous post, I already talked about calling BPEL services from OSB. In this blog entry I will show you how to call an synchronous OSB proxy service from BPEL. If you have problems to get this working, please see my previous blog entry how to solve this. […]

read more

Using Oracle BPEL Process Manager with Oracle Service Bus – Part 1

Caliing BPEL processes from OSB Synchronus and Asynchronus With OSB 10.3 ( BEA Aqualogic Service Bus ) you can call BPEL services with the ormi or opmn protocol ( just like OESB ). With version 10.3, OSB support the bpel 10.1.3.4 transport. In this postI will show you how to call the BPEL services from […]

read more