6

私は次の WCF を持っています:

    [OperationContract]
    IList<OperationRoomDto> GetOperationRooms();

この WCF を使用する Web サイトがあります。Visual Studio (Asp.Net 開発サーバー) を使用すると正常に動作しますが、WCF を IIS にデプロイすると、次の例外が発生します。

リモート サーバーがエラーを返しました: (405) メソッドは許可されていません。

この WCF (IIS 上) をテストするための簡単な Web サイトを作成しましたが、うまくいきました。

これは、Web サイトの web.config ファイルの一部です。

  <endpoint address="http://server/WcfService"
            binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IMessageService"
            contract="MyProject.Web.Wcf.IMessageService" name="BasicHttpBinding_IMessageService">
  </endpoint>

そして、Web サービス構成ファイルのこの部分:

  <system.serviceModel>
<behaviors>
  <serviceBehaviors>
    <behavior>
      <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
      <serviceMetadata httpGetEnabled="true" />
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="true" />
    </behavior>
  </serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />

隠し例外を取得するために w3wp.exe サービスをデバッグしようとしましたが、Web サービス メソッドにブレーク ポイントを設定しましたが、デバッガーはそこに到達することさえできず、Web サービス クラスに到達する前に例外が発生しました。

4

1 に答える 1

12

問題を突き止めました。wcf の URL が正しくないためです。サービス ファイル名がありません。

<endpoint address="http://server/WcfService"

になるはずです:

<endpoint address="http://server/WcfService/Service.svc"
于 2012-09-30T07:40:04.413 に答える