[System.Web.Services.Protocols.SoapRpcMethodAttribute("",
RequestNamespace="
http://xxxx/webservices/YYYYWS",
ResponseNamespace="
http://xxxx/webservices/YYYYWS")]
[return:
System.Xml.Serialization.SoapElementAttribute("getDefinitionsReturn")]
public object[] getDefinitions(int termcode, string languagecode) {
object[] results = this.Invoke("getDefinitions", new object[] {
termcode,
languagecode});
return ((object[])(results[0]));
}
this is a code snippet from the reference.cs file, when I try to access
getDefinition and put the return value in an Object it compiles file but the
problem is how do i get the values out from the object and display it?
The documentation of the webservice states that these are the things
returned from the WS.
An array of vectors containing the follwing (if existing):
Vector[0] – the snotes
Vector[1] – the hnotes
Vector[2] – the definitions
Vector[3] – the other comments