Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Eclipse のサーブレットまたは Java クラスから Webservice クライアントを呼び出したいです。
また、クライアントを使用して、Java またはサーブレット クラスから wsdl の特定のメソッドを呼び出す方法を教えてください。
@WebServiceRef(wsdlLocation="http://localhost:8080/ helloservice/hello?wsdl") static HelloService service; ... Hello port = service.getHelloPort(); .... String response = port.sayHello(name);