1

使用されるバインディングに関して、例外の処理方法に違いはありますか?

WSHttpBinding または BasicHttpBanding を使用すると、異なる結果が得られます。

たとえば、これはクライアント側のエラー処理ルーチンです。

//MyClient client = new MyClient("WSBinding");
MyClient client = new MyClient("BasicBinding");
try
{

    Result = client.DoTheWork("test");
    Console.WriteLine(Result);
}
catch (FaultException e)
{
    if (e.Code.SubCode.Name.Equals("BadParameters"))
        Console.WriteLine("Bad parameter entered");

    Console.WriteLine(e);
}

WSHttpBinding を使用すると、クライアントで例外をキャッチできますが、basicHttpHandling を使用すると、次のようになります。

Unhandled Exception: System.NullReferenceException: Object reference not set to
an instance of an object.

これは私の web.config です。

<system.serviceModel>
<bindings>
  <basicHttpBinding>
    <binding name="basicBinding">
      <security mode="TransportCredentialOnly">
        <transport clientCredentialType="Windows" />
      </security>
    </binding>
  </basicHttpBinding>   
  <wsHttpBinding>
    <binding name="wsBinding">
      <security mode="None">
        <transport clientCredentialType="None" />
        <message establishSecurityContext="false" />
      </security>
    </binding>
  </wsHttpBinding>
</bindings>
<services>
  <service name="MailboxServiceLibrary.MailboxService" behaviorConfiguration="ServiceBehavior" >
    <!--endpoint address="" binding="wsHttpBinding" bindingConfiguration="wsBinding" contract="ParServiceLibrary.IParService">
      <identity>
        <dns value="MyServer.com" />
      </identity>
    </endpoint-->     
    <endpoint address="" binding="basicHttpBinding" bindingConfiguration="basicBinding" contract="ParServiceLibrary.IParService"/>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="ServiceBehavior">
      <serviceMetadata httpGetEnabled="True"/>
      <serviceDebug includeExceptionDetailInFaults="True"/>
    </behavior>
  </serviceBehaviors>
</behaviors>

BasicHttpBinding は Soap 1.1 形式を使用し、WSHttpBinding では Soap 1.2 形式を使用しているようですが、これが原因であるかどうかはわかりません。

ありがとう、

4

2 に答える 2

1

クライアント サイトで例外をキャッチするために間違ったアプローチを使用していたことに気付きました。

使っていた、

if (e.Code.SubCode.Name.Equals("MyFaultID"))

そして、そうでなければならない、

if (e.Code.Name.Equals("MyFaultID"))

このようにして、両方のバインディングで問題なく動作します。

于 2012-05-06T14:31:09.260 に答える
0

これは私には正しく見えません:

<security mode="TransportCredentialOnly"> 

それは "Transport" 、 "Message" または "TransportWithMessageCredential" である必要があります-それが問題の原因かどうかはわかりませんが、basicHttpBinding のセキュリティを追加し、wsHttpBinding のセキュリティを削除したため、これが最終的に公正なテストであるかどうかわかりませんか?

于 2012-05-03T12:21:58.417 に答える