0

Is it possible to have a web service require ssl on some urls but not on others? The service as a whole provides 1 function but talks to 2 different clients. I can split it into 2 different services if necessary but was wondering if it's possible.

Shawn
  • 2,356
  • 6
  • 48
  • 82

1 Answers1

0

In IIS (i'm using version 7), there is a option for you site called SSL Settings, in there make sure the Require SSL checkbox is unchecked. This will not force SSL on the service.

However, this will not prevent your SSL required client from using the non SSL link, it will basically allow you to hit the service with and without SSL.

Paritosh
  • 4,243
  • 7
  • 47
  • 80