1 Reply Latest reply on Jun 1, 2006 5:47 PM by postdev

    How to implement Web services using Jboss Eclipse IDE?

    vishnu584

      Hello Everyone,

      Can anybody help me how to develop a webservice using Jboss Eclipse IDE and JBoss AS. I have 3.1.2 JBOSS Eclipse IDE and JBOSS 4.0 AS. Here by saying Webservices I mean I am looking forward for server side and client side code generation. Also let me know if we require any plugin for supporting Web services in Eclipse IDE.

      Thanks In advance

      Vishnu

        • 1. Re: How to implement Web services using Jboss Eclipse IDE?
          postdev

          I recommend you use jax-ws tools that are wsimport for client side and for server side you just need to anotate with @WebService over the class declaration, @WebMethod over the method and @WebParam(name = "name") on the params of the method, don't forget to include jax-ws libraries, I believe that jas-ws or something like it will be on jbossws on a future release, in the meantime use jax-ws which is a glassfish project

          see ya