Hi,
I am developing a simple jax-ws service for an iphone application. I am using
EJB 3.0 entities and hibernate as JPA implementation.
I'll have a operation getUsers, that should return the list of users with all the attributes of users fetched from DB.
If I return something like this :
The problem is that I am unable to make my web service deployed If I use generics.
And if I remove generic code and rather use normal "List", the web service is deployed but if I call this service I get an exception.
My question is, if I am somehow able to resolve the problem, will the jax-ws runtime be able to send the
SOAP message something like this :
I suspect this is not possible, I guess I will have to create xml manually ? But then what's use of using jax-ws ?
Can someone help me out on this? I need to send the data from the JPA entities in xml form.
Thanks