I am new to WCF. Is the client connected when the service is instantiated
SampleService client = new SampleService();
Or does it connect and disconnect when a method is called on the client?
client.sampleMethod();
I want to connect to the client and send multiple messages across the same connection. Is this possible?