22

How to stop Visual Studio 2008 from automatically running my web services.

I have a large Visual Studio 2008 solution that contains a number of web app projects and also several wcf web services. I have set the solution to have only one startup project, yet when I right-click on the web app project and select "Debug" > "Start New Instance" there appear multiple WebDev.WebServer icons in the system tray. There is one for every web service in the project.

Note: My web app project does have one Web Reference, but not to any of the WCF web services that are being launched.

I want to be able to stop these un-wanted web services from running.

Howard Ricketts
  • 721
  • 5
  • 6

6 Answers6

50

Eureka!

  1. Click on the web service project.
  2. Look at the "Properties" tab/window (Ctrl+W, P). For a web service you will see a property called "Always Start When Debugging" (which of course is set to True by default). NOTE: This is on the property sheet, not the property dialog for the project.
  3. Set "Always Start When Debugging" = False for all the un-wanted web apps/ web services.

My solution builds and starts really quick now!

Community
  • 1
  • 1
Howard Ricketts
  • 721
  • 5
  • 6
  • that was what i was trying to find (even though i had no webservice available). – Pure.Krome Sep 11 '09 at 10:43
  • Awesome. This was driving me crazy. It was launching even when I was just attaching a debugger. – skeeve Jun 17 '11 at 02:10
  • 2
    very tricky! ,, why they don't have this option under the property dialog! i was looking for such option all over the place,, bad design :( – kaptan Aug 01 '12 at 00:30
  • Awesome! This has been killing me - how are they gonna set that by default and not put that on the debug properties?! Some PM knew he was quitting as soon as this shipped this! – Gene Mar 10 '13 at 19:14
4

This isn't ideal, but I generally just right-click->unload them until I need them. They are still available in the solution (to reload on demand), but it avoids this launch niggle, and releases some resources (and makes "build solution" quicker etc).

Marc Gravell
  • 927,783
  • 236
  • 2,422
  • 2,784
1

Try right clicking on your SOLUTION.

Common Properties -> Startup Project -> Single Startup Project (and selecting the website only).

try that?

Pure.Krome
  • 78,923
  • 102
  • 356
  • 586
1

Not a direct answer, but why do you keep those projects in 1 solution?

If you break it up you solve your problem and you could have multiple instances of VS2008 running to work on those Apps and Services simultaneously.

Henk Holterman
  • 236,989
  • 28
  • 287
  • 464
1

I think there have been some updates to VS 2010 since this was originally answered. The way I'm doing this is to:

1) Right click the WCF project and go to 'Properties'

2) Select the tab for 'WCF Options'

3) Uncheck the box that says 'Start WCF Service Host when debugging another project in the same solution'

0

Are there any project dependencies set between your project and the WCF projects? That might cause VS to think it needs to get them all started before running your main project.

Vinay Sajip
  • 84,585
  • 13
  • 155
  • 165