1

ASMXサービスと同じコードが2つの異なるサーバーにデプロイされていますが、1つのサーバーで例外またはエラーが発生するたびに、返される例外メッセージは両方のサーバーで異なります。具体的には、障害文字列が異なります。以下に返されるサンプルメッセージは次のとおりです。両方のサーバーからのエラー

最初のサーバーからのメッセージ

The remote server returned an error: (500) Internal Server Error.
SOAP Response: 

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <soap:Body>
    <soap:Fault>
      <faultcode>soap:Client</faultcode>
      <faultstring>Fault occurred</faultstring>
      <faultactor>http://bbbonline.consumerservice/service.asmx?op=FileComplaint</faultactor>
      <detail>ErrorOccured at so and so..</detail>
    </soap:Fault>
  </soap:Body>
</soap:Envelope>

2番目のサーバーからのメッセージ

The remote server returned an error: (500) Internal Server Error.
SOAP Response: 
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <soap:Body>
    <soap:Fault>
      <faultcode>soap:Client</faultcode>
      <faultstring>
        System.Web.Services.Protocols.SoapException: Fault occurred
        at BBBOnline.Application.MyService.MySoapException(XmlNode ErrorNode)
        at BBBOnline.Application.MyService.FileAComplaint(String SSN, String Buisness, String Issue, String Reason, String date)
      </faultstring>
      <faultactor>http://bbbonline.consumerservices/service.asmx?op=FileComplaint</faultactor>
      <detail>ErrorOccured..</detail>
    </soap:Fault>
  </soap:Body>
</soap:Envelope>

上記の両方のメッセージでFaultStringは異なりますが、両方のサーバーのコードは完全に同じです。

4

1 に答える 1

0

この問題は通常、2つのサーバー上のweb.configファイルの違いが原因で発生します。特に、<customErrors>要素が異なるかどうかを確認してください。

machine.configweb.configsが同一である場合は、2つのサーバー上のファイルの違いを探します。

于 2012-11-29T22:37:27.217 に答える