1

我很久以前在 .NET Framework 2.0 上使用 VB 开发了一个旧的 HTTP 客户端应用程序。最近在我们的网络中引入了一个新的代理服务器,并且 VB 应用程序开始遇到“需要 407 代理身份验证”错误。

代理需要 NTLM 身份验证,而程序没有考虑它。

在谷歌搜索了一些网络资源后,我编写了以下代码。

Dim proxy As New System.Net.WebProxy("http://my.proxy.com:81")
proxy.Credentials = System.Net.CredentialCache.DefaultCredentials
proxy.UseDefaultCredentials = true
webreq.Proxy = proxy

但我仍然看到 407 错误。用户正在登录 Windows 域。

我尝试了一些不同(但相似)的方法,但没有成功。

谁能指出我可能缺少的东西?

是否有任何安全策略设置可能会阻止此操作?

我可以联系网络管理员,但他不熟悉应用程序开发,我也不知道我应该问他什么。

任何帮助,将不胜感激。

4

1 回答 1

0

我也在寻找解决方案。也许是安全相关的:他们是否在 Intranet 安全区域中?http://www.codinghorror.com/blog/2005/04/aspnet-ntlm-authentication---is-it-worth-it.html

我在以下网址找到了这个:http ://bytes.com/topic/net/answers/544841-ntlm-authentication-how 这是一个开始,但他们也遇到了问题。

public string SendRequest()
        // run the request and return a string response
        {
            string FinalResponse = "";
            string Cookie = "";

            NameValueCollection collHeader = new NameValueCollection();

            HttpWebResponse webresponse;

             HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URI);

             request.KeepAlive = true;
            request.Timeout = 10000;
            request.Method = "POST";
            request.AllowAutoRedirect = false;
            request.Proxy = WebProxy.GetDefaultProxy();

            string addr = "http://" + ProxyServer + ":" + String.Format("{0:D}", ProxyPort);
            Uri u = new Uri(addr);

            CredentialCache wrCache = new CredentialCache();
            wrCache.Add(u, "Negotiate", System.Net.CredentialCache.DefaultNetworkCredentials);

            request.Proxy.Credentials = wrCache;

            try
            {
                byte[] bytes = Encoding.ASCII.GetBytes(Request);
                request.ContentLength = bytes.Length;

                Stream oStreamOut = request.GetRequestStream();
                oStreamOut.Write(bytes, 0, bytes.Length);
                oStreamOut.Close();

                webresponse = (HttpWebResponse)request.GetResponse();
                if (null == webresponse)
                {
                    FinalResponse = "No Response from " + URI;
                }
                else
                {
                    Encoding enc = System.Text.Encoding.GetEncoding(1252);
                    StreamReader rdr = new StreamReader(webresponse.GetResponseStream(),enc);
                    FinalResponse = rdr.ReadToEnd();
                }

            }//End of Try Block

            catch (WebException e)
            {
                // some kind of error..
                if (407 == (int)e.Status)
                {
                }

                throw CatchHttpExceptions(FinalResponse = e.Message);
            }
            catch (System.Exception e)
            {
                throw new Exception(FinalResponse = e.Message);
            }
            finally
            {
                // BaseHttp = null;
            }
            return FinalResponse;
        } //End of SendRequestTo method
于 2013-06-04T15:33:15.013 回答