HTTP + XML
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /xml/reply/LoadDocument HTTP/1.1
Host: services.prismalife.com
Content-Type: application/xml
Content-Length: length
<LoadDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<FileKey>String</FileKey>
<PrintId>String</PrintId>
</LoadDocument>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<LoadDocumentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<Documents>
<Report>
<AllPages>0</AllPages>
<FileKey>String</FileKey>
<PDF>AA==</PDF>
</Report>
</Documents>
<File>AA==</File>
<Message>String</Message>
</LoadDocumentResponse>