I'm starting to work with EJB 3 in my first scenario I created a ejb 3 I've deployed on JBoss from a Java client and I connected to the well and everything worked properly.
My problem is that I want the same ejb, deploy on Websphere 7 and also able to work from a Java client, but I can not get it. After trying many possibilities failed to connect.
I pass the code to see what I'm doing wrong:
package src;
import javax.ejb.Stateless;
@Stateless
public class Test implements TestRemote {
public void mensaje(String msg){
System.out.println("Hola Mundo EJB " + msg);
}
}
package src;
import javax.ejb.Remote;
@Remote
public interface TestRemote {
public void mensaje(String msg);
}
This is my ejb, exported in a jar file and deploy it on my server Websphere.
And this is my Java client:
package com.mio;
import java.util.Hashtable;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import src.TestRemote;
public class Controlador {
public static void main(String[] args) {
String jndi = "Test/remote";
String initialContextFactory=
"com.ibm.websphere.naming.WsnInitialContextFactory";
String providerUrl = "corbaloc:iiop:localhost:2809";
Hashtable<String, String> environment = new Hashtable<String, String>();
environment.put(Context.INITIAL_CONTEXT_FACTORY, initialContextFactory);
environment.put(Context.PROVIDER_URL, providerUrl);
try {
Context ctx = new InitialContext (environment);
TestRemote bean = (TestRemote) ctx.lookup(jndi);
System.out.println("OK Contexto");
bean.mensaje("OK");
} catch (NamingException e){
e.printStackTrace();
}
}
}