-1

Anyone please explain me. Is REST web service secured for ASP.NET Web Applications?

Sanjay Gupta
  • 186
  • 2
  • 11

2 Answers2

1

It depends what you mean by secured.

If the REST web service is hosted on an SSL secured domain then it would be secure in the sense that data involved would be encrypted.

Justin Harvey
  • 14,446
  • 2
  • 27
  • 30
  • "In that sense" - in what sense? The sense that I suspect you mean is that you'd have some mmitigation against eavesdropping, but if the service doesn't authenticate/authorize its users then SSL has limited benefit. – Dan Puzey Sep 13 '12 at 10:51
0

As written in above answer, it depends on your configuration. You can have a secure or partially secure REST service.

Check below links for clear understanding.

How to configure secure WCF rest services:

How to configure secure RESTful services with WCF using username/password + SSL

Securing WCF Rest services for ASP.NET:

http://forums.asp.net/t/1689271.aspx/1

Community
  • 1
  • 1
Jai Mallesh Babu
  • 325
  • 1
  • 3
  • 11