from https://www6.software.ibm.com/developerworks/cn/education/webservices/ws-eclipse-javase1/section2.html one new Java Project    make sure JRE is JAVA SE 6 2. create POJO package com.myfirst.wsServer;

import Javax.jws.WebService;

@WebService

public class SayHello {

private static final String SALUTATION = “Hello”;

public String getGreeting( String name ) {
return SALUTATION + “ “ + name;
}
} 3. Generate intermediate files using wsgen wsgen -cp ./bin -keep -s ./src -d ./bin com.myfirst.wsServer.SayHello 4. web service publish package com.myfirst.wsServer;

import Javax.xml.ws.Endpoint;

public class RunService {

/**

  • @param args
    */

public static void main(String[] args) {

System.out.println(“SayHello Web Service started.”);
Endpoint.publish(“ http://localhost:8080/wsServerExample “, new SayHello());

}
} 5. Run as Java Appicaiton to start service 6 pass http://localhost:8080/wsServerExample?wsdl View the content of the WSDL file 7 Eclipse provides Run>Launch the Web Services Explorer to test web services. You can use the URL file to do so.