The XMLHTTP object is still something new to me so bare with me if I'm being stupid.
Our production server is XP 2003 and security is set to Ingegrated Windows Authentication (no anonymous access, Intranet).
Here is just some test code I'm working with.
<%
dim objXMLHTTP
set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP"
response.write request.ServerVariables("ALL_HTTP"
objXMLHTTP.Open "GET", "****://gnet/faq.asp", false
http excluded above for this post
objXMLHTTP.Send
%>
<%=objxmlhttp.GetAllResponseHeaders%>
<%=objXMLHTTP.ResponseText%>
':::::::::::::::::::::::::::::::::::::::::::
AND HERE IS THE RESULTS I GET.
':::::::::::::::::::::::::::::::::::::::::::
HTTP_CONNECTION:Keep-Alive HTTP_ACCEPT:*/* HTTP_ACCEPT_ENCODING:gzip, deflate HTTP_ACCEPT_LANGUAGE:en-us HTTP_AUTHORIZATION:NTLM TlRMTVNTUAADAAAAGAAYAG4AAAAYABgAhgAAABIAEgBAAAAADgAOAFIAAAAOAA4AYAAAAAAAAACeAAAABYKAoEcATwBSAEQATQBBAE4AUwAxAGMAbwBsAHIAaQBsAGUAQwBPAEwAUgBJAEwARQDtGg0LNg3fK7LJnA4ELZh4dQhcbt7kIc5g+RJAszEIyvz43T9uXIzUGZEWLnjVzw4= HTTP_COOKIE:ASPSESSIONIDSAQSADTS=AELHCGDDLMJHNGOENKKEKMNJ; HTTP_HOST:gnet HTTP_USER_AGENT:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)
Content-Length: 1656 Content-Type: text/html Server: Microsoft-IIS/6.0 Negotiate NTLM Date: Wed, 22 Oct 2003 14:28:58 GMT
You are not authorized to view this page
You do not have permission to view this directory or page using the credentials that you supplied because your Web browser is sending a header field that the Web server is not configured to accept.
... rest of MS IE error page ...
Our production server is XP 2003 and security is set to Ingegrated Windows Authentication (no anonymous access, Intranet).
Here is just some test code I'm working with.
<%
dim objXMLHTTP
set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP"
response.write request.ServerVariables("ALL_HTTP"
objXMLHTTP.Open "GET", "****://gnet/faq.asp", false
http excluded above for this post
objXMLHTTP.Send
%>
<%=objxmlhttp.GetAllResponseHeaders%>
<%=objXMLHTTP.ResponseText%>
':::::::::::::::::::::::::::::::::::::::::::
AND HERE IS THE RESULTS I GET.
':::::::::::::::::::::::::::::::::::::::::::
HTTP_CONNECTION:Keep-Alive HTTP_ACCEPT:*/* HTTP_ACCEPT_ENCODING:gzip, deflate HTTP_ACCEPT_LANGUAGE:en-us HTTP_AUTHORIZATION:NTLM TlRMTVNTUAADAAAAGAAYAG4AAAAYABgAhgAAABIAEgBAAAAADgAOAFIAAAAOAA4AYAAAAAAAAACeAAAABYKAoEcATwBSAEQATQBBAE4AUwAxAGMAbwBsAHIAaQBsAGUAQwBPAEwAUgBJAEwARQDtGg0LNg3fK7LJnA4ELZh4dQhcbt7kIc5g+RJAszEIyvz43T9uXIzUGZEWLnjVzw4= HTTP_COOKIE:ASPSESSIONIDSAQSADTS=AELHCGDDLMJHNGOENKKEKMNJ; HTTP_HOST:gnet HTTP_USER_AGENT:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)
Content-Length: 1656 Content-Type: text/html Server: Microsoft-IIS/6.0 Negotiate NTLM Date: Wed, 22 Oct 2003 14:28:58 GMT
You are not authorized to view this page
You do not have permission to view this directory or page using the credentials that you supplied because your Web browser is sending a header field that the Web server is not configured to accept.
... rest of MS IE error page ...