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