Tema: J2ee
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/02/2009, 09:38
FabianIB
 
Fecha de Ingreso: marzo-2008
Mensajes: 18
Antigüedad: 16 años, 10 meses
Puntos: 0
Respuesta: J2ee

Listo! por si alguien lo ocupa:

En el archivo ejb-jar.xml (dentro de META-INF, en la carpeta del ejb) cree una referencia:


Código HTML:
 <resource-ref id="ResourceRefBinding_1">
				<description></description>
				<res-ref-name>jdbc/potala</res-ref-name>
				<res-type>javax.sql.DataSource</res-type>
				<res-auth>Application</res-auth>
				<res-sharing-scope>Shareable</res-sharing-scope>
			</resource-ref> 
Luego en el archivo ibm-ejb-jar-bnd.xmi agregue el mapeo de la referencia antes creada, al JNDI que tengo en el servidor WebSphere:

Código HTML:
 <resRefBindings xmi:id="ResourceRefBinding" jndiName="jdbc/NombreJNDIaqui">
      <bindingResourceRef href="META-INF/ejb-jar.xml#ResourceRefBinding_1"/>
    </resRefBindings> 
(lo anterior dentro del tag <ejbBindings>)

En el bindingResourceRef, se coloca el resource-ref que creamos en el ejb-jar.xml.

Última edición por FabianIB; 27/02/2009 a las 13:51