Hi I´ve a simple webservice like this:
So I generated the client with wsimport so when I wrote the client using wstemplate I get that one of my classes generated with wsimport doesn´t have @XmlRootElement.Code:@WebService public class HelloImpl { /** * @param name * @return Say hello to the person. */ public String sayHello(String name) { return "Hello, " + name + "!"; } }
So I was wondering, if I want to write my client with a webservice template, do I need to built my webservice with spring??
Thanks in advance.


Reply With Quote
