I am building an orchestration to read an xml file and send out in HTTP Post body to a remote HTTP server. I need put "xmldata=" in front of the xml data inside Post body. To do that, I changed the sample HTTP.NET adapter code to add "xmldata=" before sending the message (xml data) out in http stream.
But somehow, the http server sends back error message about missing some important tags in the Post data which seems the data sent out in Post is not in correct format.
So I want to check the real Post data sent out from the Adapter. How can I do that?
Thanks in advance!