I'm trying to use the bpel extension for eventhandling under the soa suite 11g ps3. I'm trying to subscribe to an event from the event delivery network but I get an error.
That's the code:
<eventHandlers>
<onEvent bpelx:eventName="ns4:discountEvent" variable="discEvent" >
<scope name="Scope1">
<sequence name="Sequence1">
<exit name="Exit1"/>
</sequence>
</scope>
</onEvent>
</eventHandlers>
The compiler is giving me the following error:
Error(52): Activity <bpel:onEvent> must have "element", "messageType" attribute present.
I can't find any information on using the extension in an "onEvent" activity.
Any help appreciated!
Thanks, Chris
Event handlers work slightly different than other interaction activities. While receive, invoke etc. work on previously defined variables, the event handler defines its own variable which is visible in the scope of the onEvent's child activity. In order to give this variable a type, either a messageType or an element needs to be identified to be the declared type of the variable. This is why element or messageType is needed.
Please find below the related quote of the BPEL 2.0 spec: