
18/05/2007, 02:33
|
| | Fecha de Ingreso: mayo-2007
Mensajes: 4
Antigüedad: 17 años, 10 meses Puntos: 0 | |
problemas con el contexto al llamar al home de un ejb de entidad Tengo 2 ejb de entidad, la fabrica de jndi es jdbc/default y el jndi de uno es "ejb/pruebas/clienteLocalHome"
Llamo de la siguiente forma al home:
Context jndiContext = new InitialContext();
Object objref = jndiContext.lookup("ejb/pruebas/ProvinciaLocalHome");
ProvinciaLocalHome clientefac = (ProvinciaLocalHome)PortableRemoteObject.narrow(ob jref, ProvinciaLocalHome.class);
Me da el siguiente error:
javax.naming.NameNotFoundException: Context: localhost/nodes/localhost/servers/server1, name: ejb/pruebas/ProvinciaLocalHome:
First component in name ejb/pruebas/ProvinciaLocalHome not found. Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0
Alguien me puede decir como llamarlo correctamente.
Estoy utilizando websphere 5.1.2
Gracias. |