ASP MTS security with IE and Netscape
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?
# 1 Re: ASP MTS security with IE and Netscape
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.dev-archive.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?
>
>
# 2 Re: ASP MTS security with IE and Netscape
> 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
Flacco at 2007-11-12 0:16:15 >

# 3 Re: ASP MTS security with IE and Netscape
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.dev-archive.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.dev-archive.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?
> >
> >
>
# 4 Re: ASP MTS security with IE and Netscape
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>