tags:

views:

20

answers:

1

I some WCF services, which are hosted via WAS (and IIS 7). Is it possible to deactivate some selected services without uninstalling or removing them ?

+1  A: 

Just remove them (their endpoints) from your web.config.

If you don't expose any endpoints, no one can connect to your service.

Marc

marc_s