[jbossws-commits] JBossWS SVN: r3292 - in trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples: oneway and 2 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed May 30 03:07:01 EDT 2007


Author: thomas.diesler at jboss.com
Date: 2007-05-30 03:07:01 -0400 (Wed, 30 May 2007)
New Revision: 3292

Modified:
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointJAXBImpl.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceDocImpl.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceRpcImpl.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/oneway/PingEndpointImpl.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocBareServiceImpl.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocWrapped.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocWrappedServiceImpl.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleSEI.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.java
   trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/webmethod/TestEndpointImpl.java
Log:
Fix sample service names

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointJAXBImpl.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointJAXBImpl.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointJAXBImpl.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -33,7 +33,7 @@
 
 import org.jboss.logging.Logger;
 
- at WebService(name = "SOAPEndpoint", targetNamespace = "http://org.jboss.ws/jaxws/samples/logicalhandler")
+ at WebService(name = "SOAPEndpoint", serviceName = "SOAPEndpointService", targetNamespace = "http://org.jboss.ws/jaxws/samples/logicalhandler")
 @HandlerChain(file = "jaxws-server-jaxb-handlers.xml")
 public class SOAPEndpointJAXBImpl
 {

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceDocImpl.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceDocImpl.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceDocImpl.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -33,7 +33,7 @@
 
 import org.jboss.logging.Logger;
 
- at WebService(name = "SOAPEndpointDoc", targetNamespace = "http://org.jboss.ws/jaxws/samples/logicalhandler")
+ at WebService(name = "SOAPEndpointDoc", serviceName = "SOAPEndpointDocService", targetNamespace = "http://org.jboss.ws/jaxws/samples/logicalhandler")
 @HandlerChain(file = "jaxws-server-source-handlers.xml")
 public class SOAPEndpointSourceDocImpl
 {

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceRpcImpl.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceRpcImpl.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceRpcImpl.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -31,7 +31,7 @@
 
 import org.jboss.logging.Logger;
 
- at WebService(name = "SOAPEndpointRpc", targetNamespace = "http://org.jboss.ws/jaxws/samples/logicalhandler")
+ at WebService(name = "SOAPEndpointRpc", serviceName = "SOAPEndpointRpcService", targetNamespace = "http://org.jboss.ws/jaxws/samples/logicalhandler")
 @HandlerChain(file = "jaxws-server-source-handlers.xml")
 @SOAPBinding(style = Style.RPC)
 public class SOAPEndpointSourceRpcImpl

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/oneway/PingEndpointImpl.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/oneway/PingEndpointImpl.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/oneway/PingEndpointImpl.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -34,7 +34,7 @@
  * @author Thomas.Diesler at jboss.org
  * @since 07-Oct-2005
  */
- at WebService (name="PingEndpoint")
+ at WebService (name="PingEndpoint", serviceName="PingEndpointService")
 @SOAPBinding(style = SOAPBinding.Style.RPC)
 public class PingEndpointImpl
 {

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocBareServiceImpl.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocBareServiceImpl.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocBareServiceImpl.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -36,7 +36,7 @@
  * @author <a href="mailto:jason.greene at jboss.com">Jason T. Greene</a>
  * @since 16-Oct-2005
  */
- at WebService(name = "DocBare")
+ at WebService(name = "DocBare", serviceName="DocBareService")
 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
 public class DocBareServiceImpl
 {

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocWrapped.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocWrapped.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocWrapped.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -38,8 +38,7 @@
 
    @WebMethod(operationName = "SubmitNamespacedPO")
    @WebResult(name = "NamespacedPurchaseOrderAck", targetNamespace = "http://namespace/result")
-   public PurchaseOrderAck submitNamespacedPO(
-         @WebParam(name = "NamespacedPurchaseOrder", targetNamespace = "http://namespace/purchase")
-         PurchaseOrder purchaseOrder, @WebParam(name = "NamespacedString", targetNamespace = "http://namespace/string")
-         String string);
+   public PurchaseOrderAck submitNamespacedPO(@WebParam(name = "NamespacedPurchaseOrder", targetNamespace = "http://namespace/purchase")
+   PurchaseOrder purchaseOrder, @WebParam(name = "NamespacedString", targetNamespace = "http://namespace/string")
+   String string);
 }
\ No newline at end of file

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocWrappedServiceImpl.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocWrappedServiceImpl.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/DocWrappedServiceImpl.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -33,7 +33,7 @@
  * @since 16-Oct-2005
  */
 
- at WebService(endpointInterface = "org.jboss.test.ws.jaxws.samples.soapbinding.DocWrapped", name="DocWrapped")
+ at WebService(name="DocWrapped", serviceName="DocWrappedService", endpointInterface = "org.jboss.test.ws.jaxws.samples.soapbinding.DocWrapped")
 public class DocWrappedServiceImpl implements DocWrapped
 {
    // Provide logging

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleSEI.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleSEI.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleSEI.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -1,24 +1,24 @@
 /*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, JBoss Inc., and individual contributors as indicated
-  * by the @authors tag. See the copyright.txt in the distribution for a
-  * full listing of individual contributors.
-  *
-  * This is free software; you can redistribute it and/or modify it
-  * under the terms of the GNU Lesser General Public License as
-  * published by the Free Software Foundation; either version 2.1 of
-  * the License, or (at your option) any later version.
-  *
-  * This software is distributed in the hope that it will be useful,
-  * but WITHOUT ANY WARRANTY; without even the implied warranty of
-  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  * Lesser General Public License for more details.
-  *
-  * You should have received a copy of the GNU Lesser General Public
-  * License along with this software; if not, write to the Free
-  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-  */
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.test.ws.jaxws.samples.soapbinding;
 
 import java.rmi.Remote;

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -32,7 +32,7 @@
  * @since 16-Oct-2005
  */
 
- at WebService(endpointInterface="org.jboss.test.ws.jaxws.samples.soapbinding.ExampleSEI", name="Example")
+ at WebService(name="Example", serviceName="ExampleService", endpointInterface="org.jboss.test.ws.jaxws.samples.soapbinding.ExampleSEI")
 public class ExampleServiceImpl
 {
    // Provide logging

Modified: trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/webmethod/TestEndpointImpl.java
===================================================================
--- trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/webmethod/TestEndpointImpl.java	2007-05-29 16:28:58 UTC (rev 3291)
+++ trunk/testsuite/src/java/org/jboss/test/ws/jaxws/samples/webmethod/TestEndpointImpl.java	2007-05-30 07:07:01 UTC (rev 3292)
@@ -32,7 +32,7 @@
  * @since 12-Aug-2005
  */
 
- at WebService(endpointInterface = "org.jboss.test.ws.jaxws.samples.webmethod.TestEndpoint", name="TestEndpoint")
+ at WebService(name="TestEndpoint", serviceName="TestEndpointService", endpointInterface = "org.jboss.test.ws.jaxws.samples.webmethod.TestEndpoint")
 public class TestEndpointImpl
 {
    // Provide logging




More information about the jbossws-commits mailing list