Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an AXIS2/JAX-WS web service using a code first implementation (yes I know, that is bad). The web service is being consumed by a .NET based client.

Before we had Axis1, and when custom objects were passed between the client and the server, the client and the server code had to do their own serialization and de-serialization.

When we converted to Axis2, we removed the custom serialization and converted all objects to the regular bean format.

Now here comes the problem, the original way that objects were sent was through polymorphic calls, but there appears to be a problem with the way that Axis2/JAX-WS and .NET handle serialization. I believe that .NET uses the xsi:type attribute when declaring the element and the java side changes the element type. Is there a way to make polymorphic calls to web services using a .NET client and a Java based webservice?

Thanks.

share|improve this question
Note, at this point I have created a wrapper object which has an entry for all the different object types, but I would like to get rid of this unnecessary object – bogertron Jul 15 '09 at 15:40

1 Answer

up vote 2 down vote accepted

Found out the problem. The java classes needed to have their namespaces defined with the @XmlType annotation. Now the objects are getting serlialized and deserialized correctly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.