Monthly Archives: May 2013
Exception while deploying UI project associated with a Human Task
Hi You may sometimes encounter an exception while deploying the ADF UI project associated with a Human Task. Exception looks like this: Weblogic Server Exception: weblogic.application.ModuleException:Caused by: weblogic.common.ResourceException: java.security.PrivilegedActionException: weblogic.common.ResourceException: java.security.PrivilegedActionException: weblogic.common.ResourceException: No credential mapper entry found for password indirection … Continue reading
My Notes – ‘Message throw & catch’ VS ‘Message Send & Receive’ tasks – Oracle BPM Suite 11g
Both ‘Message throw & catch’ VS ‘Message Send & Receive’ tasks are used to invoke services/Processes asynchronously. That is, once a throw task is executed or a Send task is executed, the token does not wait for the response, rather, … Continue reading
My Notes – Manual Task :: Oracle BPM Suite 11g
Manual task is something which is not managed by BPM runtime, but stil you may want to represent a particular manual activity in BPMN diagram.For example, in a process, there may be a step where you need signature of the … Continue reading
Starting a BPM Process : Oracle BPM Suite 11g
A BPM Process can be started/triggered in one of the following ways 1. A Start event of type Message / Signal / Timer2. A none start event followed by a User task with Initiator pattern3. A none start event followed … Continue reading
Manual Process VS Reusable Process : Oracle BPM Suite 11g
When you try to create a BPM Process, the editor gives you 4 optionsSynchronous ProcessAsynchronous ProcessManual ProcessReusable Process The first 2 are obvious, with begin and end activities as ‘Message Type’But both Manual and Reusable processes has begin and end … Continue reading
Grouping XML elelments using XSLT – xsl:for-each-group
This is an informal post on XSLT for-each-group which is very powerful function to group xml elements based on some criteria. For Ex, you may want to convert a flat structure, typically returned by DB into an xml which is, … Continue reading