You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ve...@apache.org on 2010/01/23 18:05:57 UTC

svn commit: r902444 - /webservices/axis2/trunk/java/modules/samples/jaxws-interop/README.txt

Author: veithen
Date: Sat Jan 23 17:05:57 2010
New Revision: 902444

URL: http://svn.apache.org/viewvc?rev=902444&view=rev
Log:
Removed an incorrect note in the README file of the jaxws-interop sample: the @WebService annotation on the implementation class is actually required by JSR-109/181 and in addition, it is not just replicated from the service interface, but contains different information. Anyway, in the interop sample, the @WebService annotation is necessary to specify the WSDL location.

Modified:
    webservices/axis2/trunk/java/modules/samples/jaxws-interop/README.txt

Modified: webservices/axis2/trunk/java/modules/samples/jaxws-interop/README.txt
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/samples/jaxws-interop/README.txt?rev=902444&r1=902443&r2=902444&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/samples/jaxws-interop/README.txt (original)
+++ webservices/axis2/trunk/java/modules/samples/jaxws-interop/README.txt Sat Jan 23 17:05:57 2010
@@ -9,8 +9,6 @@
 =================================
 The service may be constructed from scratch by executing the wsimport tool (found in the Sun JAX-WS RI) on the BaseDataTypesDocLibB.wsdl file: 'wsimport -keep -verbose BaseDataTypesDocLibB.wsdl'  (The -keep option tells the tool to keep the generated files and the -verbose option causes the tool to list what is generated.)  After the files have been generated you will need to provide an implementation of the service (i.e. a class equivalent to TopDownSampleService.java).
 
-Note: Due to an issue with the JAXWSDeployer, the annotations from the interface need to be replicated in the implementing class if the service is being deployed through a jar via the servicejars directory.
-
 Deploying the service
 =====================
 The classes can be packaged into a jar and the jar can be dropped into the servicejars directory of a deployed axis2 server.