Originally posted by BrilloPad
View Post

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Header/> <SOAP-ENV:Body> <GetCandidatesFromKeyword xmlns="http://tempuri.org/"> <Keyword>funky gibbon</Keyword> <language>English</language> </GetCandidatesFromKeyword> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <GetCandidatesFromKeywordResponse xmlns="http://tempuri.org/"> <GetCandidatesFromKeywordResult> <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true"> <xs:complexType> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="Table"> <xs:complexType> <xs:sequence> <xs:element name="lti_to_id" type="xs:unsignedInt" minOccurs="0"/> <xs:element name="name" type="xs:string" minOccurs="0"/> <xs:element name="lti_count" type="xs:unsignedInt" minOccurs="0"/> </xs:sequence> </xs:complexType> </xs:element> </xs:choice> </xs:complexType> </xs:element> </xs:schema> <diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1"/> </GetCandidatesFromKeywordResult> </GetCandidatesFromKeywordResponse> </soap:Body> </soap:Envelope>
Comment