views:

25

answers:

2

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

+1  A: 

SSL is not required.

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

John Saunders
can u please suggest a good reference link to this topic
Nipun
http://msdn.microsoft.com/wcf/.
John Saunders
A: 

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

AutomatedTester