web-dev-qa-db-ja.com

WCF名前付きパイプの最小例

WCF名前付きパイプの最小限の例を探しています(名前付きパイプを介して通信できる2つの最小限のアプリケーション、サーバーとクライアントを期待しています)。

Microsoftには、HTTP経由のWCFについて説明しているブリリアント記事Getting Started Tutorialがあり、WCFと名前付きパイプ。

インターネットでいくつかの投稿を見つけましたが、それらは少し「高度」です。最低限必要な機能だけが必要なので、コードを追加してアプリケーションを動作させることができます。

名前付きパイプを使用するように置き換えるにはどうすればよいですか?

<endpoint address="http://localhost:8000/ServiceModelSamples/Service/CalculatorService"
    binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ICalculator"
    contract="ICalculator" name="WSHttpBinding_ICalculator">
    <identity>
        <userPrincipalName value="OlegPc\Oleg" />
    </identity>
</endpoint>

名前付きパイプを使用するように置き換えるにはどうすればよいですか?

// Step 1 of the address configuration procedure: Create a URI to serve as the base address.
Uri baseAddress = new Uri("http://localhost:8000/ServiceModelSamples/Service");

// Step 2 of the hosting procedure: Create ServiceHost
ServiceHost selfHost = new ServiceHost(typeof(CalculatorService), baseAddress);

try
{
    // Step 3 of the hosting procedure: Add a service endpoint.
    selfHost.AddServiceEndpoint(
        typeof(ICalculator),
        new WSHttpBinding(),
        "CalculatorService");

    // Step 4 of the hosting procedure: Enable metadata exchange.
    ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
    smb.HttpGetEnabled = true;
    selfHost.Description.Behaviors.Add(smb);

    // Step 5 of the hosting procedure: Start (and then stop) the service.
    selfHost.Open();
    Console.WriteLine("The service is ready.");
    Console.WriteLine("Press <ENTER> to terminate service.");
    Console.WriteLine();
    Console.ReadLine();

    // Close the ServiceHostBase to shutdown the service.
    selfHost.Close();
}
catch (CommunicationException ce)
{
    Console.WriteLine("An exception occurred: {0}", ce.Message);
    selfHost.Abort();
}

名前付きパイプを使用するクライアントを生成するにはどうすればよいですか?

89
javapowered

この素晴らしい小さなチュートリアル を見つけました。 リンク切れキャッシュバージョン

また、MicrosoftのチュートリアルであるNiceにも従いましたが、パイプも必要でした。

ご覧のとおり、構成ファイルなどの面倒なものは必要ありません。

ところで、彼はHTTPとパイプの両方を使用しています。 HTTPに関連するすべてのコード行を削除するだけで、純粋なパイプの例が得られます。

80
Juan

これを試して。

これがサービス部分です。

[ServiceContract]
public interface IService
{
    [OperationContract]
    void  HelloWorld();
}

public class Service : IService
{
    public void HelloWorld()
    {
        //Hello World
    }
}

ここにプロキシがあります

public class ServiceProxy : ClientBase<IService>
{
    public ServiceProxy()
        : base(new ServiceEndpoint(ContractDescription.GetContract(typeof(IService)),
            new NetNamedPipeBinding(), new EndpointAddress("net.pipe://localhost/MyAppNameThatNobodyElseWillUse/helloservice")))
    {

    }
    public void InvokeHelloWorld()
    {
        Channel.HelloWorld();
    }
}

そして、これがサービスホスティングの部分です。

var serviceHost = new ServiceHost
        (typeof(Service), new Uri[] { new Uri("net.pipe://localhost/MyAppNameThatNobodyElseWillUse") });
    serviceHost.AddServiceEndpoint(typeof(IService), new NetNamedPipeBinding(), "helloservice");
    serviceHost.Open();

    Console.WriteLine("Service started. Available in following endpoints");
    foreach (var serviceEndpoint in serviceHost.Description.Endpoints)
    {
        Console.WriteLine(serviceEndpoint.ListenUri.AbsoluteUri);
    }
58
Anuraj

非常に単純化されたエコーの例 :基本的なHTTP通信を使用するように設計されていますが、app.configクライアントおよびサーバーのファイル。次の変更を行います。

サーバーの app.config ファイルを編集し、httpを削除またはコメントアウトしますbaseAddressエントリおよび名前付きパイプの新しいbaseAddressエントリの追加(net.pipe)。また、通信プロトコルにHTTPを使用しない場合は、serviceMetadataを確認してくださいおよびserviceDebugはコメントアウトまたは削除されます:

<configuration>
    <system.serviceModel>
        <services>
            <service name="com.aschneider.examples.wcf.services.EchoService">
                <Host>
                    <baseAddresses>
                        <add baseAddress="net.pipe://localhost/EchoService"/>
                    </baseAddresses>
                </Host>
            </service>
        </services>
        <behaviors>
            <serviceBehaviors></serviceBehaviors>
        </behaviors>
    </system.serviceModel>
</configuration>

クライアントの app.config ファイルを編集して、basicHttpBindingがコメントアウトまたは削除され、netNamedPipeBindingエントリが追加されます。また、パイプを使用するには、endpointエントリを変更する必要があります。

<configuration>
    <system.serviceModel>
        <bindings>
            <netNamedPipeBinding>
                <binding name="NetNamedPipeBinding_IEchoService"/>
            </netNamedPipeBinding>
        </bindings>
        <client>
            <endpoint address              = "net.pipe://localhost/EchoService"
                      binding              = "netNamedPipeBinding"
                      bindingConfiguration = "NetNamedPipeBinding_IEchoService"
                      contract             = "EchoServiceReference.IEchoService"
                      name                 = "NetNamedPipeBinding_IEchoService"/>
        </client>
    </system.serviceModel>
</configuration>

上記の例は名前付きパイプでのみ実行されますが、複数のプロトコルを使用してサービスを実行することを妨げるものは何もありません。知る限りでは、名前付きパイプとHTTP(および他のプロトコル)の両方を使用してサーバーでサービスを実行できる必要があります。

また、クライアントのapp.configファイルのバインディングは非常に単純化されています。 baseAddress...を指定するだけでなく、調整可能なさまざまなパラメーターがあります...

14
Alan S

この単純な例を、インターネット上のさまざまな検索結果から作成しました。

public static ServiceHost CreateServiceHost(Type serviceInterface, Type implementation)
{
  //Create base address
  string baseAddress = "net.pipe://localhost/MyService";

  ServiceHost serviceHost = new ServiceHost(implementation, new Uri(baseAddress));

  //Net named pipe
  NetNamedPipeBinding binding = new NetNamedPipeBinding { MaxReceivedMessageSize = 2147483647 };
  serviceHost.AddServiceEndpoint(serviceInterface, binding, baseAddress);

  //MEX - Meta data exchange
  ServiceMetadataBehavior behavior = new ServiceMetadataBehavior();
  serviceHost.Description.Behaviors.Add(behavior);
  serviceHost.AddServiceEndpoint(typeof(IMetadataExchange), MetadataExchangeBindings.CreateMexNamedPipeBinding(), baseAddress + "/mex/");

  return serviceHost;
}

上記のURIを使用して、クライアントの参照をWebサービスに追加できます。

1
Rahbek