Posted By:
Peter_Michel
Posted On:
Friday, July 4, 2003 01:24 AM
Hallo! I'm developing a Client-Server-Application using an Applet and EJB's (1.1). At the moment I'm using JBoss Application Server. Our customer uses a Websphere Application Server, so I have to be sure that it' will run there without problems. At the moment I hav ethe following to get a naming-context: java.util.Properties jndiProps = new java.util.Properties() ; jndiProps.setProperty("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory" ) ; jndiProps.setProperty("java.naming.provider.url", myServer ) ; Context ctx = new InitialContext(jndiProps); The Applet uses the
More>>
Hallo!
I'm developing a Client-Server-Application using an Applet and EJB's (1.1). At the moment I'm using JBoss Application Server.
Our customer uses a Websphere Application Server, so I have to be sure that it' will run there without problems.
At the moment I hav ethe following to get a naming-context:
java.util.Properties jndiProps = new java.util.Properties() ;
jndiProps.setProperty("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory" ) ;
jndiProps.setProperty("java.naming.provider.url", myServer ) ;
Context ctx = new InitialContext(jndiProps);
The Applet uses the Java2 Plugin an accesses the JBoss-Client-jar-files.
I browsed through several web pages and i read, that the only thing I have to do is to exchange the client-jar-files to those of Websphere. On my side of code nothing should change.
Can anybody tell me if this information is correct?
I don't have any experience with Websphere.
Thanks for you answers.
Peter
<<Less