c# - 代理在本地工作,但在上传到 webhost 时失败

标签 c# asp.net proxy html-agility-pack

我现在花了很多时间来配置我的代理。目前,我使用一项名为 proxybonanza 的服务。他们为我提供了一个代理,我用它来获取网页。

我正在使用 HTMLAGILITYPACK

现在,如果我在没有代理的情况下运行我的代码,在本地或上传到 webhost 服务器时都没有问题。

如果我决定使用代理,它需要更长的时间,但它仍然可以在本地工作。

 If I publish my solution to, to my webhost I get a SocketException (0x274c) 

 "A connection attempt failed because the connected party did not properly respond
 after a period of time, or established connection failed because connected host has
 failed to respond 38.69.197.71:45623"

我已经调试了很长时间。

我的 app.config 有两个与此相关的条目

httpWebRequest useUnsafeHeaderParsing="true" 
httpRuntime executionTimeout="180"

这帮助我解决了几个问题。

现在这是我的 C# 代码。

 HtmlWeb htmlweb = new HtmlWeb();
 htmlweb.PreRequest = new HtmlAgilityPack.HtmlWeb.PreRequestHandler(OnPreRequest);
 HtmlDocument htmldoc = htmlweb.Load(@"http://www.websitetofetch.com,
                                         "IP", port, "username", "password");

 //This is the preRequest config
 static bool OnPreRequest(HttpWebRequest request)
    {
      request.KeepAlive = false;
        request.Timeout = 100000;
        request.ReadWriteTimeout = 1000000; 
        request.ProtocolVersion = HttpVersion.Version10;
        return true; // ok, go on
    }

我做错了什么?我已经在 appconfig 中启用了跟踪器,但我的虚拟主机上没有日志...?

  Log stuff from app.config

 <system.diagnostics>
 <sources>
  <source name="System.ServiceModel.MessageLogging" switchValue="Warning, ActivityTracing" >
     <listeners>
        <add name="ServiceModelTraceListener"/>
     </listeners>
  </source>


  <source name="System.ServiceModel" switchValue="Verbose,ActivityTracing">
     <listeners>
        <add name="ServiceModelTraceListener"/>
     </listeners>
     </source>
     <source name="System.Runtime.Serialization" switchValue="Verbose,ActivityTracing">
        <listeners>
           <add name="ServiceModelTraceListener"/>
        </listeners>
     </source>
   </sources>
   <sharedListeners>
   <add initializeData="App_tracelog.svclog"
     type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
     name="ServiceModelTraceListener" traceOutputOptions="Timestamp"/>
 </sharedListeners>
 </system.diagnostics>

任何人都可以发现问题,我将这些设置打开和关闭了上千次......

  request.KeepAlive = false;
  System.Net.ServicePointManager.Expect100Continue = false;

卡尔

最佳答案

首先尝试将页面作为字符串下载,然后将其传递给 HtmlAgilityPack。这将使您能够将下载过程中发生的错误与 html 解析过程中发生的错误隔离开来。如果您对 proxybonanza 有疑问(见文末),您将能够将该问题与 HtmlAgilityPack 配置问题隔离开来。

使用 WebClient 下载页面:

// Download page
System.Net.WebClient client = new System.Net.WebClient();
client.Proxy = new System.Net.WebProxy("{proxy address and port}");
string html = client.DownloadString("http://example.com");

// Process result
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
htmlDoc.LoadHtml(html);

如果你想更好地控制请求,请使用 System.Net.HttpWebRequest :

// Create request
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://example.com/");

// Apply settings (including proxy)
request.Proxy = new WebProxy("{proxy address and port}");
request.KeepAlive = false;
request.Timeout = 100000;
request.ReadWriteTimeout = 1000000;
request.ProtocolVersion = HttpVersion.Version10;

// Get response
try
{
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    Stream stream = response.GetResponseStream();
    StreamReader reader = new StreamReader(stream);
    string html = reader.ReadToEnd();
}
catch (WebException)
{
    // Handle web exceptions
}
catch (Exception)
{
    // Handle other exceptions
}

// Process result
HtmlAgilityPack.HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
htmlDoc.LoadHtml(html);

此外,请确保您的代理提供商 (proxybonanza) 允许从您的生产环境访问您的代理。大多数提供商会将对代理的访问限制为某些 IP 地址。他们可能允许访问您在本地运行的网络的外部 IP,但不允许访问您的生产环境的外部 IP 地址。

关于c# - 代理在本地工作,但在上传到 webhost 时失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12717629/

相关文章:

ruby-on-rails - Net::HTTP::Proxy 请求...你是怎么做到的?

c# - 无法修改 MVC 4 内置登录 Controller

c# - 如何在企业架构师中使用 C# 创建状态机图?

asp.net - @Raw 语句在 razor View 文件 (ASP.NET MVC5) 中未知

asp.net - 如何将单独的查询绑定(bind)到 GridView Asp.net C# 中的单独列

c# - 设置自定义控件属性

proxy - 使用 LibGit2Sharp 抛出企业防火墙背后的 Git 网络操作

python - paramiko.ssh_exception.ProxyCommandFailure : 'Broken pipe' )

c# - 从库类公开枚举

c# - Web 应用程序无法启动 : iisexpress. exe 已退出,代码为 0