Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
4k views

differences between Msxml2.ServerXMLHTTP and WinHttp.WinHttpRequest?

just when I finally understood the difference between Msxml2.XMLHTTP and Msxml2.ServerXMLHTTP http://support.microsoft.com/kb/290761 XMLHTTP is designed for client applications and relies on ...
2
votes
1answer
477 views

Getting an IStream from an OleVariant

I am using Delphi along with WinHTTP to do an HTTP request to download some files from the internet, and I can do the request but I don't know how to get the IStream from the OleVariant that is ...
2
votes
3answers
2k views

Perform HTTP Post from within Excel and Parse Results

I have access to an API. The API takes an XML post as input and then returns an XML response with the relevant data. I want to Send the HTTP Post to the Server (Authentication and Request will be ...
1
vote
3answers
58 views

how to parse xml in from a WinHttp.WinHttpRequest object?

I have a standalone VBScript which connects to server and gets the response text(as XML) in a WinHttpRequest object. Now, my question is how do I parse the XML content in it. When I post a ...
1
vote
1answer
80 views

Work with WinHttpRequest.ResponseStream (related to IStream) in Classic ASP?

Is there a way to work with the ResponseStream property of WinHttp.WinHttpRequest.5.1 in VBScript/ASP? At least the IStream interface (to which ResponseStream is related) is integrated into ASP to a ...
1
vote
1answer
215 views

WinHttp doesn't work when hostname doesn't contains www. (error 12029)

I am testing this winhttp example from http://msdn.microsoft.com/en-us/library/aa384270%28v=vs.85%29.aspx DWORD dwSize = 0; DWORD dwDownloaded = 0; LPSTR pszOutBuffer; BOOL bResults = FALSE; ...
1
vote
1answer
3k views

Post Method + WinHttpRequest + multipart/form-data

I'm stumped why this doesn't work can't seem to find any problems. Here is the code. Public Const MULTIPART_BOUNDARY = "speed" Function getBalance() As String Dim sEntityBody As String Dim ...
1
vote
1answer
913 views

winHTTP GET request C++

I'll get right to the point. This is what a browser request looks like GET /index.html HTTP/1.1 This is what winHTTP does GET http://site.com/index.html HTTP/1.1 Is there any I can get the ...
1
vote
1answer
2k views

Do I really need to register WinHttp on Windows Server 2008 before using WinHttpRequest.5.1?

Basically I think this is a bug in Windows Server 2008, but I am not a COM ninja so it seems equally likely that I'm just doing something dumb. The question is: bug or programmer error? We use ...
1
vote
1answer
873 views

Progress indication with HTTP file download using WinHTTP

I want to implement an progress bar in my C++ windows application when downloading a file using WinHTTP. Any idea how to do this? It looks as though the WinHttpSetStatusCallback is what I want to ...
1
vote
2answers
2k views

WinHttp.WinHttpRequest in .NET

Is there a built-in .NET class that can replace or work like WinHttp.WinHttpRequest? Thanks!
0
votes
1answer
59 views

Is WinHTTP downloading null bytes or am I copying the results buffer incorrectly?

I recently ported a fully working WinInet program to WinHTTP. Here's a function I wrote to wrap an entire GET request in to a single line of code: bool Get(Url url, std::vector<char>& data, ...
0
votes
1answer
93 views

How to test WinHTTP POST locally

I have a requirement to send some data to a 3rd party listener via POST. I've written a database trigger to send via WinHTTP but I've never done this before. How can I set up a POST listener and ...
0
votes
1answer
385 views

WinHTTPRequest.ResponseText not returning the full HTML?

I tried to use WinHTTP Request to retrieve a webpage (HTTPS website) in VB.Net and for some reason it was only returning the partial HTML, is there any length restriction on the number of characters ...
0
votes
0answers
453 views

XMLHttp works but WinHttpRequest doesn't. Need cookie support

This works: Dim xml As New XMLHTTP xml.Open "GET", "http://www.google.com", False xml.send MsgBox xml.responseText This doesn't: Dim http As New WinHttpRequest http.Open "GET", ...
0
votes
0answers
554 views

httpwebrequest using a pfx?

I'd like to reproduce the following chunk of vbscript using C#. sURL = "https://server/service.dll" sXML = "<request version=""1.0""><ticket>generated ...
0
votes
1answer
195 views

Script to determine if an HTTP reponse is from intended domain

I am trying to write a script that will send an HTTP "GET" to a URL then determine if the response came from the same domain or not. I have been playing around with VBS and the ...
0
votes
1answer
668 views

Windows 7: Automatic Logon Policy not working for winhttp API VB6 activeX control

I'm using WinHttp to do POSTs in a VB6 activeX control as follows Set WinHttpReq = New WinHttpRequest WinHttpReq.Open "POST", strUrl, False WinHttpReq.SetAutoLogonPolicy AutoLogonPolicy_Always ...
0
votes
1answer
933 views

Mantis BT export request via “WinHttp.WinHttpRequest.5.1”

My boss asked me to export the corp's Mantis bugs database to Excel, but he can't give me access to the SQL Server, and the process has to be automated. The ONLY thing I can use is Excel (no ODBC, no ...