edn

Oracle Event Delivery Network, subscription of a Database Agent

In the Oracle SOA Suite we can create events by use of the Event Driven Network (EDN). See my one of my last articles on how to produce such an event from with plsql or how to produce it from bpel. The next step in the process is to consume these events and execute business logica based on them. In the SCA composite applications we can use the Mediator to subscribe to the defined events and route them further on to other components in the process (for example bpel). In the Enterprise...

Oracle Event Delivery Network, produce events from within plsql

With the release of the soa suite 11g Oracle supplies us the EDN component, Event Delivery Network. Basically it supplies us a publish/subscribe model to trigger and subscribe on defined business events. For this little demo a created the next event definition [sourcecode language="xml"] [/sourcecode] To 'throw' the events we can make use of both the java and plsql apis. For this demo i will shorty show how to trigger them from bpel/the console and a...