Read them and determine what types of data are returned by the functions (which requires a bit of logical thinking on your part). For example:
Catalogue_ListResponse Catalogue_List(Catalogue_List $parameters)
tells you that the "Catalogue_List" method returns a "Catalogue_ListResponse". What's a "Catalogue_ListResponse"?
struct Catalogue_ListResponse {
Catalogue_ListResult Catalogue_ListResult;
}
It's an object with a "Catalogue_ListResult" property that is of type "Catalogue_ListResult". But what's a "Catalogue_ListResult"?
struct Catalogue_ListResult {
<anyXML> any;
}
It's an object that has an "any" property containing XML.
Weedpacket wrote:In this case, there is a chunk of XML in there that appears to have some information in it; have you tried parsing it?