Re: curl xml post
I forgot to mention - here's the code snippet from asp that's supposed
to work in the documentation
(which I can't verify since I don't have asp running)
set srvXML = Server.CreateObject("Msxml2.DOMDocument.4.0")
set srvHTTP = Server.CreateObject("WinHttp.WinHttpRequest.5.1")
srvXML.loadXML(strXML)
srvHTTP.Open("POST", "
https://example.com/request.asp", False)
srvHTTP.setRequestHeader("Content-Type", "text/xml; charset=utf-8")
srvHTTP.send(srvXML.XML)
Note: I've tried setting content type to text/xml; charset=utf-8 as
well, no luck
.
Relevant Pages
- Re: How do I request user right: SeShutdownPrivilege
... The objWMIService object seems like a good starting point for may things :-) ... Especially with the MSDN documentation on the second monitor;-) ... Here is the source code to reset a terminal session from an ASP script: ... || Here is what I did to perform a remote reboot via ASP on IIS 6 / ... (microsoft.public.windows.server.security) - Re: PKZIPC, ASP and WSH
... The user actually stated earlier that it runs with WSH. ... Just not from ASP. ... so the script is actually running -- just ... I actually think that it is impossible to produce such documentation at one ... (microsoft.public.scripting.wsh) - Re: Multiple PWA Web Sites Question
... > For documentation you should download the MS Project Server Resource Kit from the Microsoft web site. ... I was referring to the PWA site. ... >> If you're talking about PWA and you've made changes to the asp files I believe all sites will use the same asp files and appear the same. ... (microsoft.public.project.pro_and_server) - Re: global.asa?
... I subscribed to this newsgroup, ... > This is most probably why I battle to much, is the documentation. ... > seem to find simple, easy to understand, howto-like documentation for ASP, ... >> to website performance, but also usability. ... (microsoft.public.dotnet.framework.aspnet) - Re: SQL data
... ASP Page1 is the ... contains what you expect) and verify that the procedure returns the expected ... This email account is my spam trap so I ... (microsoft.public.inetserver.asp.db) |
|