ProcessPolicy

  • Allows invocation of processing for all pending activities on an existing policy.
  • Takes as input XML that contains policy information identifying the policy to be processed.
  • Returns a success indicator on successful processing; otherwise, returns a SOAP fault.

Sample input XML:

<Parameters>
<Parameter NAME="PolicyNumber">PolicyNumber</Parameter>
</Parameters>

SOAP Request Example

<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:proc="http://ProcessPolicy"> 
    <soapenv:Header>
        <wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
            <wsse:UsernameToken wsu:Id="UsernameToken-1" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
                <wsse:Username>tester</wsse:Username>
                <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">tester</wsse:Password>
                <wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">FRkBB/REsT/4ThQzEjoiUQ==</wsse:Nonce>
                <wsu:Created>2011-07-01T22:39:59.640Z</wsu:Created>
            </wsse:UsernameToken>
        </wsse:Security>
    </soapenv:Header>
    <soapenv:Body>
        <proc:policyValuation>
            <inputXml>
                <![CDATA[<Request>
<Parameters>
<Parameter NAME="PolicyNumber">VDA31022177</Parameter>
</Parameters>
</Request>]]>
            </inputXml>
        </proc:policyValuation>
    </soapenv:Body>
</soapenv:Envelope>