Re: Complex types from Axis Client

2002-05-28 Thread kulin parikh
>You can use the WSDL2Java-Tool to generate a mapping class. >Due to some limitations of the tool, it's not always possible but in >many cases. Well the way we are using axis is something like this. User selects wsld url. We parse the file and give user the option to selects methods available.

Re: Complex types from Axis Client

2002-05-28 Thread Dennis Reil
7 PM Subject: Complex types from Axis Client > I was going through the samples provided with Axis > > /samples/userguide/example5 > > If i see Client.java > > To send complex type what this code does is > > Order order = new Order(); > order.setCustomerName("Glen D

Complex types from Axis Client

2002-05-28 Thread kulin parikh
I was going through the samples provided with Axis /samples/userguide/example5 If i see Client.java To send complex type what this code does is Order order = new Order(); order.setCustomerName("Glen Daniels"); order.setShippingAddress("275 Grove Street, Newton, MA"); And then call.registerT