1 Reply Latest reply on Dec 5, 2003 1:19 PM by amlgroup

    WSR deployment

    amlgroup

      OK, real basic example, need to deploy a Hello World example as a web service to be invoked by a Flash client sending SOAP request

      Here's the class:
      public class HelloWorld {
      public HelloWorld() {}
      public String getMessage() {
      return "Hello World";
      }
      }

      Very simple, right? So now, what files need to be in the WSR file?

      Do I need to package the WSR in an EAR file to deploy within JBoss?

      Where do I map the request URL to the web service?