Dear Kris,
According to the WSDL schema of the web service, the data type of the getGuid method's return value is defined as follows:
| Code |
|---|
<xsd:element name="getGuidResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="guid" type="tns:guidType" maxOccurs="100" minOccurs="1" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
|
In other words, it is an array.
To work with the getGuid method from your code, you should create an element that corresponds to the method and pass an appropriate value to its incoming parameter.
Best regards,
Vladimir Gurov