Example #1
0
 public void TestTranslatorProtocol()
 {
     NodeEndpointTestCases.TestProtocol(CreateReversedNamePipeProtocolFactory(), "CalculationService", "localhost/CalculationService");
 }
Example #2
0
 public void TestHttpProtocol()
 {
     NodeEndpointTestCases.TestProtocol(new HttpProtocolFactory(), "http://+:8768/CalculationService/", "http://localhost:8768/CalculationService/");
 }
Example #3
0
 public void TestTcpProtocol()
 {
     NodeEndpointTestCases.TestProtocol(new TcpProtocolFactory(), "8765", "127.0.0.1:8765");
 }
Example #4
0
 public void TestNamedPipeProtocol()
 {
     NodeEndpointTestCases.TestProtocol(new NamedPipeProtocolFactory(), "CalculationService", "localhost/CalculationService");
 }
Example #5
0
 public void TestAuthProtocol()
 {
     NodeEndpointTestCases.TestProtocol(CreateAuthNamePipeProtocolServerFactory(), CreateAuthNamePipeProtocolClientFactory(), "CalculationService", "localhost/CalculationService");
 }
Example #6
0
 public void TestGzipProtocol()
 {
     NodeEndpointTestCases.TestProtocol(CreateGzipNamePipeProtocolFactory(), "CalculationService", "localhost/CalculationService");
 }