Hi,
I am using that
latest version of axis and have used WSDL2Java to create the client stubs to
connect to a third party webservice.
The object that is
passed to the service contains an array of Query objects. What actually goes
into the array are instances of various subclasses of Query. When the
ArraySerializer serializes the array it just uses the Query class to find the
serializer not the class of the element in the array (about line 418 of
ArraySerializer.java). As a result the extra information in the subclasses does
not get sent in my message. Is this the expected behaviour?
I made a quick
change to ArraySerializer.java to use the class of the element in the array and
now all of my information gets sent but is this really a bug or have I done
something wrong?
Thanks,
Tim
