Webservice @WebMethod
Posted by mriem on June 22, 2009 at 12:15 PM EDT
How do you tell the JAXWS runtime to expose a given method as a webservice method? Easy, use the @WebMethod annotation, see the Webservice Almanac page for more information.
Related Topics >>
Blog Links >>
- Login or register to post comments
- Printer-friendly version
- mriem's blog
- 1476 reads






Comments
by vdkapadia - 2009-08-18 13:33
how to tell the runtime not to include the method @webMethod(exclude= true) doesn't work it fails in wsgen when generating wsdlby mriem - 2009-06-26 07:44
Make sure you have the JAXWS servlet listener setup in your web.xml and it will know that you are already running it in a webserver.by chris_e_brown - 2009-06-25 01:36
How do you tell JAXWS not to use the built-in webserver (the one in JDK 6) when you're running your code in another webserver already (Jetty, or Tomcat) ?