Sample Requests
County version search based on Workflow Step and Property Type Group:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sear="http://schemas.ecrv.mdor.state.mn.us/searchService">
<soapenv:Header/>
<soapenv:Body>
<sear:CountySearchRequest>
<!--Optional:-->
<sear:CurrentWorkflowStepId>2978</sear:CurrentWorkflowStepId>
<!--Optional:-->
<sear:PropertyTypeGroup>03</sear:PropertyTypeGroup>
</sear:CountySearchRequest>
</soapenv:Body>
</soapenv:Envelope>
Original version search based on Property Use:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sear="http://schemas.ecrv.mdor.state.mn.us/searchService">
<soapenv:Header/>
<soapenv:Body>
<sear:OriginalSearchRequest>
<sear:CountyCode>62</sear:CountyCode>
<!--Optional:-->
<sear:PropertyUseCodeCodeLevel1>RESID</sear:PropertyUseCodeCodeLevel1>
<!--Optional:-->
<sear:PropertyUseCodeCodeLevel2>STUDENTHSG</sear:PropertyUseCodeCodeLevel2>
<!--Optional:-->
<sear:PropertyUseCodeCodeLevel3>STUDENTAPT</sear:PropertyUseCodeCodeLevel3>
<!--Optional:-->
</sear:OriginalSearchRequest>
</soapenv:Body>
</soapenv:Envelope>
Sample Responses
Partial successful response returning results:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header>
<wsse:Security SOAP-ENV:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsu:Timestamp wsu:Id="XWSSGID-15763414901991185817290" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsu:Created>2019-12-31T14:43:50.284Z</wsu:Created>
<wsu:Expires>2019-12-31T14:48:50.284Z</wsu:Expires>
</wsu:Timestamp>
</wsse:Security>
</SOAP-ENV:Header> <SOAP-ENV:Body>
<ns2:CountySearchResponse xmlns:ns2="http://schemas.ecrv.mdor.state.mn.us/searchService">
<ns2:resultCount>314</ns2:resultCount>
<ns2:CrvIds>
<ns2:CrvId>123456</ns2:CrvId>
<ns2:CrvId>234567</ns2:CrvId>
<ns2:CrvId>345678</ns2:CrvId>
<ns2:CrvId>456789</ns2:CrvId>
.
.
.
</ns2:CrvIds>
<ns2:RequestErrors/>
</ns2:CountySearchResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Failed response caused by an incorrect search parameter:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header>
<wsse:Security SOAP-ENV:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsu:Timestamp wsu:Id="XWSSGID-15763414901991185817290" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsu:Created>2019-12-31T14:43:50.284Z</wsu:Created>
<wsu:Expires>2019-12-31T14:48:50.284Z</wsu:Expires>
</wsu:Timestamp>
</wsse:Security>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>SOAP-ENV:Client</faultcode>
<faultstring xml:lang="en">Validation error</faultstring>
<detail>
<spring-ws:ValidationError xmlns:spring-ws="http://springframework.org/spring-ws">cvc-enumeration-valid: Value 'o3' is not facet-valid with respect to enumeration '[01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15]'. It must be a value from the enumeration.</spring-ws:ValidationError>
<spring-ws:ValidationError xmlns:spring-ws="http://springframework.org/spring-ws">cvc-type.3.1.3: The value 'o3' of element 'sear:PropertyTypeGroup' is not valid.</spring-ws:ValidationError>
</detail>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>