I have many WPF/WCF applications and all are setup the same using the same frameworks, security, authentication, exception handling, etc. I'm able to debug WCF calls on the server in all apps except for one even though it seems to be configured exactly
like all others which debug as expected. In all cases I'm using IIS from Windows 10 Pro and VS 2017, and call the web services like this:
http://localhost/someApp.Web/SomeService.svc
the solutions is configured for debug, Any CPU.
Web.config: <compilation debug="true" targetFramework="4.7">
Any ideas on what else i can look for to understand why this solution wont step into calls on the server but similar solutions will?
Thank you.