Beispiel #1
0
 public ChildBuilder(int port)
 {
     Console.Write("\n----------------------Child builder is started------------------------------------------");
     comm = new Comm("http://localhost", port);
     Console.Write("\n Sender and receiver started for mother build with address http://localhost:" + port + "/BasicService");
 }
Beispiel #2
0
 public MockTestHarness()
 {
     comm      = new Comm("http://localhost", 9090);
     rcvThread = new Thread(receiverThreadProc);
     rcvThread.Start();
 }