Hi, i have developped a website in Asp.Net with Visual Studio 2013.
This application use WCF and host a service :
NetTcpBinding b = new NetTcpBinding(); b.PortSharingEnabled = true; b.Security.Mode = SecurityMode.None; host.AddServiceEndpoint(typeof(IDataBulkBsWebServerContract), b, "net.tcp://" + _ipAddress + ":" + _port + "/WebServerService"); host.Open();
All work fine, but when i deploy it on IIS and a client try to connect i have this error message :
Unable to deliver the message because the service at the endpoint address 'net.tcp: //x.x.x.x 1001 / WebServerService' is not available for the protocol of the address.
I have disable my firewall and try to do that : https://www.kcura.com/relativity/Portals/0/Documents/7.5%20Platform%20Site/Content/RSAPI/RSAPI%20Configuration/Configuring%20Net.Pipe%20or%20Net.TCP%20connectivity.htm
but in my services i have not 'Net.Tcp Listener Adapter'.
Please help.