In the actual HTTP request, the references to the entry definitions in the content template are replaced by the values of these entry definitions from the DID document. For our example, the actual HTTP request that is send to the HTTP server will look like this:
POST /invoke/wm.PartnerMgr.gateway.transport.RFC/InboudProcess
HTTP/1.1 UserAgent: ITP/XML WebServices Connection
Host: myserver.com
From: someone@somewhere.com
Content-Type: application/x-sap.busdoc
Content-Length: 574
<?xml version="1.0" encoding="iso-8859-1"?>
<biztalk_1 xmlns="urn:biztalk-org:biztalk:biztalk_1">
<header>
<delivery>
<to>
<address>urn:sap-com:logical-system:SERVER</address>
</to>
<from>
<address>urn:sap-com:logical-system:CLIENT</address>
</from>
</delivery>
</header>
<body>
<!-- Get the customer with the passed parameter-->
<GetCustomer xmlns:doc="urn:sap-com:document:sap:rfc:functions"
mlns="">
<CUST_ID>1234</CUST_ID>
</GetCustomer>
</body>
</biztalk_1>
Note
The HTTP Header and HTTP Content are always separated by an empty line.