WCF Named Pipes의 최소한의 예를 찾고 있습니다 (이름이 지정된 파이프를 통해 통신 할 수있는 두 개의 최소 응용 프로그램, 서버 및 클라이언트가 필요합니다.)
Microsoft는 HTTP를 통해 WCF를 설명 하는 시작하기 자습서 를 제공하며 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();
}
명명 된 파이프를 사용하려면 클라이언트를 어떻게 생성합니까?