Click to See Complete Forum and Search --> : ASP MTS security with IE and Netscape


Patrick Long
09-05-2000, 07:24 PM
Anyone implementing a DNA application across ASP, MTS and SQL 7.0 which must
support IE and Netscape navigator?

If so what security mechanism are you using?

Michael Howard
09-06-2000, 02:05 PM
what do you mean by 'what security mechanism'? if you mean which auth scheme,
then you need to use either basic auth over ssl/tls or client certificates.
nscp does not support digest auth or any other auth mechanisms. next issue
is whether you want to delegate the client's credentials to the sql server
database. there are scalability issues with this however.

check out http://marketplace.devx.com/product.asp?pf_id=5654 for more info
on this.

cheers,mh

"Patrick Long" <Patrick_long@compuserve.com> wrote:
>Anyone implementing a DNA application across ASP, MTS and SQL 7.0 which
must
>support IE and Netscape navigator?
>
>If so what security mechanism are you using?
>
>

Flacco
09-12-2000, 02:53 AM
> Anyone implementing a DNA application across ASP, MTS and SQL 7.0 which
must
> support IE and Netscape navigator?
>
> If so what security mechanism are you using?

For authentication, basic authentication over SSL

Eli Allen
01-04-2001, 11:53 PM
For info on using digest authentication with Mozilla:
http://bugzilla.mozilla.org/show_bug.cgi?id=15860

--
Eli Allen
eallen@bcpl.net

"Michael Howard" <mikehow@microsoft.com> wrote in message
news:39b6796d$1@news.devx.com...
>
> what do you mean by 'what security mechanism'? if you mean which auth
scheme,
> then you need to use either basic auth over ssl/tls or client
certificates.
> nscp does not support digest auth or any other auth mechanisms. next issue
> is whether you want to delegate the client's credentials to the sql server
> database. there are scalability issues with this however.
>
> check out http://marketplace.devx.com/product.asp?pf_id=5654 for more info
> on this.
>
> cheers,mh
>
> "Patrick Long" <Patrick_long@compuserve.com> wrote:
> >Anyone implementing a DNA application across ASP, MTS and SQL 7.0 which
> must
> >support IE and Netscape navigator?
> >
> >If so what security mechanism are you using?
> >
> >
>

Michael Howard
01-10-2001, 06:41 PM
to the best of my knowledge, NSCP6 does not support digest auth.

"Eli Allen" <eallen@bcpl.net> wrote:
>For info on using digest authentication with Mozilla:
>http://bugzilla.mozilla.org/show_bug.cgi?id=15860
>
<snip>