I'm in the process of doing a server migration, and I've come across an issue when trying to host a WCF application and IIS at the same time using the same IP address and port. (this works perfectly on our other server)
The new server is a Windows 2012 R2 Standard
It is running IIS 8.5.9600.16384
I'm trying to create an exact copy of the previous installation, so that all of our existing clients will continue to work when the switch is flicked (on Tuesday).
The WCF Application runs as a Windows Service.
When I 'start' the web-site, I can access the web-services on there.
If I stop the web-site and start my WCF application, I can then access my WCF's services.
If I then re-start the web-site, the WCF services stop working.
Basically, I can't get both to work at the same time, but this worked fine on the previous server.
Am I missing a setting somewhere?
The addresses I'm listening on are...
https://test.banana.com/WebServices/myservice.asmx
and
https://test.banana.com/WCFService/mywcf.rem
*I'm using a dummy domain name for this example
**Also, the live server has a different domain name, so there's no conflict there.