dblevins 2004/12/16 01:20:33
Modified: modules/openejb-builder/src/test-ejb-jar/META-INF
ejb-jar.xml
Added: modules/openejb-builder/src/test-ejb-jar/META-INF
webservices.xml
Log:
Added service-endpoint to testing jar along with webservices.xml
Revision Changes Path
1.2 +1 -0
openejb/modules/openejb-builder/src/test-ejb-jar/META-INF/ejb-jar.xml
Index: ejb-jar.xml
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/openejb-builder/src/test-ejb-jar/META-INF/ejb-jar.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ejb-jar.xml 10 Nov 2004 01:35:16 -0000 1.1
+++ ejb-jar.xml 16 Dec 2004 06:20:33 -0000 1.2
@@ -13,6 +13,7 @@
<remote>org.openejb.test.simple.slsb.SimpleStatelessSession</remote>
<local-home>org.openejb.test.simple.slsb.SimpleStatelessSessionLocalHome</local-home>
<local>org.openejb.test.simple.slsb.SimpleStatelessSessionLocal</local>
+
<service-endpoint>org.openejb.test.simple.slsb.SimpleStatelessSessionEndpoint</service-endpoint>
<ejb-class>org.openejb.test.simple.slsb.SimpleStatelessSessionEJB</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
1.1
openejb/modules/openejb-builder/src/test-ejb-jar/META-INF/webservices.xml
Index: webservices.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<webservices xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:test="http://openejb.org/test-ejb-jar"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://www.ibm.com/webservices/xsd/j2ee_web_services_1_1.xsd"
version="1.1">
<webservice-description>
<webservice-description-name>SimpleEJBTest</webservice-description-name>
<wsdl-file>META-INF/wsdl/test-ejb.wsdl</wsdl-file>
<jaxrpc-mapping-file>META-INF/wsdl/test-ejb.xml</jaxrpc-mapping-file>
<port-component>
<port-component-name>Simple</port-component-name>
<wsdl-port>test:SimplePort</wsdl-port>
<service-endpoint-interface>org.openejb.test.slsb.SimpleStatelessSessionEndpoint</service-endpoint-interface>
<service-impl-bean>
<ejb-link>SimpleStatelessSession</ejb-link>
</service-impl-bean>
</port-component>
</webservice-description>
</webservices>