Sample Soap Request for Method: updatePatientAbdominalProfile( String nationalId, WsPatientAbdominalProfile )

Request: add a "WsPatientAbdominalProfile" record.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ctr="http://ctr3ws.cbs.com/"> <soapenv:Header> <wsse:Security soapenv:mustUnderstand="0" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> <wsse:UsernameToken wsu:Id="UsernameToken-3" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"> <wsse:Username>someCTRuser</wsse:Username> <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">anypw</wsse:Password> </wsse:UsernameToken> </wsse:Security> </soapenv:Header> <soapenv:Body> <ctr:updatePatientAbdominalProfile> <arg0>CTD000002</arg0> <arg1> <id>0</id> <!--<patientId>?</patientId>--> <collectedOn>2020-04-08T00:10:00-04:00</collectedOn> <abdominalUltrasound>Ultrasound results: text1...</abdominalUltrasound> <ctAbdominal>CT scan result: text2...</ctAbdominal> <kidneyBiopsy>Kidney biopsy result: text3...</kidneyBiopsy> </arg1> </ctr:updatePatientAbdominalProfile> </soapenv:Body> </soapenv:Envelope>

Response: the new "WsPatientAbdominalProfile" record.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:updatePatientAbdominalProfileResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <id>1</id> <patientId>2</patientId> <collectedOn>2020-04-08T00:10:00-04:00</collectedOn> <abdominalUltrasound>Ultrasound results: text1...</abdominalUltrasound> <ctAbdominal>CT scan result: text2...</ctAbdominal> <kidneyBiopsy>Kidney biopsy result: text3...</kidneyBiopsy> </return> </ns2:updatePatientAbdominalProfileResponse> </soap:Body> </soap:Envelope>

Request: Updated a "WsPatientAbdominalProfile" record.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ctr="http://ctr3ws.cbs.com/"> <soapenv:Header> <wsse:Security soapenv:mustUnderstand="0" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> <wsse:UsernameToken wsu:Id="UsernameToken-3" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"> <wsse:Username>someCTRuser</wsse:Username> <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">anypw</wsse:Password> </wsse:UsernameToken> </wsse:Security> </soapenv:Header> <soapenv:Body> <ctr:updatePatientAbdominalProfile> <arg0>CTD000002</arg0> <arg1> <id>1</id> <!--<patientId>?</patientId>--> <collectedOn>2020-05-06T00:10:00-04:00</collectedOn> <abdominalUltrasound>Ultrasound results: text1...</abdominalUltrasound> <ctAbdominal>CT scan result: upadted text2...</ctAbdominal> <kidneyBiopsy>Kidney biopsy result: updated text3...</kidneyBiopsy> </arg1> </ctr:updatePatientAbdominalProfile> </soapenv:Body> </soapenv:Envelope>

Response: The updated "WsPatientAbdominalProfile" record.

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns2:updatePatientAbdominalProfileResponse xmlns:ns2="http://ctr3ws.cbs.com/"> <return> <id>1</id> <patientId>2</patientId> <collectedOn>2020-05-06T00:10:00-04:00</collectedOn> <abdominalUltrasound>Ultrasound results: text1...</abdominalUltrasound> <ctAbdominal>CT scan result: upadted text2...</ctAbdominal> <kidneyBiopsy>Kidney biopsy result: updated text3...</kidneyBiopsy> </return> </ns2:updatePatientAbdominalProfileResponse> </soap:Body> </soap:Envelope>