I am writing a WebService using Java. Now I have a @WebMethod that is supposed to return some data, and I am not sure what format to use. I have seen that in other languages, there are certain restrictions on @WebMethod return types - is this the same for Java?
When I tried to return a DOM Document containing XML, I got an error saying "Unable to create JAXBContext", so I changed it to just returning a String array. However, getting content from that array is rather tedious. Does anyone have a better solution?
Thanks,
VeganSmarties