1
vote
2answers
182 views
List<Country> becomes Country [] across web service
I have a web service that when invoked, returns a Result object that contains a List polymorphically. However, when I add a reference in my client application, the public field becomes an array of …
2
votes
1answer
279 views
Marshalling polymorphic objects in JAX-WS
I'm creating a JAX-WS type webservice, with operations that return an object WebServiceReply. The class WebServiceReply itself contains a field of type Object. The individual operations would popul …
0
votes
1answer
59 views
Utilise common entity classes across different JAX-WS web services
I have a few JAX-WS web services hosted on the same server. They use the same entity objects, but when the web services are consumed by a client, the reflected entity objects are always different b …
