私は現在WCFを学んでおり、非常に奇妙な問題を抱えています。
WCF サービスを作成し、コンソール アプリケーションでホストしました。クライアントを作成し、クライアントのデバッグを開始すると、すべてが期待どおりに機能します。ブラウザは、サービスで指定されたアドレスにヒットします。しかし、デバッグせずにクライアントを実行すると、例外が発生します。私はずっとサービスに触れていません。クライアントのみ。サービスは、コンソール アプリケーションでホストされます。
また、非常に奇妙なことに気付きました。クライアントに console.readline() を入れました。クライアントのデバッグ中にデバッガーをアタッチすると、サービスがホストされていることを示す WCF サービス デスクトップ通知が表示され、サービスを使用できるようになり、動作します。ブラウザ経由でアドレスにアクセスすることもできます。デバッガーをデタッチすると、ブラウザーでアドレスが機能しません。再接続すると、再び機能し、別のdesktp通知が表示されます。これは、デバッグ時にのみサービスが稼働していることを示しています。デバッガーを終了すると、サービスが終了します。しかし、私はサービスに触れているわけではありません。ずっとクライアントだけです。
私が狂っていないことを教えてください:(
私のアドレス:
http://localhost:8732/Design_Time_Addresses/MASService/Service1/
例外: メッセージを受け入れることができる [MyAddress] でリッスンしているエンドポイントがありませんでした。これは、多くの場合、アドレスまたは SOAP アクションが正しくないことが原因です。詳細については、InnerException (存在する場合) を参照してください。
これは私のサービス構成です:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
<!-- When deploying the service library project, the content of the config file must be added to the host's
app.config file. System.Configuration does not support config files for libraries. -->
<system.serviceModel>
<services>
<service name="MASService.MasOperationsService" behaviorConfiguration="SimpleServiceBehavior">
<endpoint address="" binding="wsHttpBinding" contract="MASService.IMasOperations">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8732/Design_Time_Addresses/MASService/Service1/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="SimpleServiceBehavior">
<!-- 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>
これは私のサービス ホスト構成 (コンソール アプリ) です。
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
<service name="MASService.MasOperationsService">
<endpoint address="http://localhost:8733/Design_Time_Addresses/MASService/Service1"
binding="basicHttpBinding" bindingConfiguration="" contract="MASService.IMasOperations" />
</service>
</services>
</system.serviceModel>
</configuration>
これは私のクライアント構成です (コンソール アプリ):
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IMasOperations" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8732/Design_Time_Addresses/MASService/Service1/"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IMasOperations"
contract="ServiceReference1.IMasOperations" name="WSHttpBinding_IMasOperations">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
</configuration>