How do I skip the IIS authetication prompt with anonymous dissabled?

How do I skip the IIS authetication prompt with anonymous dissabled?

am 10.02.2006 20:51:28 von Ian

We have a product which runs on our website which requires that
Anonymous access not to be checked in IIS. It uses Basic or Integrated
Windows authentication.
We are also trying to create our own login screen for that product
where a user can enter his/her userid and password and bypass the Basic
authentication prompt.
Can I post that information from the form to IIS, bypassing the IIS
login prompt?
Can the authentication header that IIS creates when a user is
authenticated be created from our custom .net login page instead?

Re: How do I skip the IIS authetication prompt with anonymous dissabled?

am 10.02.2006 22:32:51 von tomk (A

"ian" wrote in message
news:1139601088.103637.312250@z14g2000cwz.googlegroups.com.. .
> We have a product which runs on our website which requires that
> Anonymous access not to be checked in IIS. It uses Basic or Integrated
> Windows authentication.
> We are also trying to create our own login screen for that product
> where a user can enter his/her userid and password and bypass the Basic
> authentication prompt.
> Can I post that information from the form to IIS, bypassing the IIS
> login prompt?
> Can the authentication header that IIS creates when a user is
> authenticated be created from our custom .net login page instead?

If you're using your own custom auth then what's the point of denying
anonymous access (IIS auth)?

--
Tom Kaminski IIS MVP
http://www.microsoft.com/windowsserver2003/community/centers /iis/
http://mvp.support.microsoft.com/
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS

Re: How do I skip the IIS authetication prompt with anonymous dissabled?

am 10.02.2006 22:42:01 von Ian

We are taking a 3rd party application (no access to code) and we are
trying to provide a nice login screen. This product requires Basic or
Windows integrated authentication.. Therefore, we were hoping to
bypass the default IIS login by providing the required security object
to IIS from our form...

Re: How do I skip the IIS authetication prompt with anonymous dissabled?

am 14.02.2006 05:00:16 von Ken Schaefer

See:
http://www.issociate.de/board/post/271019/Desperate_-_Bypass _Basic_Authentication_Prompt?.html

Additionally, you can bypass the login prompt if your clients are using IE
and you can meet the following:
http://support.microsoft.com/?id=258063

Cheers
Ken


"ian" wrote in message
news:1139607721.473897.132940@z14g2000cwz.googlegroups.com.. .
: We are taking a 3rd party application (no access to code) and we are
: trying to provide a nice login screen. This product requires Basic or
: Windows integrated authentication.. Therefore, we were hoping to
: bypass the default IIS login by providing the required security object
: to IIS from our form...
: