Hi everyone.
Is it possible for a servlet deployed in orion talk to other app server
to access its beans? if so, how? what is the requirement?
I have got Orion using JNDI to use another Orion's bean, my main concern
is the fact that when initiating the JNDI context, I would have to
setthe property:
Properties props = new Properties();
props.put("java.naming.factory.initial",
"com.evermind.server.rmi.RMIInitialContextFactory");
props.put("java.naming.provider.url", provider.getPath());
props.put("java.naming.security.principal",
provider.getRemoteLogin());
props.put("java.naming.security.credentials",
provider.getRemotePasswd());
props.put("dedicated.connection","true");
props.put("classLoader",StampHome.class.getClassLoader());
context = new InitialContext(props);
What if talking with weblogic? I would have to change the
ContextFactory..can I download any impl from weblogic and use it (for
free) ?
If you can help, please reply Asap, thanks a million!
James.