Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Ws Wiki" for change 
notification.

The following page has been changed by NickGallardo:
http://wiki.apache.org/ws/FrontPage/Axis2/JAX-WS/JSR-181

------------------------------------------------------------------------------
  Because of the fact that the Axis2 implementation is also going to support 
JAX-WS, there is are a few issues that need to be resolved.
  
  '''Targeting a Programming Model'''
+ 
  One issue that is raised by the current approach is that, if Java beans can 
be annotated with just JSR-181 annotations, how do you determine whether the 
bean should be deployed as an Axis2 service vs. a JAX-WS service.
  
+ Let's say, for example, that a user provides the following annotated bean as 
their Web service implementation class.
+ 
+ {{{
+ package test;
+ 
+ @WebService(serviceName="MyService" targetNamespace="http://test";)
+ public MyService {
+ 
+     @WebMethod
+     public String foo(String input) {
+         return input;
+     }
+ }
+ }}}
+ 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to