I've got a WCF service using the netTcpBinding, and no other binding. It works great when I manually deploy the files to IIS, and my client application can consume the service when I enter the net.tcp://localhost(etc) url. Now I'm trying to get the project to run in Visual Studio, so I can have the service and client in the same solution, and reference the service directly instead of going through IIS, and having to redeploy files manually.

Neither IIS Express nor the Visual Studio Development Server can use net.tcp, so they're out. In the Web tab of my service project, the "Use Local IIS Web Server" or "Use Custom Web Server" looked like good options, but neither of them will accept a URL that doesn't begin with http.

Is there some way of making my WCF service use IIS, and having my client reference the service directly (so that I don't have to deploy files to IIS, and then update service reference, every time I compile)?

link|improve this question
Isn't the question how do you host a net.tcp service in IIS? – John Saunders Dec 21 '11 at 0:00
@JohnSaunders Not really; the service is hosted in IIS currently. I am just having trouble getting Visual Studio to acknowledge that service since it's rejecting the address. – Zugbo Dec 21 '11 at 17:29
As an experiment, create a WCF Service Library project and notice how it behaves when you press F5. It is hosted by the WCF Service Hosting utility, and that's set up via the project settings. – John Saunders Dec 21 '11 at 17:35
@JohnSaunders I can make a project using WcfSvcHost.exe and it works, but it doesn't solve my problem. I tried using "start external program" to actually host my WCF Service Application project in WcfSvcHost, and it does work, but when I try to add a reference to that project, it still tries to pick up the http:// address defined in the Servers section. Also, I can't change to a Service Library project for my main project, since in production I have to host in IIS. – Zugbo Dec 22 '11 at 19:39
Start the service in WcfSvcHost, then try to add a reference to the hosted URL. – John Saunders Dec 22 '11 at 20:05
show 1 more comment
feedback

3 Answers

up vote 0 down vote accepted

Start the service in WcfSvcHost, then try to add a reference to the hosted URL.

Unfortunately, the VS IDE has no technique to start services automatically, except for when you're debugging.

Also, you always need to update service references explicitly. You need to decide which of your changes are ready to be applied to which clients of your service. It would be bad to assume that all clients should be updated as soon as you make a change then compile your service.

link|improve this answer
feedback

You could add a project, which you don't deploy, but only use during development, that self-hosts the service.

link|improve this answer
feedback

It would be bad to ALWAYS assume that all clients should be updated as soon as you make a change then compile your service. But it would be bloody useful if you could. Turning this behaviour on for selected projects would save lots of people lots of time!!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.