hi!
I'm consuming an axis 1.4 web service that returns soap responses that I want to unmarshal into my domain objects using jaxb annotations. My initial tests worked very well until some of the returned messages had multiRef elements. Objects that were marshalled using multiRef were showing up as null in my client side annotated model objects.
My question is does JAXB support unmarshalling soap responses with multiRef elements? If so, how? and if not, does anybody know of a better way to unmarshal axis 1.4 soap responses into my domain model in java?
Thank you much for any help!