Oracle SOA Suite 11g, Enable logging for EDN events
May 9, 2010 1 Comment
By default the logging for the events are turned off.
Connect to your DEV_SOAINFRA schema and execute :
DECLARE
ENABLED NUMBER;
BEGIN
ENABLED := 1;
EDN_ENABLE_LOGGING(
ENABLED => ENABLED
);
END;
Trigger a new business event and select the logging in the ‘EDN_LOG_MESSAGES_TABLE’ (select * from edn_log_messages)

Pingback: Oracle SOA Suite 11g, Enable logging for EDN events | Oracle .. Java .. OpenSource .. SOA