Hi,
I am trying to get the initial context and I have written this piece of code.
This works fine with Websphere APplication server installed on NT but wheb I try to connect to Websphere APplication server installed on Solaris, It fails, and the error
returned is..
javax.naming.CommunicationException. Root exception is org.omg.CORBA.COMM_FAILURE: minor code: 1 completed: No
any help please..
The code I ahve written is :
properties.put(Context.PROVIDER_URL,"iiop://"+strHostName+":"+strPort);
properties.put(Context.INITIAL_CONTEXT_FACTORY,com.ibm.ejs.ns.jndi.CNInitialContextFactory);
ic = new InitialContext(properties);
thanks in advance.