Analyze Results

  1. If everything is successful you will see well formed process input and output messages in the form view.
  2. View Source on the output and you will see that it matches the input pasted in 3.2.4:
    <?xml version="1.0" encoding="UTF-8"?>
    <p:CreateEvidenceRootType 
      xsi:type="p:CreateEvidenceRootType" 
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xmlns:p="http://ws.curam/EvidenceCreateWS">
      <p:response>
        <p:evidenceCreate success="true">
          <p:evidenceID>-611363649415544832</p:evidenceID>
          <p:evidenceType>ET500</p:evidenceType>
          <p:evidenceDescriptorID>-7600950271094554624
          </p:evidenceDescriptorID>
        </p:evidenceCreate>
      </p:response>
    </p:CreateEvidenceRootType>
  3. Look at TCPMon and you should see the latest message going out and back. The request consists of a SOAP envelope who's body contains the process input. It looks slightly altered as the namespace alias is updated. The response is also a SOAP envelope, who's body contains the process output. Once again, the namespace alias may look different but this is to be expected.
  4. If you want further insight into what happens under the hood of Cúram's web service infrastructure, you can add some debugging output to your Cúram inbound service BPO to print out the request that arrives in and the response that gets returned. e.g.
    <?xml version="1.0" encoding="UTF-8"?>
    <ws_1:evidence>
      <ws_1:evidenceData>
        <ws_1:evidenceDetails>
          <ws_1:caseID>8323778011287519232
          </ws_1:caseID>
          <ws_1:evidenceType>ET500
          </ws_1:evidenceType>
          <ws_1:receivedDate>2009-02-23
          </ws_1:receivedDate>
          <ws_1:effectiveDate>2009-02-23
          </ws_1:effectiveDate>
          <ws_1:participantID>101
          </ws_1:participantID>
        </ws_1:evidenceDetails>
        <ws_1:dataObjects>
          <ws_1:dataItem 
            name="caseParticipantRoleID">-106960491150049280
          </ws_1:dataItem>
          <ws_1:dataItem 
            name="sportingActivityType">-SA1
          </ws_1:dataItem>
          <ws_1:dataItem 
            name="sportingAwardType">SAT1
          </ws_1:dataItem>
          <ws_1:dataItem 
            name="paymentAmount">1
          </ws_1:dataItem>
        </ws_1:dataObjects>
      </ws_1:evidenceData>
    </ws_1:evidence>
    <?xml version="1.0" encoding="UTF-8"?>
    <response>
      <evidenceCreate success="true">
        <evidenceID>-611363649415544832</evidenceID>
        <evidenceType>ET500</evidenceType>
        <evidenceDescriptorID>-7600950271094554624
        </evidenceDescriptorID>
      </evidenceCreate>
    </response>