What is the syntax to do a quick Search using SOAP.
Hi What is the correct syntax to search a text using quick Search using SOAP. Below is the request I used in SOAP UI to search for a word.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sear="http://www.stellent.com/Search/">
<soapenv:Header/>
<soapenv:Body>
<sear:QuickSearch>
<!--Optional:-->
<sear:queryText><sear:queryText></sear:queryText></sear:queryText>
<sear:extraProps>
<!--Zero or more repetitions:-->
<sear:property>
<!--Optional:-->
<sear:name>ftx</sear:name>
<!--Optional:-->
<sear:value>sdfajlk</sear:value>
</sear:property>
</sear:extraProps>
</sear:QuickSearch>
</soapenv:Body>
</soapenv:Envelope>