SOAP, WSDL Response Values?
I have the following in a WSDL file. I am using this WSDL file to gain access to records. Using the AdvancedSearch Method I can supply the data and obtain a result. However, the result is just one long string of all the fields pertaining to the record. Am I missing something or should I be able to access each field individually to parse and extract the fields from each record?
Code:
- <s:element name="AdvancedSearch">
- <s:complexType>
- <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="strStatus" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="strCategory" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="strDirector" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="strApplication" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="strTimeZone" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="strDateFrom" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="strDateTo" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
- <s:element name="AdvancedSearchResponse">
- <s:complexType>
- <s:sequence>
- <s:element minOccurs="0" maxOccurs="1" name="AdvancedSearchResult">
- <s:complexType>
- <s:sequence>
<s:element ref="s:schema" />
<s:any />
</s:sequence>
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
</s:element>
Robert D. Cluett
Systems Engineer & Web Developer
Verizon Communications
Bookmarks