ASP/VBScript ServerXmlHttp Encoding
Posted
by colinramsay
on Stack Overflow
See other posts from Stack Overflow
or by colinramsay
Published on 2010-03-18T16:47:19Z
Indexed on
2010/03/18
16:51 UTC
Read the original article
Hit count: 507
I'm pulling an RSS feed from a remote location using ServerXmlHttp:
Dim httpRequest
set httpRequest = server.createObject("Msxml2.ServerXMLHTTP.6.0")
httpRequest.open "GET", "http://www.someurl.com/feed.xml", false
httpRequest.send()
response.write httpRequest.responseXML.xml
However there must be encoding issues somewhere along the line as I'm seeing ???? where there should be some Japanese characters. Does anyone have any guidance when working with ServerXmlHttp?
Thanks.
© Stack Overflow or respective owner