DBA Data[Home] [Help]

SYS.DBMS_DEBUG_JDWP_CUSTOM dependencies on DBMS_DEBUG_JDWP

Line 1: package body dbms_debug_jdwp_custom is

1: package body dbms_debug_jdwp_custom is
2:
3: -- This is the default implementation of the custom package
4: -- procedure that will be invoked to process a debug connection request
5: -- that arrives in the form of an ORA_DEBUG_JDWP environment variable.

Line 26: -- (DBMS_DEBUG_JDWP_CUSTOM and CONNECT_DEBUGGER respectively). The

22: -- by installing the same package (specification and body) with a procedure
23: -- of the same name in his own schema. He may customize the number and
24: -- names of the arguments to the package procedure. Only the names of
25: -- the package and of the procedure need to remain the same (namely
26: -- (DBMS_DEBUG_JDWP_CUSTOM and CONNECT_DEBUGGER respectively). The
27: -- programmer's customized version of the package may contain overloaded
28: -- versions of the procedure CONNECT_DEBUGGER with different arguments.
29: --
30: procedure connect_debugger(host varchar2,

Line 50: -- dbms_debug_jdwp.connect_tcp(host => host,

46: -- if (utl_inaddr.get_host_address(host) != '123.45.67.89') then
47: -- raise_application_error(-20000,
48: -- 'debug connection to ' || host || ' no permitted');
49: -- else
50: -- dbms_debug_jdwp.connect_tcp(host => host,
51: -- port => port,
52: -- debug_role => debug_role,
53: -- debug_role_pwd => debug_role_pwd,
54: -- option_flags => option_flags,

Line 59: dbms_debug_jdwp.connect_tcp(host => host,

55: -- extensions_cmd_set =>
56: -- extensions_cmd_set);
57: -- end if;
58: --
59: dbms_debug_jdwp.connect_tcp(host => host,
60: port => port,
61: debug_role => debug_role,
62: debug_role_pwd => debug_role_pwd,
63: option_flags => option_flags,