私は wcf サービスを持っています。これは非同期であり、net tcp バインディングを使用します。これまでのところ、問題なく動作しています。メタデータを取得したり、クライアントのプロキシ クラスを生成したりできます。
ただし、クライアントからサービスにファイルを送信する必要があるため、メッセージ コントラクトを定義する必要があります。このクラスは、STE (セルフ トラッキング エンティティ) もある共通ライブラリにあります。
また、ファイルを送信できるようにする新しい非同期メソッドをサービスに追加します。
私のメッセージ契約は次のとおりです。
[MessageContract]
public class FileDataStream : IDisposable
{
//[MessageHeader(MustUnderstand = true)]
public string Name {get; set;}
//[MessageBodyMember(Order = 1)]
public System.IO.Stream DataStream {get; set;}
}
このクラスを使用すると、以前と同じ方法でメタデータを取得しようとすると、Internet Explorer でページが見つからないと表示されます。クライアントが接続できません。そして、 netstat -ona | を使用すると find "7997" 何も表示されないため、サービスが正しく実行されていません。
ただし、メッセージ コントラクト クラスで messagecontract 属性を削除すると、すべて正常に機能します。すべてが正常に機能するということは、サービスが正しく実行されているためです。
ただし、ファイルのバイナリ情報はサービスに正しく届きません。WCF でのファイルの転送について読んだ例では、常にメッセージ コントラクトが使用されていることがわかります。これは、ファイルの名前などの詳細情報を送信するには、メッセージ コントラクトが必要だからです。
だから私は自分が間違っていることを知りたいです。他の状況では、メタデータを取得できないのは、バインディングが正しく設定されていないためですが、メッセージ コントラクトを使用するときに特別な構成が必要かどうかはわかりません。
私のサービス構成は次のとおりです。
<configuration>
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="ServiceDocumentos" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647" maxBufferPoolSize="2147483647"
transferMode="Streamed" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:20:00"
sendTimeout="00:01:00" maxConnections="100">
<security mode="None"/>
<readerQuotas maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxStringContentLength="2147483647"/>
</binding>
<binding name="ServiceCore" maxBufferSize="67108864"
maxReceivedMessageSize="67108864" maxBufferPoolSize="67108864"
transferMode="Buffered" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:20:00"
sendTimeout="00:01:00" maxConnections="100">
<security mode="None"/>
<readerQuotas maxArrayLength="67108864" maxBytesPerRead="67108864" maxStringContentLength="67108864"/>
<reliableSession enabled="true" inactivityTimeout="00:20:00" />
</binding>
</netTcpBinding>
</bindings>
<services>
<service behaviorConfiguration="CMMSService" name="GTS.CMMS.Service.Service">
<endpoint binding="netTcpBinding" bindingConfiguration="ServiceDocumentos"
name="ServiceDocumentos" contract="GTS.CMMS.Service.IServiceDocumentos"
address="ServiceDocumentos/">
</endpoint>
<endpoint address ="ServiceCore/"
binding="netTcpBinding" bindingConfiguration="ServiceCore"
name="ServiceCore" contract="GTS.CMMS.Service.IService">
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"
listenUriMode="Explicit">
</endpoint>
<host>
<baseAddresses>
<add baseAddress="http://localhost:7997/CMMSService" />
<add baseAddress="net.tcp://localhost:7998/CMMSService" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="CMMSService">
<serviceMetadata httpGetEnabled="false"/>
<serviceDebug includeExceptionDetailInFaults="false" />
<dataContractSerializer maxItemsInObjectGraph="2147483647" />
<serviceThrottling
maxConcurrentCalls="64"
maxConcurrentInstances="2147483647"
maxConcurrentSessions="50"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
ありがとう。