Jul 29, 10 by Juan Lebrijo about weblogic, Web Services, blog, Eclipse
Today we are going to see ho to create a WS which says Hello over Weblogic, with its IDE Eclipse OEPE.
We will create a New project > Web Service Project:
995.thumbnail.gif6.09 KB
We created teh following class:
package services;import javax.jws.*;
@WebService
public class Hello {
@WebMethod
public String sayHello(String name) {
return "Hello, "+name+".";
}
}