How to make Compression Gzip in my xml request using asp code?

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
I need to implement Compression Gzip in the below xml request
<%
pXML=Server.URLencode(XML_Request)<br/>
set http = server.CreateObject("MSXML2.ServerXMLHTTP")<br/>
http.open "post", "http://213.171.234.70/appservices/http/FrontendService", false
http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"<br/>
http.send "xml_request=" &pXML
http_response= http.responsexml.xml<br/>
Set xd= Server.CreateObject("Microsoft.XMLDOM")<br/>
xd.async = "false"<br/>
xd.loadXML(http_response)
%>

Please help to fix this.....
tks

View the full article
 
Back
Top