I'm trying to post some xml/text to an asp page. I'm sending from an aspx
page. This function works fine when submitted from the browser, but does
nothing when called by a Timer function. Any ideas why this doesn't work?
objXML = Server.CreateObject("Msxml2.SERVERXMLHTTP")objXML.open ("POST",
urltoSend, false)
Network. User-Agent: Java1.1.6 Content-type: text/xml
objXML.setRequestHeader ("Content-type", "text/xml")
objXML.setRequestHeader ("User-Agent", "Java1.1.6")
objXML.send ((xmltosend))
Dino Chiesa [Microsoft] - 27 Oct 2004 16:21 GMT
> I'm sending from an aspx
> page.
why are you using msxml from aspx? were you aware that it's not
supported?
http://support.microsoft.com/default.aspx?scid=kb;en-us;815112
-D
> I'm trying to post some xml/text to an asp page. I'm sending from an aspx
> page. This function works fine when submitted from the browser, but does
[quoted text clipped - 6 lines]
> objXML.setRequestHeader ("User-Agent", "Java1.1.6")
> objXML.send ((xmltosend))