Introduction
When installing a WCFservice
, my browser told me kindly 'A binding instance has already been associated to listen URI.......'. That installation worked on so many other machines before, that it was strange.
How To Possibly Solve
When Googling on this problem, you will find tons of articles indicating to change a binding. In this case, it was astonishingly simply to fix this in IIS. Besides http, we use net.tcp
for our services.
In IIS Manager, under 'Default Web Site', right-click 'Manage Web Site' and then select Advanced Settings. You will see a section called 'Behaviour
'.
Make sure the Enabled Protocols show 'http,net.tcp'. If you would state 'net.tcp,http', you would get the errormessage complaining about your binding instance being already associated.
History
- 2016-06-28: First version