Hi Ajay,
Thanks for the reply. I have a HTML post webpage that I wrote using VBSCRIPT which can post the xml data quite successfully, from my computer, yet when I use my webMethods server installed on my local pc, I get the Connecton Refused error. Therefore I don;t think it is a firewall thing.
The portion of my web page that does the business is:
set req = createobject(“MSXML2.XMLHTTP”)
req.Open “POST”, uri, false
req.setRequestHeader “Content-Type”,“text/xml”
'Open File for sending
set fso = createobject(“Scripting.FileSystemObject”)
set file = fso.OpenTextFile(fname)
’ Send file
req.send file.ReadAll
’ Close file
file.close
Why would this work, but my HTTP post flow service from my SAP business connector server doesn’t?
The variables that I have populate in the HTTP service are:
URL = external url I am posting to
METHOD = POST
DATA->STRING = my xml file string
HEADERS->Content-type = text/xml
#webMethods#Flow-and-Java-services#Integration-Server-and-ESB