>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.
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
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