WCF duplex TCP communication error
I have a sample service to test WCF net.tcp communication. It is very simple service and all it does is subscribing a client to the service and then calls callbackchannel to notify all connected clients about broadcasted message. The service is hosted inside IIS 7.5. Here is service code and test client to test it. [ServiceContract(CallbackContract = typeof(ISampleServiceCallBack), SessionMode = SessionMode.Required)] public interface ISampleCuratioService { [OperationContract(IsOneWay = true)] void SubcribeToService(string sub); [OperationContract] string GetData(int value);