Author: alessio.soldano(a)jboss.com
Date: 2008-10-06 19:18:54 -0400 (Mon, 06 Oct 2008)
New Revision: 8360
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EJB3Bean.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointInterface.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.java
Log:
Fixing @WebService annotations
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EJB3Bean.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EJB3Bean.java 2008-10-06
21:45:44 UTC (rev 8359)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EJB3Bean.java 2008-10-06
23:18:54 UTC (rev 8360)
@@ -33,12 +33,10 @@
* @author <a href="mailto:bdecoste@jboss.com">William DeCoste</a>
*/
@WebService(
- name = "EndpointInterface",
targetNamespace = "http://www.openuri.org/2004/04/HelloWorld",
serviceName = "EndpointService",
endpointInterface = "org.jboss.test.ws.jaxws.jbws1841.EndpointInterface"
)
-@SOAPBinding(style = SOAPBinding.Style.RPC)
@Stateless
public class EJB3Bean implements EndpointInterface
{
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointInterface.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointInterface.java 2008-10-06
21:45:44 UTC (rev 8359)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/jbws1841/EndpointInterface.java 2008-10-06
23:18:54 UTC (rev 8360)
@@ -21,9 +21,9 @@
*/
package org.jboss.test.ws.jaxws.jbws1841;
+import javax.ejb.Remote;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
-import javax.ejb.Remote;
/**
* Test the JSR-181 javax.jws.WebService annotation on an SEI
@@ -32,7 +32,6 @@
* @since 29-Apr-2005
*/
@WebService(
- name = "EndpointInterface",
targetNamespace = "http://www.openuri.org/2004/04/HelloWorld"
)
@SOAPBinding(style = SOAPBinding.Style.RPC)
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.java 2008-10-06
21:45:44 UTC (rev 8359)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.java 2008-10-06
23:18:54 UTC (rev 8360)
@@ -32,7 +32,7 @@
* @since 16-Oct-2005
*/
-@WebService(name="Example", serviceName="ExampleService",
endpointInterface="org.jboss.test.ws.jaxws.samples.soapbinding.ExampleSEI")
+@WebService(serviceName="ExampleService",
endpointInterface="org.jboss.test.ws.jaxws.samples.soapbinding.ExampleSEI")
public class ExampleServiceImpl
{
// Provide logging
Show replies by date