The PDO request / response message structure is divided into three parts:
- pdoheader
- Request
- Response
For the request message, the <pdoheader> and <request> sections are required, while for the response message, only the <response> section is required.
<i2b2:message_body>
<crc:pdoheader>
<request_type>GetPDOFromInputList_requestType</request_type>
. . .
</crc:pdoheader>
<crc:request>
. . .
</crc:request>
<crc:response>
. . .
</crc:response>
</i2b2:message_body>
Element Name | Description |
pdoheader | The header contains a <request_type> element, which will carry the operation name. Each operation name has a specific request / response combination.
|
request | The <request> is modeled as an object using a polymorphic approach. All operation specific request objects inherit a base RequestType object as shown in the object model diagram in the next section. |
response | The <response> is also modeled as an object using a polymorphic approach. All operation specific response objects inherit a base PDOResponseType object containing a StatusType attribute as shown in the object model diagram in the next section. |