Hi,
I'm trying to generate a WSDL for the following method: "public PhysicalPersonList queryPhysicalPerson(User user, QueryPhysicalPersonCriterias criterias);". The PhysicalPersonList class extends LinkedList<PhysicalPerson>.
I was expecting to have something like the following for the PhysicalPersonList WSDL/XSD element : "<xs:complexType name="PhysicalPersonList"><xs:sequence><element name="PhysicalPerson" .../></xs:sequence></xs:complexType>".
However, the generated element is the following one: "<xs:complexType name="PhysicalPersonList"><xs:sequence/></xs:complexType>". The PhysicalPersonList element is an empty sequence :o( which means that a client that tries to consume a Webservice response has no clue about which type of objects will be contained in the PhysicalPersonList element.
Any idea on how to solve this issue (change Java structure, bug-fix in WSF/Spring, additional parameter, ...) will be highly appreciated :o).
Regards, Stefan Lecho.