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"); }
public MockTestHarness() { comm = new Comm("http://localhost", 9090); rcvThread = new Thread(receiverThreadProc); rcvThread.Start(); }