i am try to read an object from .Net Webservice i got this type
ArrayOfAnyType
as in this lines of code:
public class NewClass {
try { // Call Web Service Operation
org.tempuri.Cou ntryWS service = new org.tempuri.Cou ntryWS();
org.tempuri.Cou ntryWSSoap port = service.getCoun tryWSSoap();
// TODO process result here
org.tempuri.Arr ayOfAnyType result = port.countryGet All();
System.out.prin tln("Result = "+result);
} catch (Exception ex) {
// TODO handle custom exceptions here
}
}
how to extract data from this Object (ArrayOfAnyType ) ???
this Object is a collection return from .Net webservice
ArrayOfAnyType
as in this lines of code:
public class NewClass {
try { // Call Web Service Operation
org.tempuri.Cou ntryWS service = new org.tempuri.Cou ntryWS();
org.tempuri.Cou ntryWSSoap port = service.getCoun tryWSSoap();
// TODO process result here
org.tempuri.Arr ayOfAnyType result = port.countryGet All();
System.out.prin tln("Result = "+result);
} catch (Exception ex) {
// TODO handle custom exceptions here
}
}
how to extract data from this Object (ArrayOfAnyType ) ???
this Object is a collection return from .Net webservice
Comment