Sample Requests
Update to the workflow step for Muni (City) with a comment:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:rout="http://schemas.ecrv.mdor.state.mn.us/routeService">
<soapenv:Header/>
<soapenv:Body>
<rout:MuniRouteRequest>
<rout:CrvId>123456</rout:CrvId>
<rout:WorkflowCodeId>128</rout:WorkflowCodeId>
<!--Optional:-->
<rout:Comments>This is a test of Muni Route service</rout:Comments>
</rout:MuniRouteRequest>
</soapenv:Body>
</soapenv:Envelope>
Sample Responses
Successful response for an updated workflow step:
<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-31T15:03:18.116Z</wsu:Created>
<wsu:Expires>2019-12-31T15:08:18.116Z</wsu:Expires>
</wsu:Timestamp>
</wsse:Security>
</SOAP-ENV:Header> <SOAP-ENV:Body>
<RouteResponseType xmlns:ns2="http://schemas.ecrv.mdor.state.mn.us/routeService">
<ns2:CrvId>123456</ns2:CrvId>
<ns2:SuccessString>Route eCRV is successful.</ns2:SuccessString>
</RouteResponseType>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Error caused by an attempt to update to an invalid Workflow Step:
<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-31T15:03:18.116Z</wsu:Created>
<wsu:Expires>2019-12-31T15:08:18.116Z</wsu:Expires>
</wsu:Timestamp>
</wsse:Security>
</SOAP-ENV:Header> <SOAP-ENV:Body>
<RouteResponseType xmlns:ns2="http://schemas.ecrv.mdor.state.mn.us/routeService">
<ns2:CrvId>123456</ns2:CrvId>
<ns2:RequestErrors>
<ns2:RequestError>
<ns2:ErrorString>WorkflowCode id: 120 is not active for Agency MP</ns2:ErrorString>
</ns2:RequestError>
</ns2:RequestErrors>
</RouteResponseType>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>