web-dev-qa-db-ja.com

WCFでクライアントのnet.tcpバインディングを構成する方法

私はWCFサービスを初めて利用し、WCFを使用して同じアプリケーションを作成しました。以下の基本コードをご覧ください:

IService1.cs

[ServiceContract]
public interface IService1
{
    [OperationContract]
    string GetData(int value);

    [OperationContract]
    CompositeType GetDataUsingDataContract(CompositeType composite);

    [OperationContract]
    String WelComeMessage(String name);
}

Service1.svc.cs

public class Service1 : IService1
{
    public string GetData(int value)
    {
        return string.Format("You entered: {0}", value);
    }

    public CompositeType GetDataUsingDataContract(CompositeType composite)
    {
        if (composite == null)
        {
            throw new ArgumentNullException("composite");
        }

        if (composite.BoolValue)
        {
            composite.StringValue += "Suffix";
        }

        return composite;
    }

    public String WelComeMessage(String name)
    {
        return String.Format("{0}, Welcome to http://www.csharptutorial.in", name);
    }
}

およびweb.config

<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>

このサービスをnet.tcpバインディングの準備をしたいのですが、net.tcpバインディングを宣言する場所と、net.tcpバインディングを使用してこのサービスを使用する方法を理解するのに役立つ人はいますか?

編集1:

以下のサーバー構成ファイル(WCFサービス構成ファイル内)を更新しました。

<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name="DemoWCF.Service1"
               behaviorConfiguration="MyServiceBehavior">
        <endpoint name="NetTCPBinding_IService1Client"
                  address="net.tcp://localhost:10109/Service1.svc"
                  binding="netTcpBinding"
                  bindingConfiguration="EndPointConfiguration"
                  contract="DemoWCF.IService1" />
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        <Host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:10109/Service1" />
          </baseAddresses>
        </Host>
      </service>
    </services>

    <bindings>
      <netTcpBinding>
        <binding name="NetTCPBinding_IService1"  sendTimeout="00:01:00">
          <security mode="None" />
        </binding>
      </netTcpBinding>
    </bindings>

    <behaviors>
      <serviceBehaviors>
        <behavior name="MyServiceBehavior">
          <serviceMetadata httpGetEnabled="false"/>
          <serviceDebug includeExceptionDetailInFaults="false"/>
          <dataContractSerializer maxItemsInObjectGraph="65536" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

</configuration>

そして以下はクライアント側のコードです:

static void Main(string[] args)
        {
            try
            {
                Service1Client service1Client = new Service1Client("NetTCPBinding_IService1");
                Console.WriteLine(service1Client.WelcomeMessage("Hello from net.tcp"));
                Console.ReadLine();
            }
            catch (Exception ex)
            {
                throw ex;
            }

        }

しかし、それは例外を投げます:

Exception: .Net Framingをサポートしないサービスへのチャネルを作成しようとしました。 HTTPエンドポイントが発生している可能性があります。

内部例外:

{「予期されたレコードタイプ「PreambleAck」、「72」が見つかりました。」}

編集2:

IIS 7.5でWCFサービスをホストし、edit binding ...オプションを使用してnet.tcpバインディングを追加しました。また、コマンドラインからも追加しました。

set site "DemoWCF"-+ bindings。[protocol = 'net.tcp'、bindingInformation = '10108:*']

Webサービスは完全に実行されていることを示しています。

enter image description here

ただし、このWCFサービスをクライアント側で使用することは、同じ例外です。

クライアントコード:

try
{
    ServiceReference1.Service1Client s = new ServiceReference1.Service1Client();
    Response.Write(s.WelcomeMessage("Hello from net.tcp"));
    Response.End();
}
catch (Exception ex)
{
    Response.Write(ex);
    Response.End();
}

クライアントWeb.config:

<bindings>
  <netTcpBinding>
    <binding name="NetTCPBinding_IService1Client">
      <security mode="None" />
    </binding>
  </netTcpBinding>
</bindings>
<client>
  <endpoint address="net.tcp://localhost:10108/Service1.svc" binding="netTcpBinding"
    bindingConfiguration="NetTCPBinding_IService1Client" contract="ServiceReference1.IService1"
    name="NetTCPBinding_IService1Client" />
</client>

同じ例外: .Net Framingをサポートしないサービスへのチャネルを作成しようとしました。 HTTPエンドポイントが発生している可能性があります。

内部例外:

{「予期されたレコードタイプ「PreambleAck」、「72」が見つかりました。」}

編集3:

以下のコードでもサービスを利用しようとしました:

IService1 vService;

                NetTcpBinding b = new NetTcpBinding();
                b.Security.Mode = SecurityMode.Message;
                b.Security.Message.ClientCredentialType = MessageCredentialType.Windows;

                EndpointAddress vEndPoint = new EndpointAddress("net.tcp://localhost:10108/Service1/");
                ChannelFactory<IService1> cf = new ChannelFactory<IService1>(b, vEndPoint);

                vService = cf.CreateChannel();

                try
                {
                    Response.Write("Result from the system " + vService.WelcomeMessage("Hello"));
                }
                catch (Exception ex)
                {
                    Response.Write("Error Occured while connection establish to " + vEndPoint.Uri.ToString());
                }
                Response.End();

それでも同じ例外が発生しますが、誰でも手伝ってくれる?

7
Dhaval Panchal

これに似たものが必要です

<system.serviceModel>
<services>
  <service name="MyApp.Service1"
           behaviorConfiguration="MyServiceBehavior">
    <endpoint name="MyEndPoint"
              address="net.tcp://localhost:9000/Service1"
              binding="netTcpBinding"
              bindingConfiguration="EndPointConfiguration"
              contract="MyApp.IService1" />
    <Host>
      <baseAddresses>
        <add baseAddress="net.tcp://localhost:9000/Service1" />
      </baseAddresses>
    </Host>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="MyServiceBehavior">
      <serviceDebug includeExceptionDetailInFaults="True" />
      <dataContractSerializer maxItemsInObjectGraph="65536" />
    </behavior>
  </serviceBehaviors>
</behaviors>
<bindings>
  <netTcpBinding>
    <binding name="EndPointConfiguration"
             sendTimeout="00:01:00">
      <security mode="None" />
    </binding>
  </netTcpBinding>
</bindings>

'MyApp.Service1'-名前空間を含むサービスの完全な名前を意味します。 'MyApp.IService1'-サービスが実装する名前空間を含む、サービスインターフェイスの完全な名前を意味します。

3
Sergey Yakovlev