Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Basic Authentication problem

Reply
Thread Tools

Basic Authentication problem

 
 
Barry
Guest
Posts: n/a
 
      02-05-2004
The MS fix for IE broke how users access our site (if they patch their
browsers), so I need a solution to get users logged onto our site
transparently.

Basically we used to log on to the site by:
http://username/main/ which uses basic auth, but now that
doesn't work. I would like to find a way where I can still use basic auth
and tell the people hitting our site to modify their url to:
http://www.mysite.com/main/?uid=username&pwd=pwd but I haven't found
anything that will solve my needs in the .net framework.

Does anyone know of any controls or funcs that I can use to accomplish what
I'm looking for?

I'm using IIS 5, and windows 2000

Thanks,
Barry


 
Reply With Quote
 
 
 
 
Showjumper
Guest
Posts: n/a
 
      02-05-2004
Any reason you cant use Forms Authentication?
"Barry" <> wrote in message
news:eq%...
> The MS fix for IE broke how users access our site (if they patch their
> browsers), so I need a solution to get users logged onto our site
> transparently.
>
> Basically we used to log on to the site by:
> http://username/main/ which uses basic auth, but now

that
> doesn't work. I would like to find a way where I can still use basic auth
> and tell the people hitting our site to modify their url to:
> http://www.mysite.com/main/?uid=username&pwd=pwd but I haven't found
> anything that will solve my needs in the .net framework.
>
> Does anyone know of any controls or funcs that I can use to accomplish

what
> I'm looking for?
>
> I'm using IIS 5, and windows 2000
>
> Thanks,
> Barry
>
>



 
Reply With Quote
 
 
 
 
Barry
Guest
Posts: n/a
 
      02-05-2004
If I can use forms, that would be great, but I haven't played with them. I
didn't think that they would work with the basic authentication or pass
through authentication (http://usrname/).

Our website has all of the users in an nt group, in which we currently use
basic auth for validation. Our site is mainly transparent for our users
since they are being passed directly to us from their own companies site,
but without them having to see a login for our site. If you have some
sample code, or any other info, that would be great.

Thanks,
Barry


"Showjumper" <> wrote in message
news:...
> Any reason you cant use Forms Authentication?
> "Barry" <> wrote in message
> news:eq%...
> > The MS fix for IE broke how users access our site (if they patch their
> > browsers), so I need a solution to get users logged onto our site
> > transparently.
> >
> > Basically we used to log on to the site by:
> > http://username/main/ which uses basic auth, but now

> that
> > doesn't work. I would like to find a way where I can still use basic

auth
> > and tell the people hitting our site to modify their url to:
> > http://www.mysite.com/main/?uid=username&pwd=pwd but I haven't found
> > anything that will solve my needs in the .net framework.
> >
> > Does anyone know of any controls or funcs that I can use to accomplish

> what
> > I'm looking for?
> >
> > I'm using IIS 5, and windows 2000
> >
> > Thanks,
> > Barry
> >
> >

>
>



 
Reply With Quote
 
Showjumper
Guest
Posts: n/a
 
      02-06-2004
With dot net you also have the option of windows authentication, not just
forms. And there is alos passport authentication.
Give this a look:
http://support.microsoft.com/default...b;EN-US;308157
"Barry" <> wrote in message
news:...
> If I can use forms, that would be great, but I haven't played with them. I
> didn't think that they would work with the basic authentication or pass
> through authentication (http://usrname/).
>
> Our website has all of the users in an nt group, in which we currently use
> basic auth for validation. Our site is mainly transparent for our users
> since they are being passed directly to us from their own companies site,
> but without them having to see a login for our site. If you have some
> sample code, or any other info, that would be great.
>
> Thanks,
> Barry
>
>
> "Showjumper" <> wrote in message
> news:...
> > Any reason you cant use Forms Authentication?
> > "Barry" <> wrote in message
> > news:eq%...
> > > The MS fix for IE broke how users access our site (if they patch their
> > > browsers), so I need a solution to get users logged onto our site
> > > transparently.
> > >
> > > Basically we used to log on to the site by:
> > > http://username/main/ which uses basic auth, but

now
> > that
> > > doesn't work. I would like to find a way where I can still use basic

> auth
> > > and tell the people hitting our site to modify their url to:
> > > http://www.mysite.com/main/?uid=username&pwd=pwd but I haven't found
> > > anything that will solve my needs in the .net framework.
> > >
> > > Does anyone know of any controls or funcs that I can use to accomplish

> > what
> > > I'm looking for?
> > >
> > > I'm using IIS 5, and windows 2000
> > >
> > > Thanks,
> > > Barry
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
Barry
Guest
Posts: n/a
 
      02-06-2004
The problem that we have currently, is that we are relying on basic auth,
our whole site is setup this way, and we are trying to avoid having to move
to another security solution.

Thanks,
Barry

"Showjumper" <> wrote in message
news:eMW$...
> With dot net you also have the option of windows authentication, not just
> forms. And there is alos passport authentication.
> Give this a look:
> http://support.microsoft.com/default...b;EN-US;308157
> "Barry" <> wrote in message
> news:...
> > If I can use forms, that would be great, but I haven't played with them.

I
> > didn't think that they would work with the basic authentication or pass
> > through authentication (http://usrname/).
> >
> > Our website has all of the users in an nt group, in which we currently

use
> > basic auth for validation. Our site is mainly transparent for our users
> > since they are being passed directly to us from their own companies

site,
> > but without them having to see a login for our site. If you have some
> > sample code, or any other info, that would be great.
> >
> > Thanks,
> > Barry
> >
> >
> > "Showjumper" <> wrote in message
> > news:...
> > > Any reason you cant use Forms Authentication?
> > > "Barry" <> wrote in message
> > > news:eq%...
> > > > The MS fix for IE broke how users access our site (if they patch

their
> > > > browsers), so I need a solution to get users logged onto our site
> > > > transparently.
> > > >
> > > > Basically we used to log on to the site by:
> > > > http://username/main/ which uses basic auth, but

> now
> > > that
> > > > doesn't work. I would like to find a way where I can still use

basic
> > auth
> > > > and tell the people hitting our site to modify their url to:
> > > > http://www.mysite.com/main/?uid=username&pwd=pwd but I haven't found
> > > > anything that will solve my needs in the .net framework.
> > > >
> > > > Does anyone know of any controls or funcs that I can use to

accomplish
> > > what
> > > > I'm looking for?
> > > >
> > > > I'm using IIS 5, and windows 2000
> > > >
> > > > Thanks,
> > > > Barry
> > > >
> > > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing Basic Authentication to Form-Based Authentication Dom Java 0 10-18-2004 03:30 PM
From Basic Authentication to Form-Based Authentication Dom Java 0 10-15-2004 09:50 PM
Forms Authentication displays basic authentication dialogue window Brett Porter ASP .Net 5 02-03-2004 07:06 PM
Basic Authentication v. Integrated Windows Authentication w/ Delegation Mark ASP .Net 0 01-20-2004 03:13 PM
ASP.Net Forms authentication with basic authentication popup Brett Porter ASP .Net 2 01-20-2004 02:17 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57