A Visual Studio 2008 project in one solution needs to reference a WCF service in another VS 2008 solution on the same development machine. Does anybody have any suggestions on how best to accomplish this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Host the service, and then use the URI of the hosted service in the other project to have VS create a proxy for you.
Here’s a step by step article on how to add a reference. And here’s an article that teaches you how to host a service in VS (which is probably the simplest thing to do while developing). I’d recommend you host your service in IIS, however, even during development.