[jboss-cvs] JBossAS SVN: r62396 - in branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test: webservices/jsr181 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Apr 18 06:05:28 EDT 2007


Author: wolfc
Date: 2007-04-18 06:05:27 -0400 (Wed, 18 Apr 2007)
New Revision: 62396

Modified:
   branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/jaxws/EndpointEJB.java
   branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/webservices/jsr181/EJB3Bean.java
Log:
EJBTHREE-944: explicitly set a context root

Modified: branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/jaxws/EndpointEJB.java
===================================================================
--- branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/jaxws/EndpointEJB.java	2007-04-18 10:04:26 UTC (rev 62395)
+++ branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/jaxws/EndpointEJB.java	2007-04-18 10:05:27 UTC (rev 62396)
@@ -36,7 +36,7 @@
 import org.jboss.ws.annotation.WebContext;
 
 @WebService(endpointInterface = "org.jboss.ejb3.test.jaxws.EndpointInterface", serviceName = "TestService", targetNamespace = "http://org.jboss.ws/jaxws/context")
- at WebContext(urlPattern="/*")
+ at WebContext(contextRoot="jaxws-context", urlPattern="/*")
 @Stateless
 public class EndpointEJB
 {

Modified: branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/webservices/jsr181/EJB3Bean.java
===================================================================
--- branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/webservices/jsr181/EJB3Bean.java	2007-04-18 10:04:26 UTC (rev 62395)
+++ branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/webservices/jsr181/EJB3Bean.java	2007-04-18 10:05:27 UTC (rev 62396)
@@ -35,7 +35,7 @@
  * @version $Revision$
  */
 @WebService(name = "EndpointInterface", targetNamespace = "http://www.openuri.org/2004/04/HelloWorld", serviceName = "TestService")
- at WebContext(urlPattern="/*")
+ at WebContext(contextRoot="jsr181", urlPattern="/*")
 @SOAPBinding(style = SOAPBinding.Style.RPC)
 @Remote(EJB3RemoteInterface.class)
 @RemoteBinding(jndiBinding = "/ejb3/EJB3EndpointInterface")




More information about the jboss-cvs-commits mailing list