Feeds:
Posts
Comments

Archive for the ‘Bpel’ Category

In our last EDI project we had to use some Human Tasks and Web Forms for User’s interactions.
For one of the tasks, I had to pass from a bpel process (in the payload) a coded HTML to the ADF form.
On the first try it didn’t work.
After a short check, I found that in order to make it happen, I had to add an attribute (in the field output text) call escape with “false” value.
So, to show HTML on the ADF, just edit the line as follows:

<af:outputText escape=”false” value=”#{bindings.HTML_HEADER.inputValue}” id=”xx1″/>

 

That worked great.

Good Luck!

Read Full Post »

While running Bpel processes you might run into the following errors:

Transaction Rolledback.: weblogic.transaction.internal.TimedOutException: Transaction timed out

….

(more…)

Read Full Post »

The following is a simple example of using Java Embedding Activity in Bpel 11g.
In this example, I used a simple asynch’ process, and assign the input parameter into the output parameter.
To implement this example you have to:

(more…)

Read Full Post »

When the Java Embedding activity is being used, you sometimes want to print a message that will be displayed in EM.

To do so, use the following expression (inside the Java Embedding Activity):

addAuditTrailEntry(“TEST 123” );

The printed message will be shown in the process flow.

 

 

 

Read Full Post »

« Newer Posts