|
-
Apr 9th, 2006, 07:52 AM
#1
Thread Starter
New Member
downloading csv from iis NTLM enabled
Hi,
i try to download a csv-file from iis-webserver which has NTLM enabled.
I use this code:
Dim url
url = ArgObj.Item( 0)
Dim objHTTP
Set objHTTP = CreateObject("MSXML2.XMLHTTP")
Call objHTTP.Open("GET", url, FALSE)
objHTTP.Send
WScript.Echo(objHTTP.ResponseText)
My Problem is that the german umlauts are replaced by an question mark and some characters after that umlaut are missing.
OK, MSXML2.XMLHTTP is an Object for downloading xml-Sites, and this umlauts are replaced...
Do you have any ideas?
I also tried tinyget (MS IIS Resource Kit), but have a similar problem. And wget or curl doesn't support NTLM very well...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|