EDN Admin
Well-known member
I just opened a small project i have here and i wanted to create dll of it so i can use the dll in another project.
But after build/rebuild the solution in the release or debug directories i see some files but no dll.<
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
But after build/rebuild the solution in the release or debug directories i see some files but no dll.<
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