How to secure a webservice in .net? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T19:43:11Zhttp://stackoverflow.com/feeds/question/829375http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/829375/how-to-secure-a-webservice-in-net4How to secure a webservice in .net?Mohit2009-05-06T12:42:11Z2009-05-06T14:16:40Z
<p>Hi everyone,</p>
<p>I have written a simple .NET webservice, which I will be hosted on a different server may be on different continent. I don't really know. Now, I only had its URL and I tried to use webrequest and webresponse method to access that web service vai HTTP POST. Now, I want to know is there any way to secure the webservice access, so that nobody can exploit it?</p>
<p>for example: My webservice which is here.</p>
<p><a href="http://consultflux.com/Verify/Verification.asmx/Verify?AccountNumber=3223&ProductName=876" rel="nofollow">http://consultflux.com/Verify/Verification.asmx/Verify?AccountNumber=3223&ProductName=876</a></p>
<p>Now, these are all the parameters required to call this webservice. As if now, anyone can exploit it. So how can I make it secure? Although, I am planning to get SSL and this whole thing is happening from server to server, not from client to server?</p>
http://stackoverflow.com/questions/829375/how-to-secure-a-webservice-in-net/829397#8293973Answer by Nick Allen - Tungle139 for How to secure a webservice in .net?Nick Allen - Tungle1392009-05-06T12:47:22Z2009-05-06T12:47:22Z<p>You can pass a service key (much like Amazon WS) in the authorization header of the web request which could be encrypted with an algorithm of your choice, which is then decrypted at the service end and only continue with the execution if the key matches</p>
<p>See section 14.8 in the following URL</p>
<p><a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html" rel="nofollow">http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html</a></p>
http://stackoverflow.com/questions/829375/how-to-secure-a-webservice-in-net/829404#8294041Answer by John Saunders for How to secure a webservice in .net?John Saunders2009-05-06T12:50:37Z2009-05-06T12:50:37Z<p>Unfortunately, you don't have many options since you've used the old ASMX web service technology. The only ways to authenticate someone with ASMX web services, over the Internet, basically amount to "do it yourself".</p>
<p>If I had to do this, I'd use WCF and give myself some options. If I couldn't use WCF, then I'd create a custom HTTP header to pass username and password (over SSL!), and authenticate them on the server. Alternately, I'd use certificates on the client and require them to be sent to the server. IIS can even turn client certificates into Windows identities on the server.</p>
http://stackoverflow.com/questions/829375/how-to-secure-a-webservice-in-net/829430#829430-1Answer by Guido Domenici for How to secure a webservice in .net?Guido Domenici2009-05-06T12:56:59Z2009-05-06T12:56:59Z<p>Typically what you used to secure .NET web services before WCF was Microsoft's <a href="http://msdn.microsoft.com/en-us/library/ms977317.aspx" rel="nofollow">Web Service Extensions (WSE)</a>, now at version 3.0. I have used it successfully in a commercially-available product, and it is rather good as it is based on the W3C ws-* standards. It is possible to successfully interoperate with that from .NET clients (obviously) but also from Java clients if you use Apache Axis. Download at:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=018a09fd-3a74-43c5-8ec1-8d789091255d&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=018a09fd-3a74-43c5-8ec1-8d789091255d&displaylang=en</a></p>
http://stackoverflow.com/questions/829375/how-to-secure-a-webservice-in-net/829815#8298150Answer by Bob The Janitor for How to secure a webservice in .net?Bob The Janitor2009-05-06T14:16:40Z2009-05-06T14:16:40Z<p>We do a fair number of Web services and to secure them we just added a username and password to our request object. In your case you could just add 2 new parameters for a user name and password, or more simply just add one and use something like an authentication code, that you can make as complex or as simple as you want. </p>
<p>Some Ideas are something simple like a list of GUIDs that are acceptable pass keys to an encryption of the requesting servers IP address so that authentication code only works with that IP address verified by the web service. </p>