簡単な WCF Web サービスを作成しました (このチュートリアルに従って: http://blogs.msdn.com/b/ericwhite/archive/2010/05/11/getting-started-building-a-wcf-web-service.aspx ) 、デフォルトの名前空間を使用したくないため、http: //www.ilovesharepoint.com/2008/07/kill-tempuri-in- に示されている ServiceContract、DataContract、ServiceBehavior、および web.config で独自の名前空間を定義しました。 wcf-services.html
この WCF Web サービスを使用すると、宣言で InvlidOperationException を取得し続けます: ServiceModel クライアント構成セクションでコントラクト 'ABCWcfService.IABCWcfService' を参照する既定のエンドポイント要素が見つかりませんでした。これは、アプリケーションの構成ファイルが見つからなかったか、このコントラクトに一致するエンドポイント要素がクライアント要素に見つからなかったためである可能性があります。
その理由は、カスタマイズされた名前空間の web.config ファイルで行ったエンドポイントの変更によるものであることがわかりました。エンドポイントを含める限り、クライアント コードでこの例外が発生します。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service behaviorConfiguration="ABCWcfService.ABCWcfServiceBehavior" name="ABCWcfService.SkycityWcfService">
<endpoint bindingNamespace="http://www.ABC.com/ABCWcfService" address="" binding="wsHttpBinding" contract="ABCWcfService.IABCWcfService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ABCWcfService.ABCWcfServiceBehavior">
<!-- 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="false" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
クライアント コードでは、次のように単純です。
ABCWcfServiceClient abcWcfServiceClient = new ABCWcfServiceClient();
abcWcfServiceClient.GetWhatsOnDataAsync();
abcWcfServiceClient.GetWhatsOnDataCompleted += new EventHandler<GetDataCompletedEventArgs>(ABCWcfServiceClient_GetWDataCompleted);
1行目に入るたびにこの例外が発生しました。
web.config ファイルのエンドポイント セクションを無効にすれば問題ありません。
誰でも理由を教えてもらえますか?