@WebService public class Echo { @WebResult(name="text") public String echo(@WebParam(name="text") String string) { return string; } }