Hi All,
I set up a WL 6.1 server, having JDBC Oracle Thin connection, host the
server and tested the database connection, it gave
java.lang.NullPointerException at weblogic.rjvm.RJVMManager.findOrCreate
(RJVMManger.java:191).
So just curious and tested the t3client and got the same exception.
Any idea??
David
T3Client t3 = null;
try {
t3 = new T3Client( "t3://scourdev.centerspan.com:80" );
t3.connect();
String wsid = t3.services.workspace().getWorkspace().getID();
t3.disconnect();
t3 = null;
System.out.println("WS client id " + wsid );
} catch ( Exception e ) {
e.printStackTrace();
}
java.lang.NullPointerException
at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:191)
at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer
(RJVMFinder.java:180
)
at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:149)
at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:207)
at weblogic.common.T3Client.connect(T3Client.java:370)
at t3.main(t3.java:8)