Re: java2wsdl and complex types

2002-06-15 Thread James Black
hrehn wrote: >When using java2wsdl is there any support for complex types? For instance, if >i want to expose a method which returns an object which will be represented as >a complex type (a simple bean for example), am I going to have to either write >my own wsdl or fill in the types sectio

Re: java2wsdl and complex types

2002-06-15 Thread Helen (Nell) Rehn
Hi, I solved my own problem: My bean has only a get() method for that property. As soon as I added a set, it showed up properly within the complexType. Thanks, Nell On Sat, 15 Jun 2002, Helen (Nell) Rehn wrote: > Hi, > > I have a method addX in a class Management which returns an Info object.

Re: java2wsdl and complex types

2002-06-15 Thread Helen (Nell) Rehn
Hi, I have a method addX in a class Management which returns an Info object. This Info class has only one private member, a string (for the time being -- I want to expand on this later), with a getter and setter for that string. I run java2wsdl on the Management class. I don't get any errors, b

Re: java2wsdl and complex types

2002-06-15 Thread butek
Java2WSDL supports complex bean types. If you're having problems, please show us what you're trying to run through Java2WSDL and the errors you're seeing. Russell Butek [EMAIL PROTECTED] Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: java2wsdl and complex types Hi,