I do not have much knowledge on using HTTP. I haveve created an XMLPort and I want to send the exported data of this XMLPort to the URL. The code that I've written to test the URL is:
HTTPWebRequest := HTTPWebRequest.Create('service.ariba.com/.../cxml.asp');
HTTPWebRequest.Method := FORMAT('POST');
HTTPWebResponse := HTTPWebRequest.GetResponse;
var
HTTPWebRequest DotNet System.Net.HttpWebRequest.'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
HTTPWebResponse DotNet System.Net.HttpWebResponse.'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
Need help with the remaining code which sends XML as a stream in this POST request.
TIA.