Oracle SOA Suite 11g, Enable logging for EDN events


By default the logging for the events are turned off.
Connect to your DEV_SOAINFRA schema and execute :
1DECLARE
2  ENABLED NUMBER;
3BEGIN
4  ENABLED := 1;
5 
6  EDN_ENABLE_LOGGING(
7    ENABLED => ENABLED
8  );
9END;
Trigger a new business event and select the logging in the ‘EDN_LOG_MESSAGES_TABLE’ (select * from edn_log_messages)

No comments:

Post a Comment