blob: 3907f463be2e25937da0af9609b2f1ad7c27c27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:v1="http://org.onap/workflow/sdnc/adapter/schema/v1">
<soapenv:Header />
<soapenv:Body>
<SDNCAdapterCallbackRequest
xmlns="http://org.onap/workflow/sdnc/adapter/schema/v1">
<CallbackHeader>
<RequestId>SDNC_REQUEST_ID</RequestId>
<ResponseCode>200</ResponseCode>
<ResponseMessage>OK</ResponseMessage>
</CallbackHeader>
<RequestData xsi:type="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
SDNC_RESPONSE_DATA
</RequestData>
</SDNCAdapterCallbackRequest>
</soapenv:Body>
</soapenv:Envelope>
|