all groups > dotnet web services > october 2005 >
You're in the

dotnet web services

group:

Webservices and security


RE: Webservices and security John Scragg
10/24/2005 11:56:08 AM
dotnet web services: Security is a large spectrum. You need to build with security in mind, it is
not something that you can easily lay on top of your service later. There
are many basic security features built into web services and work for most
people connecting from a IIS web server with Windows domain authentication.
For more robust implementations you need to use WSE or even third pary
solutions.

1) WebServices run over whatever port you configure the server to listen on.
That could be 80 or 443. But that is just information, it alone does not
make the service secure or insecure.

2) Login can be handled many ways. Integrated Windows, Forms, Etc. Again,
these are tools. How you use them is what makes your service secure.

This should get you started:

http://msdn.microsoft.com/webservices/webservices/building/security/default.aspx

HTH,

John Scragg

[quoted text, click to view]
Webservices and security UJ
10/24/2005 2:17:25 PM
I've got a network engineer who is absolutely anal about network security.
He is questioning how secure web services are and I can't answer him with
definitive answers. Do web services run over port 80? How about port 443?
Are they secure? He's also paranoid about loginning in - is there a primer
somewhere where I can look at how to make my process connect with
authentication and make sure to keep it secure?

TIA - Jeff.

Re: Webservices and security Usenet Honey Pot
10/25/2005 7:53:45 PM
"UJ" <fred@nowhere.com> wrote in
news:#UKRkcM2FHA.2564@TK2MSFTNGP10.phx.gbl:

[quoted text, click to view]

It's good that he's anal about network security, because you don't seem to
take it very seriously.

Web Services can be protected with a variety of methods - SSL, passing
username/passwords into it, forms authentication, Basic IIS authentication,
Windows Authentication, or using Certificates. Microsoft's Web Service
Enhancement Pack has some add-ons for security.

However, for the most part, SSL + Username/Password as parameters in your
web service function call is a good start : )

--
AddThis Social Bookmark Button