Posted By:
Sebastian_Beyer
Posted On:
Monday, December 2, 2002 04:51 AM
Hi Gautam
I'm not sure if this will help, but I did not work a lot with JAX-RPC. With Axis it is like this:
When you get as response somewthing like a List you can cast the response of the invoke as an Object-Array with:
Object[] response = (Object[])call.invoke(...)
After that simply try a for-loop like:
for(int i=0;i{
MyObject myObj = (MyObject)response[i];
...
}
Where MyObject can of course be String, Integer, or a Bean that you sent via http.
hope that helps you, Greetings from Hamburg/Germany
Seppo