Re: Help with complex bean

2006-01-26 Thread Jim Azeltine
Here is the WSDL for a working service that I modified to return an array of beans instead of just a single bean.   http://service.test.axis.saic.com"   xmlns:apachesoap="http://xml.apache.org/xml-soap"   xmlns:impl="http://service.test.axis.saic.com"

Re: Help with complex bean

2006-01-26 Thread Anne Thomas Manes
Define the schema the way you'd like it to be in your WSDL and generate your bean from it. AnneOn 1/26/06, Vinicius Carvalho <[EMAIL PROTECTED]> wrote: Hello there! I have this following Bean: public class User{ private List cars; ... } Axis is generating a WSDL that contains an array of

Help with complex bean

2006-01-26 Thread Vinicius Carvalho
Hello there! I have this following Bean: public class User{ private List cars; ... } Axis is generating a WSDL that contains an array of any type instead of Car and defining a qName for Car. How can I change this? Regards