http://download.oracle.com/docs/cd/B31017_01/web.1013/b28952/mbeans.htm#CIHFDJBJ
I found that in the example the service URL was specified incorrectly.
// Create a variable for a URL containing data needed to access
// the connection target; in this case, an OPMN-managed OC4J instance
String url="service:jmx:rmi///opmn://opmnhost1.company.com:6003/home"
It is missing the : in the service URL. The correct way is shown below you will see the : added after rmi. A documentation bug has been filed.
Eg:
private String url="service:jmx:rmi:///opmn://papicell-au2.au.oracle.com:6003/home";
No comments:
Post a Comment