java 代码
- @WebService(name = "EchoService", targetNamespace = "http://www.openuri.org/2004/04/HelloWorld")
- public class Jsr181EchoService
- {
- @WebMethod(operationName = "echoString", action = "urn:EchoString")
- @WebResult(name = "echoResult")
- public String echo(@WebParam(name = "echoParam", header = true) String input)
- {
- return input;
- }
- }