Using Visual Studio 2010 professional I’m creating a WCF web service and a MVC 3 web site that will consume that web service.
How would I reasonably go around doing that. Should I keep them as seperate projects in the same solution? Can I skip referencing and running the service locally while developing, just use it like a library?
We are doing this on a daily basis like this:
This gives a fast development cycle, and if you stick to the interface operations, also the possibility to deploy the WCF service as a separate entity when you need to go into production, or scale out.