Nipun
Nipun

Reputation: 1485

Web Service in asp.net

Hi I am new to webservice in .net. My questions is do we really require to have the SSL for accessing web methods visible to me.

and if require, where it should be on my side or on cliet side who is providing me webmethods?

Thanks

Upvotes: 0

Views: 74

Answers (2)

AutomatedTester
AutomatedTester

Reputation: 22418

SSL is not required. I use ASHX to create a generic handler. I find that it is a lot more flexible because you can pass in querystring quite easily

Upvotes: 0

John Saunders
John Saunders

Reputation: 161773

SSL is not required.

Also, you should be using WCF for all new development.

Upvotes: 1

Related Questions