I have the source to two Visual Studio solutions. One is a website that calls a WCF service, and the other solution is a WCF service that compiles into a DLL. The website has the WCF service's binary DLL as a reference.
Here's the problem: when I run the website, an uncaught exception makes its way up from the WCF service.
How do I run the WCF service in Visual Studio so I can set break points in the WCF service? The service project is setup to compile into a DLL and I can't debug a a DLL with break points. What do I need to do to "run" the service in once instance of Visual Studio and trigger the exception from running the website in another instance?
This is my first exposure to WCF.
PS: I tried adding the project of the WCF service to the website's solution and get some error about how I won't be able to debug it because of dependencies the WCF service has, so that doesn't appear to be on option.