web-dev-qa-db-ja.com

SSL経由でHttpWebRequestを使用してリクエストを送信すると、エラー502(Bad Gateway)が発生する

コマンドを送信し、SSL経由で応答を取得するために、クラシックASPに次のスニペットがあります。

_Dim xmlHTTP
Set xmlHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.3.0")
xmlHTTP.open "POST", "https://www.example.com", False
xmlHTTP.setRequestHeader "Content-Type","application/x-www-form-urlencoded"
xmlHTTP.setRequestHeader "Content-Length", Len(postData)
xmlHTTP.Send postData
If xmlHTTP.status = 200 And Len(message) > 0 And Not Err Then
   Print xmlHTTP.responseText
End If
_

次に、C#でリクエストを再実装するためのリファレンスとして このコード を使用しました。

_private static string SendRequest(string url, string postdata)
{
   WebRequest rqst = HttpWebRequest.Create(url);
   // We have a proxy on the domain, so authentication is required.
   WebProxy proxy = new WebProxy("myproxy.mydomain.com", 8080);
   proxy.Credentials = new NetworkCredential("username", "password", "mydomain");
   rqst.Proxy = proxy;
   rqst.Method = "POST";
   if (!String.IsNullOrEmpty(postdata))
   {
       rqst.ContentType = "application/x-www-form-urlencoded";

       byte[] byteData = Encoding.UTF8.GetBytes(postdata);
       rqst.ContentLength = byteData.Length;
       using (Stream postStream = rqst.GetRequestStream())
       {
           postStream.Write(byteData, 0, byteData.Length);
           postStream.Close();
       }
   }
   ((HttpWebRequest)rqst).KeepAlive = false;
   StreamReader rsps = new StreamReader(rqst.GetResponse().GetResponseStream());
   string strRsps = rsps.ReadToEnd();
   return strRsps;
}
_

問題は、GetRequestStreamを呼び出すと、メッセージ"The remote server returned an error: (502) Bad Gateway."でWebExceptionを取得し続けることです。

最初は、SSL証明書の検証と関係があると思いました。そこで、次の行を追加しました。

_ServicePointManager.CertificatePolicy = new AcceptAllCertificatePolicy();
_

どこ

_public class AcceptAllCertificatePolicy : ICertificatePolicy
{
    public bool CheckValidationResult(ServicePoint srvPoint, 
                                      System.Security.Cryptography.X509Certificate certificate,
                                      WebRequest request, 
                                      int certificateProblem)
    {
        return true;
    }
}
_

そして、私は同じ502エラーを取得し続けます。何か案は?

24
Leonardo

これの助けを借りて 問題のより詳細な説明を得ました:プロキシはメッセージを返していました: "ユーザーエージェントは認識されません。」手動で設定しました。また、説明したように GlobalProxySelection.GetEmptyWebProxy ()を使用するようにコードを変更しました here 。最終的な作業コードは以下に含まれています。

private static string SendRequest(string url, string postdata)
{
    if (String.IsNullOrEmpty(postdata))
        return null;
    HttpWebRequest rqst = (HttpWebRequest)HttpWebRequest.Create(url);
    // No proxy details are required in the code.
    rqst.Proxy = GlobalProxySelection.GetEmptyWebProxy();
    rqst.Method = "POST";
    rqst.ContentType = "application/x-www-form-urlencoded";
    // In order to solve the problem with the proxy not recognising the user
    // agent, a default value is provided here.
    rqst.UserAgent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)";
    byte[] byteData = Encoding.UTF8.GetBytes(postdata);
    rqst.ContentLength = byteData.Length;

    using (Stream postStream = rqst.GetRequestStream())
    {
        postStream.Write(byteData, 0, byteData.Length);
        postStream.Close();
    }
    StreamReader rsps = new StreamReader(rqst.GetResponse().GetResponseStream());
    string strRsps = rsps.ReadToEnd();
    return strRsps;
}
26
Leonardo

エラー応答のエンティティ本体を読み取ります。何が起こっているのかについてのヒントがあります。

そのためのコードは次のとおりです。

catch(WebException e)
{
if (e.Status == WebExceptionStatus.ProtocolError)
{
    WebResponse resp = e.Response;
    using(StreamReader sr = new StreamReader(resp.GetResponseStream()))
    {
         Response.Write(sr.ReadToEnd());
    }
}
}

エラー応答の完全な内容が表示されるはずです。

32
feroze

Webサービスのwsdlがドメイン名とSSL証明書と「議論している」可能性があります。 IISは、IIS登録済みドメイン名(デフォルトではローカルドメイン上のマシン名であり、必ずしもWebドメインではない)を使用してWebサービスのWSDLを自動生成します) 。証明書ドメインがSOAP12アドレスのドメインと一致しない場合、通信エラーを受け取ります。

1
Joel Etherton

UserAgentがありません

例えば:request.UserAgent = "Mozilla/4.0(compatible; MSIE 7.0; Windows NT 5.1)";

1

Javaアプリケーションが時間内に応答しない場合、リモートマシン上のJavaプロキシがリクエストをタイムアウトし、.NETのデフォルトタイムアウトが役に立たないため、これは私にとって起こりました。次のコードは、すべての例外をループし、実際にプロキシから送信されたものかどうかを判断するのに役立つ応答を書き出します。

static void WriteUnderlyingResponse(Exception exception)
{
    do
    {
        if (exception.GetType() == typeof(WebException))
        {
            var webException = (WebException)exception;
            using (var writer = new StreamReader(webException.Response.GetResponseStream()))
                Console.WriteLine(writer.ReadToEnd());
        }
        exception = exception?.InnerException;
    }
    while (exception != null);
}

プロキシからの応答本文は次のようになりました。

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>502 Proxy Error</title>
</head><body>
<h1>Proxy Error</h1>
<p>The proxy server received an invalid
response from an upstream server.<br />
The proxy server could not handle the request <em><a href="/xxx/xxx/xxx">POST&nbsp;/xxx/xxx/xxx</a></em>.<p>
Reason: <strong>Error reading from remote server</strong></p></p>
</body></html>
0
Alexandru