RedirectFromLogin Goes Nowhere?

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default RedirectFromLogin Goes Nowhere?

    Can anyone shed any light on the following:

    I have forms authentication setup within the web.config file (see below)
    which protects the entire website, which brings up the login page - OK.

    However, even though I have been logged in and authenticated it is still
    returning to the login page. However if i log in again it will try to go
    off to the originially specified location, but never seems to get there?

    If i then directly type in the original URL i tried in the very 1st place it
    resolves fine, as i am now authenticated.

    This is extremely baffling - hope someone can help!


    Web Config settings.

    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    <pages smartNavigation="true"/>
    <compilation debug="true"/>

    <authentication mode="Forms" >
    <forms name="App1" path="/" loginUrl="login.aspx" >
    <credentials passwordFormat="Clear">
    <user name="tester" password="testing" />
    </credentials>
    </forms>
    </authentication>


    <authorization>
    <allow users="tester"/>
    <deny users="?"/>
    </authorization>
    </system.web>

    </configuration>




    dave Guest

  2. #2

    Default RE: RedirectFromLogin Goes Nowhere?

    Dave,

    This web.config should work although you should reverse your <allow> and
    <deny> tags in the <authorization> element.

    Jim Cheshire [MSFT]
    Developer Support
    ASP.NET
    [email]jamesche@online.microsoft.com[/email]

    This post is provided as-is with no warranties and confers no rights.

    --------------------
    >From: "dave" <dave@edin.co.uk>
    >Subject: RedirectFromLogin Goes Nowhere?
    >Date: Tue, 11 Nov 2003 11:07:55 -0000
    >Lines: 43
    >X-Priority: 3
    >X-MSMail-Priority: Normal
    >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com 81.128.209.62
    >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    >Xref: cpmsftngxa06.phx.gbl
    microsoft.public.dotnet.framework.aspnet.security: 7513
    >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >
    >Can anyone shed any light on the following:
    >
    >I have forms authentication setup within the web.config file (see below)
    >which protects the entire website, which brings up the login page - OK.
    >
    >However, even though I have been logged in and authenticated it is still
    >returning to the login page. However if i log in again it will try to go
    >off to the originially specified location, but never seems to get there?
    >
    >If i then directly type in the original URL i tried in the very 1st place
    it
    >resolves fine, as i am now authenticated.
    >
    >This is extremely baffling - hope someone can help!
    >
    >
    >Web Config settings.
    >
    ><configuration>
    ><system.web>
    > <customErrors mode="Off"/>
    > <pages smartNavigation="true"/>
    > <compilation debug="true"/>
    >
    ><authentication mode="Forms" >
    ><forms name="App1" path="/" loginUrl="login.aspx" >
    > <credentials passwordFormat="Clear">
    > <user name="tester" password="testing" />
    > </credentials>
    ></forms>
    ></authentication>
    >
    >
    > <authorization>
    > <allow users="tester"/>
    > <deny users="?"/>
    > </authorization>
    ></system.web>
    >
    ></configuration>
    >
    >
    >
    >
    >
    Jim Cheshire [MSFT] Guest

  3. #3

    Default Re: RedirectFromLogin Goes Nowhere?

    Thanks for that Jim

    You are right of course they should ordered differently, but unfortunately
    that did not make any difference...

    This all works fine on my local pc and server, but not on my ISP's dotnet
    site (Fasthosts) - is there anything i can ask them that might be causing
    this?

    Thanks again...

    Cheers

    Dave


    "Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    > Dave,
    >
    > This web.config should work although you should reverse your <allow> and
    > <deny> tags in the <authorization> element.
    >
    > Jim Cheshire [MSFT]
    > Developer Support
    > ASP.NET
    > [email]jamesche@online.microsoft.com[/email]
    >
    > This post is provided as-is with no warranties and confers no rights.
    >
    > --------------------
    > >From: "dave" <dave@edin.co.uk>
    > >Subject: RedirectFromLogin Goes Nowhere?
    > >Date: Tue, 11 Nov 2003 11:07:55 -0000
    > >Lines: 43
    > >X-Priority: 3
    > >X-MSMail-Priority: Normal
    > >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    81.128.209.62
    > >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    > >Xref: cpmsftngxa06.phx.gbl
    > microsoft.public.dotnet.framework.aspnet.security: 7513
    > >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >
    > >Can anyone shed any light on the following:
    > >
    > >I have forms authentication setup within the web.config file (see below)
    > >which protects the entire website, which brings up the login page - OK.
    > >
    > >However, even though I have been logged in and authenticated it is still
    > >returning to the login page. However if i log in again it will try to go
    > >off to the originially specified location, but never seems to get there?
    > >
    > >If i then directly type in the original URL i tried in the very 1st place
    > it
    > >resolves fine, as i am now authenticated.
    > >
    > >This is extremely baffling - hope someone can help!
    > >
    > >
    > >Web Config settings.
    > >
    > ><configuration>
    > ><system.web>
    > > <customErrors mode="Off"/>
    > > <pages smartNavigation="true"/>
    > > <compilation debug="true"/>
    > >
    > ><authentication mode="Forms" >
    > ><forms name="App1" path="/" loginUrl="login.aspx" >
    > > <credentials passwordFormat="Clear">
    > > <user name="tester" password="testing" />
    > > </credentials>
    > ></forms>
    > ></authentication>
    > >
    > >
    > > <authorization>
    > > <allow users="tester"/>
    > > <deny users="?"/>
    > > </authorization>
    > ></system.web>
    > >
    > ></configuration>
    > >
    > >
    > >
    > >
    > >
    >

    dave Guest

  4. #4

    Default Re: RedirectFromLogin Goes Nowhere?

    Dave,

    I would check to see if it's really parsing your web.config. Try adding a
    <foo> tag to your web.config and see if it throws an error.

    Jim Cheshire [MSFT]
    Developer Support
    ASP.NET
    [email]jamesche@online.microsoft.com[/email]

    This post is provided as-is with no warranties and confers no rights.


    --------------------
    >From: "dave" <dave@edin.co.uk>
    >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >Subject: Re: RedirectFromLogin Goes Nowhere?
    >Date: Tue, 11 Nov 2003 20:00:40 -0000
    >Lines: 96
    >X-Priority: 3
    >X-MSMail-Priority: Normal
    >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com 81.128.209.62
    >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    >Xref: cpmsftngxa06.phx.gbl
    microsoft.public.dotnet.framework.aspnet.security: 7527
    >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >
    >Thanks for that Jim
    >
    >You are right of course they should ordered differently, but unfortunately
    >that did not make any difference...
    >
    >This all works fine on my local pc and server, but not on my ISP's dotnet
    >site (Fasthosts) - is there anything i can ask them that might be causing
    >this?
    >
    >Thanks again...
    >
    >Cheers
    >
    >Dave
    >
    >
    >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    >> Dave,
    >>
    >> This web.config should work although you should reverse your <allow> and
    >> <deny> tags in the <authorization> element.
    >>
    >> Jim Cheshire [MSFT]
    >> Developer Support
    >> ASP.NET
    >> [email]jamesche@online.microsoft.com[/email]
    >>
    >> This post is provided as-is with no warranties and confers no rights.
    >>
    >> --------------------
    >> >From: "dave" <dave@edin.co.uk>
    >> >Subject: RedirectFromLogin Goes Nowhere?
    >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    >> >Lines: 43
    >> >X-Priority: 3
    >> >X-MSMail-Priority: Normal
    >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >81.128.209.62
    >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    >> >Xref: cpmsftngxa06.phx.gbl
    >> microsoft.public.dotnet.framework.aspnet.security: 7513
    >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >
    >> >Can anyone shed any light on the following:
    >> >
    >> >I have forms authentication setup within the web.config file (see below)
    >> >which protects the entire website, which brings up the login page - OK.
    >> >
    >> >However, even though I have been logged in and authenticated it is still
    >> >returning to the login page. However if i log in again it will try to
    go
    >> >off to the originially specified location, but never seems to get there?
    >> >
    >> >If i then directly type in the original URL i tried in the very 1st
    place
    >> it
    >> >resolves fine, as i am now authenticated.
    >> >
    >> >This is extremely baffling - hope someone can help!
    >> >
    >> >
    >> >Web Config settings.
    >> >
    >> ><configuration>
    >> ><system.web>
    >> > <customErrors mode="Off"/>
    >> > <pages smartNavigation="true"/>
    >> > <compilation debug="true"/>
    >> >
    >> ><authentication mode="Forms" >
    >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    >> > <credentials passwordFormat="Clear">
    >> > <user name="tester" password="testing" />
    >> > </credentials>
    >> ></forms>
    >> ></authentication>
    >> >
    >> >
    >> > <authorization>
    >> > <allow users="tester"/>
    >> > <deny users="?"/>
    >> > </authorization>
    >> ></system.web>
    >> >
    >> ></configuration>
    >> >
    >> >
    >> >
    >> >
    >> >
    >>
    >
    >
    >
    Jim Cheshire [MSFT] Guest

  5. #5

    Default Re: RedirectFromLogin Goes Nowhere?

    Yep, that throws an error!



    "Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    > Dave,
    >
    > I would check to see if it's really parsing your web.config. Try adding a
    > <foo> tag to your web.config and see if it throws an error.
    >
    > Jim Cheshire [MSFT]
    > Developer Support
    > ASP.NET
    > [email]jamesche@online.microsoft.com[/email]
    >
    > This post is provided as-is with no warranties and confers no rights.
    >
    >
    > --------------------
    > >From: "dave" <dave@edin.co.uk>
    > >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >Date: Tue, 11 Nov 2003 20:00:40 -0000
    > >Lines: 96
    > >X-Priority: 3
    > >X-MSMail-Priority: Normal
    > >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    81.128.209.62
    > >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    > >Xref: cpmsftngxa06.phx.gbl
    > microsoft.public.dotnet.framework.aspnet.security: 7527
    > >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >
    > >Thanks for that Jim
    > >
    > >You are right of course they should ordered differently, but
    unfortunately
    > >that did not make any difference...
    > >
    > >This all works fine on my local pc and server, but not on my ISP's dotnet
    > >site (Fasthosts) - is there anything i can ask them that might be causing
    > >this?
    > >
    > >Thanks again...
    > >
    > >Cheers
    > >
    > >Dave
    > >
    > >
    > >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    > >> Dave,
    > >>
    > >> This web.config should work although you should reverse your <allow>
    and
    > >> <deny> tags in the <authorization> element.
    > >>
    > >> Jim Cheshire [MSFT]
    > >> Developer Support
    > >> ASP.NET
    > >> [email]jamesche@online.microsoft.com[/email]
    > >>
    > >> This post is provided as-is with no warranties and confers no rights.
    > >>
    > >> --------------------
    > >> >From: "dave" <dave@edin.co.uk>
    > >> >Subject: RedirectFromLogin Goes Nowhere?
    > >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    > >> >Lines: 43
    > >> >X-Priority: 3
    > >> >X-MSMail-Priority: Normal
    > >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >81.128.209.62
    > >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    > >> >Xref: cpmsftngxa06.phx.gbl
    > >> microsoft.public.dotnet.framework.aspnet.security: 7513
    > >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >
    > >> >Can anyone shed any light on the following:
    > >> >
    > >> >I have forms authentication setup within the web.config file (see
    below)
    > >> >which protects the entire website, which brings up the login page -
    OK.
    > >> >
    > >> >However, even though I have been logged in and authenticated it is
    still
    > >> >returning to the login page. However if i log in again it will try to
    > go
    > >> >off to the originially specified location, but never seems to get
    there?
    > >> >
    > >> >If i then directly type in the original URL i tried in the very 1st
    > place
    > >> it
    > >> >resolves fine, as i am now authenticated.
    > >> >
    > >> >This is extremely baffling - hope someone can help!
    > >> >
    > >> >
    > >> >Web Config settings.
    > >> >
    > >> ><configuration>
    > >> ><system.web>
    > >> > <customErrors mode="Off"/>
    > >> > <pages smartNavigation="true"/>
    > >> > <compilation debug="true"/>
    > >> >
    > >> ><authentication mode="Forms" >
    > >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    > >> > <credentials passwordFormat="Clear">
    > >> > <user name="tester" password="testing" />
    > >> > </credentials>
    > >> ></forms>
    > >> ></authentication>
    > >> >
    > >> >
    > >> > <authorization>
    > >> > <allow users="tester"/>
    > >> > <deny users="?"/>
    > >> > </authorization>
    > >> ></system.web>
    > >> >
    > >> ></configuration>
    > >> >
    > >> >
    > >> >
    > >> >
    > >> >
    > >>
    > >
    > >
    > >
    >

    dave Guest

  6. #6

    Default Re: RedirectFromLogin Goes Nowhere?

    Dave,

    Okay, now we know that we are truly parsing your Web.config.

    In order to really troubleshoot this, you really need access to the server.
    It would then be best to open a case with us so that we can look into it.
    If your host will agree to conference call with us, we can figure out
    what's going on.

    Jim Cheshire, MCSE, MCSD [MSFT]
    Developer Support
    ASP.NET
    [email]jamesche@online.microsoft.com[/email]

    This post is provided as-is with no warranties and confers no rights.


    --------------------
    >From: "dave" <dave@edin.co.uk>
    >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >Subject: Re: RedirectFromLogin Goes Nowhere?
    >Date: Wed, 12 Nov 2003 18:24:46 -0000
    >Lines: 147
    >X-Priority: 3
    >X-MSMail-Priority: Normal
    >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com 81.128.209.62
    >Path:
    cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
    .phx.gbl!TK2MSFTNGP09.phx.gbl
    >Xref: cpmsftngxa06.phx.gbl
    microsoft.public.dotnet.framework.aspnet.security: 7550
    >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >
    >Yep, that throws an error!
    >
    >
    >
    >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    >> Dave,
    >>
    >> I would check to see if it's really parsing your web.config. Try adding
    a
    >> <foo> tag to your web.config and see if it throws an error.
    >>
    >> Jim Cheshire [MSFT]
    >> Developer Support
    >> ASP.NET
    >> [email]jamesche@online.microsoft.com[/email]
    >>
    >> This post is provided as-is with no warranties and confers no rights.
    >>
    >>
    >> --------------------
    >> >From: "dave" <dave@edin.co.uk>
    >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    >> >Lines: 96
    >> >X-Priority: 3
    >> >X-MSMail-Priority: Normal
    >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >81.128.209.62
    >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    >> >Xref: cpmsftngxa06.phx.gbl
    >> microsoft.public.dotnet.framework.aspnet.security: 7527
    >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >
    >> >Thanks for that Jim
    >> >
    >> >You are right of course they should ordered differently, but
    >unfortunately
    >> >that did not make any difference...
    >> >
    >> >This all works fine on my local pc and server, but not on my ISP's
    dotnet
    >> >site (Fasthosts) - is there anything i can ask them that might be
    causing
    >> >this?
    >> >
    >> >Thanks again...
    >> >
    >> >Cheers
    >> >
    >> >Dave
    >> >
    >> >
    >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    >> >> Dave,
    >> >>
    >> >> This web.config should work although you should reverse your <allow>
    >and
    >> >> <deny> tags in the <authorization> element.
    >> >>
    >> >> Jim Cheshire [MSFT]
    >> >> Developer Support
    >> >> ASP.NET
    >> >> [email]jamesche@online.microsoft.com[/email]
    >> >>
    >> >> This post is provided as-is with no warranties and confers no rights.
    >> >>
    >> >> --------------------
    >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >Subject: RedirectFromLogin Goes Nowhere?
    >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    >> >> >Lines: 43
    >> >> >X-Priority: 3
    >> >> >X-MSMail-Priority: Normal
    >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >81.128.209.62
    >> >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >
    >> >> >Can anyone shed any light on the following:
    >> >> >
    >> >> >I have forms authentication setup within the web.config file (see
    >below)
    >> >> >which protects the entire website, which brings up the login page -
    >OK.
    >> >> >
    >> >> >However, even though I have been logged in and authenticated it is
    >still
    >> >> >returning to the login page. However if i log in again it will try
    to
    >> go
    >> >> >off to the originially specified location, but never seems to get
    >there?
    >> >> >
    >> >> >If i then directly type in the original URL i tried in the very 1st
    >> place
    >> >> it
    >> >> >resolves fine, as i am now authenticated.
    >> >> >
    >> >> >This is extremely baffling - hope someone can help!
    >> >> >
    >> >> >
    >> >> >Web Config settings.
    >> >> >
    >> >> ><configuration>
    >> >> ><system.web>
    >> >> > <customErrors mode="Off"/>
    >> >> > <pages smartNavigation="true"/>
    >> >> > <compilation debug="true"/>
    >> >> >
    >> >> ><authentication mode="Forms" >
    >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    >> >> > <credentials passwordFormat="Clear">
    >> >> > <user name="tester" password="testing" />
    >> >> > </credentials>
    >> >> ></forms>
    >> >> ></authentication>
    >> >> >
    >> >> >
    >> >> > <authorization>
    >> >> > <allow users="tester"/>
    >> >> > <deny users="?"/>
    >> >> > </authorization>
    >> >> ></system.web>
    >> >> >
    >> >> ></configuration>
    >> >> >
    >> >> >
    >> >> >
    >> >> >
    >> >> >
    >> >>
    >> >
    >> >
    >> >
    >>
    >
    >
    >
    Jim Cheshire [MSFT] Guest

  7. #7

    Default Re: RedirectFromLogin Goes Nowhere?

    Jim

    Sorry for the delay been away for a few days.

    I have forwarded a request to my ISP (FastHosts) to see if this is something
    they will cater.

    Will come back to you soonest.

    Cheers

    Dave



    "Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    news:yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl...
    > Dave,
    >
    > Okay, now we know that we are truly parsing your Web.config.
    >
    > In order to really troubleshoot this, you really need access to the
    server.
    > It would then be best to open a case with us so that we can look into it.
    > If your host will agree to conference call with us, we can figure out
    > what's going on.
    >
    > Jim Cheshire, MCSE, MCSD [MSFT]
    > Developer Support
    > ASP.NET
    > [email]jamesche@online.microsoft.com[/email]
    >
    > This post is provided as-is with no warranties and confers no rights.
    >
    >
    > --------------------
    > >From: "dave" <dave@edin.co.uk>
    > >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >Date: Wed, 12 Nov 2003 18:24:46 -0000
    > >Lines: 147
    > >X-Priority: 3
    > >X-MSMail-Priority: Normal
    > >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    81.128.209.62
    > >Path:
    >
    cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
    > phx.gbl!TK2MSFTNGP09.phx.gbl
    > >Xref: cpmsftngxa06.phx.gbl
    > microsoft.public.dotnet.framework.aspnet.security: 7550
    > >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >
    > >Yep, that throws an error!
    > >
    > >
    > >
    > >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    > >> Dave,
    > >>
    > >> I would check to see if it's really parsing your web.config. Try
    adding
    > a
    > >> <foo> tag to your web.config and see if it throws an error.
    > >>
    > >> Jim Cheshire [MSFT]
    > >> Developer Support
    > >> ASP.NET
    > >> [email]jamesche@online.microsoft.com[/email]
    > >>
    > >> This post is provided as-is with no warranties and confers no rights.
    > >>
    > >>
    > >> --------------------
    > >> >From: "dave" <dave@edin.co.uk>
    > >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    > >> >Lines: 96
    > >> >X-Priority: 3
    > >> >X-MSMail-Priority: Normal
    > >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >81.128.209.62
    > >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    > >> >Xref: cpmsftngxa06.phx.gbl
    > >> microsoft.public.dotnet.framework.aspnet.security: 7527
    > >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >
    > >> >Thanks for that Jim
    > >> >
    > >> >You are right of course they should ordered differently, but
    > >unfortunately
    > >> >that did not make any difference...
    > >> >
    > >> >This all works fine on my local pc and server, but not on my ISP's
    > dotnet
    > >> >site (Fasthosts) - is there anything i can ask them that might be
    > causing
    > >> >this?
    > >> >
    > >> >Thanks again...
    > >> >
    > >> >Cheers
    > >> >
    > >> >Dave
    > >> >
    > >> >
    > >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    > >> >> Dave,
    > >> >>
    > >> >> This web.config should work although you should reverse your <allow>
    > >and
    > >> >> <deny> tags in the <authorization> element.
    > >> >>
    > >> >> Jim Cheshire [MSFT]
    > >> >> Developer Support
    > >> >> ASP.NET
    > >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >>
    > >> >> This post is provided as-is with no warranties and confers no
    rights.
    > >> >>
    > >> >> --------------------
    > >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >Subject: RedirectFromLogin Goes Nowhere?
    > >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    > >> >> >Lines: 43
    > >> >> >X-Priority: 3
    > >> >> >X-MSMail-Priority: Normal
    > >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >> >81.128.209.62
    > >> >> >Path:
    cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    > >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    > >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >
    > >> >> >Can anyone shed any light on the following:
    > >> >> >
    > >> >> >I have forms authentication setup within the web.config file (see
    > >below)
    > >> >> >which protects the entire website, which brings up the login page -
    > >OK.
    > >> >> >
    > >> >> >However, even though I have been logged in and authenticated it is
    > >still
    > >> >> >returning to the login page. However if i log in again it will try
    > to
    > >> go
    > >> >> >off to the originially specified location, but never seems to get
    > >there?
    > >> >> >
    > >> >> >If i then directly type in the original URL i tried in the very 1st
    > >> place
    > >> >> it
    > >> >> >resolves fine, as i am now authenticated.
    > >> >> >
    > >> >> >This is extremely baffling - hope someone can help!
    > >> >> >
    > >> >> >
    > >> >> >Web Config settings.
    > >> >> >
    > >> >> ><configuration>
    > >> >> ><system.web>
    > >> >> > <customErrors mode="Off"/>
    > >> >> > <pages smartNavigation="true"/>
    > >> >> > <compilation debug="true"/>
    > >> >> >
    > >> >> ><authentication mode="Forms" >
    > >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    > >> >> > <credentials passwordFormat="Clear">
    > >> >> > <user name="tester" password="testing" />
    > >> >> > </credentials>
    > >> >> ></forms>
    > >> >> ></authentication>
    > >> >> >
    > >> >> >
    > >> >> > <authorization>
    > >> >> > <allow users="tester"/>
    > >> >> > <deny users="?"/>
    > >> >> > </authorization>
    > >> >> ></system.web>
    > >> >> >
    > >> >> ></configuration>
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >>
    > >> >
    > >> >
    > >> >
    > >>
    > >
    > >
    > >
    >

    dave Guest

  8. #8

    Default Re: RedirectFromLogin Goes Nowhere?

    Thanks, Dave. If they agree to it, you will want to call (800) 936-5800
    and open a case with us so that we can assist.

    Jim Cheshire, MCSE, MCSD [MSFT]
    Developer Support
    ASP.NET
    [email]jamesche@online.microsoft.com[/email]

    This post is provided as-is with no warranties and confers no rights.

    --------------------
    >From: "dave" <dave@edin.co.uk>
    >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    >Subject: Re: RedirectFromLogin Goes Nowhere?
    >Date: Tue, 18 Nov 2003 08:35:03 -0000
    >Lines: 218
    >X-Priority: 3
    >X-MSMail-Priority: Normal
    >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >Message-ID: <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    81.128.186.244
    >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
    >Xref: cpmsftngxa06.phx.gbl
    microsoft.public.dotnet.framework.aspnet.security: 7606
    >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >
    >Jim
    >
    >Sorry for the delay been away for a few days.
    >
    >I have forwarded a request to my ISP (FastHosts) to see if this is
    something
    >they will cater.
    >
    >Will come back to you soonest.
    >
    >Cheers
    >
    >Dave
    >
    >
    >
    >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >news:yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl...
    >> Dave,
    >>
    >> Okay, now we know that we are truly parsing your Web.config.
    >>
    >> In order to really troubleshoot this, you really need access to the
    >server.
    >> It would then be best to open a case with us so that we can look into
    it.
    >> If your host will agree to conference call with us, we can figure out
    >> what's going on.
    >>
    >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> Developer Support
    >> ASP.NET
    >> [email]jamesche@online.microsoft.com[/email]
    >>
    >> This post is provided as-is with no warranties and confers no rights.
    >>
    >>
    >> --------------------
    >> >From: "dave" <dave@edin.co.uk>
    >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >Date: Wed, 12 Nov 2003 18:24:46 -0000
    >> >Lines: 147
    >> >X-Priority: 3
    >> >X-MSMail-Priority: Normal
    >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >81.128.209.62
    >> >Path:
    >>
    >cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFT NGXA05.phx.gbl!TK2MSFTNGP0
    8
    >> phx.gbl!TK2MSFTNGP09.phx.gbl
    >> >Xref: cpmsftngxa06.phx.gbl
    >> microsoft.public.dotnet.framework.aspnet.security: 7550
    >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >
    >> >Yep, that throws an error!
    >> >
    >> >
    >> >
    >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >> >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    >> >> Dave,
    >> >>
    >> >> I would check to see if it's really parsing your web.config. Try
    >adding
    >> a
    >> >> <foo> tag to your web.config and see if it throws an error.
    >> >>
    >> >> Jim Cheshire [MSFT]
    >> >> Developer Support
    >> >> ASP.NET
    >> >> [email]jamesche@online.microsoft.com[/email]
    >> >>
    >> >> This post is provided as-is with no warranties and confers no rights.
    >> >>
    >> >>
    >> >> --------------------
    >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    >> >> >Lines: 96
    >> >> >X-Priority: 3
    >> >> >X-MSMail-Priority: Normal
    >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >81.128.209.62
    >> >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> microsoft.public.dotnet.framework.aspnet.security: 7527
    >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >
    >> >> >Thanks for that Jim
    >> >> >
    >> >> >You are right of course they should ordered differently, but
    >> >unfortunately
    >> >> >that did not make any difference...
    >> >> >
    >> >> >This all works fine on my local pc and server, but not on my ISP's
    >> dotnet
    >> >> >site (Fasthosts) - is there anything i can ask them that might be
    >> causing
    >> >> >this?
    >> >> >
    >> >> >Thanks again...
    >> >> >
    >> >> >Cheers
    >> >> >
    >> >> >Dave
    >> >> >
    >> >> >
    >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    message
    >> >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    >> >> >> Dave,
    >> >> >>
    >> >> >> This web.config should work although you should reverse your
    <allow>
    >> >and
    >> >> >> <deny> tags in the <authorization> element.
    >> >> >>
    >> >> >> Jim Cheshire [MSFT]
    >> >> >> Developer Support
    >> >> >> ASP.NET
    >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >>
    >> >> >> This post is provided as-is with no warranties and confers no
    >rights.
    >> >> >>
    >> >> >> --------------------
    >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >Subject: RedirectFromLogin Goes Nowhere?
    >> >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    >> >> >> >Lines: 43
    >> >> >> >X-Priority: 3
    >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >> >81.128.209.62
    >> >> >> >Path:
    >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >
    >> >> >> >Can anyone shed any light on the following:
    >> >> >> >
    >> >> >> >I have forms authentication setup within the web.config file (see
    >> >below)
    >> >> >> >which protects the entire website, which brings up the login page
    -
    >> >OK.
    >> >> >> >
    >> >> >> >However, even though I have been logged in and authenticated it is
    >> >still
    >> >> >> >returning to the login page. However if i log in again it will
    try
    >> to
    >> >> go
    >> >> >> >off to the originially specified location, but never seems to get
    >> >there?
    >> >> >> >
    >> >> >> >If i then directly type in the original URL i tried in the very
    1st
    >> >> place
    >> >> >> it
    >> >> >> >resolves fine, as i am now authenticated.
    >> >> >> >
    >> >> >> >This is extremely baffling - hope someone can help!
    >> >> >> >
    >> >> >> >
    >> >> >> >Web Config settings.
    >> >> >> >
    >> >> >> ><configuration>
    >> >> >> ><system.web>
    >> >> >> > <customErrors mode="Off"/>
    >> >> >> > <pages smartNavigation="true"/>
    >> >> >> > <compilation debug="true"/>
    >> >> >> >
    >> >> >> ><authentication mode="Forms" >
    >> >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    >> >> >> > <credentials passwordFormat="Clear">
    >> >> >> > <user name="tester" password="testing" />
    >> >> >> > </credentials>
    >> >> >> ></forms>
    >> >> >> ></authentication>
    >> >> >> >
    >> >> >> >
    >> >> >> > <authorization>
    >> >> >> > <allow users="tester"/>
    >> >> >> > <deny users="?"/>
    >> >> >> > </authorization>
    >> >> >> ></system.web>
    >> >> >> >
    >> >> >> ></configuration>
    >> >> >> >
    >> >> >> >
    >> >> >> >
    >> >> >> >
    >> >> >> >
    >> >> >>
    >> >> >
    >> >> >
    >> >> >
    >> >>
    >> >
    >> >
    >> >
    >>
    >
    >
    >
    Jim Cheshire [MSFT] Guest

  9. #9

    Default Re: RedirectFromLogin Goes Nowhere?

    Hi Jim

    FH are not willing to assist - they reckon it is a scripting error...

    I cant see what it is and i have followed all the samples available to man.



    "Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    news:pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl...
    > Thanks, Dave. If they agree to it, you will want to call (800) 936-5800
    > and open a case with us so that we can assist.
    >
    > Jim Cheshire, MCSE, MCSD [MSFT]
    > Developer Support
    > ASP.NET
    > [email]jamesche@online.microsoft.com[/email]
    >
    > This post is provided as-is with no warranties and confers no rights.
    >
    > --------------------
    > >From: "dave" <dave@edin.co.uk>
    > >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    > >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >Date: Tue, 18 Nov 2003 08:35:03 -0000
    > >Lines: 218
    > >X-Priority: 3
    > >X-MSMail-Priority: Normal
    > >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >Message-ID: <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    > >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    > 81.128.186.244
    > >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
    > >Xref: cpmsftngxa06.phx.gbl
    > microsoft.public.dotnet.framework.aspnet.security: 7606
    > >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >
    > >Jim
    > >
    > >Sorry for the delay been away for a few days.
    > >
    > >I have forwarded a request to my ISP (FastHosts) to see if this is
    > something
    > >they will cater.
    > >
    > >Will come back to you soonest.
    > >
    > >Cheers
    > >
    > >Dave
    > >
    > >
    > >
    > >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >news:yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl...
    > >> Dave,
    > >>
    > >> Okay, now we know that we are truly parsing your Web.config.
    > >>
    > >> In order to really troubleshoot this, you really need access to the
    > >server.
    > >> It would then be best to open a case with us so that we can look into
    > it.
    > >> If your host will agree to conference call with us, we can figure out
    > >> what's going on.
    > >>
    > >> Jim Cheshire, MCSE, MCSD [MSFT]
    > >> Developer Support
    > >> ASP.NET
    > >> [email]jamesche@online.microsoft.com[/email]
    > >>
    > >> This post is provided as-is with no warranties and confers no rights.
    > >>
    > >>
    > >> --------------------
    > >> >From: "dave" <dave@edin.co.uk>
    > >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >Date: Wed, 12 Nov 2003 18:24:46 -0000
    > >> >Lines: 147
    > >> >X-Priority: 3
    > >> >X-MSMail-Priority: Normal
    > >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >81.128.209.62
    > >> >Path:
    > >>
    >
    >cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFT NGXA05.phx.gbl!TK2MSFTNGP0
    > 8
    > >> phx.gbl!TK2MSFTNGP09.phx.gbl
    > >> >Xref: cpmsftngxa06.phx.gbl
    > >> microsoft.public.dotnet.framework.aspnet.security: 7550
    > >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >
    > >> >Yep, that throws an error!
    > >> >
    > >> >
    > >> >
    > >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >> >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    > >> >> Dave,
    > >> >>
    > >> >> I would check to see if it's really parsing your web.config. Try
    > >adding
    > >> a
    > >> >> <foo> tag to your web.config and see if it throws an error.
    > >> >>
    > >> >> Jim Cheshire [MSFT]
    > >> >> Developer Support
    > >> >> ASP.NET
    > >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >>
    > >> >> This post is provided as-is with no warranties and confers no
    rights.
    > >> >>
    > >> >>
    > >> >> --------------------
    > >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    > >> >> >Lines: 96
    > >> >> >X-Priority: 3
    > >> >> >X-MSMail-Priority: Normal
    > >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >> >81.128.209.62
    > >> >> >Path:
    cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    > >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> microsoft.public.dotnet.framework.aspnet.security: 7527
    > >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >
    > >> >> >Thanks for that Jim
    > >> >> >
    > >> >> >You are right of course they should ordered differently, but
    > >> >unfortunately
    > >> >> >that did not make any difference...
    > >> >> >
    > >> >> >This all works fine on my local pc and server, but not on my ISP's
    > >> dotnet
    > >> >> >site (Fasthosts) - is there anything i can ask them that might be
    > >> causing
    > >> >> >this?
    > >> >> >
    > >> >> >Thanks again...
    > >> >> >
    > >> >> >Cheers
    > >> >> >
    > >> >> >Dave
    > >> >> >
    > >> >> >
    > >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    > message
    > >> >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    > >> >> >> Dave,
    > >> >> >>
    > >> >> >> This web.config should work although you should reverse your
    > <allow>
    > >> >and
    > >> >> >> <deny> tags in the <authorization> element.
    > >> >> >>
    > >> >> >> Jim Cheshire [MSFT]
    > >> >> >> Developer Support
    > >> >> >> ASP.NET
    > >> >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >> >>
    > >> >> >> This post is provided as-is with no warranties and confers no
    > >rights.
    > >> >> >>
    > >> >> >> --------------------
    > >> >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >> >Subject: RedirectFromLogin Goes Nowhere?
    > >> >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    > >> >> >> >Lines: 43
    > >> >> >> >X-Priority: 3
    > >> >> >> >X-MSMail-Priority: Normal
    > >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >> >> >81.128.209.62
    > >> >> >> >Path:
    > >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    > >> >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    > >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >
    > >> >> >> >Can anyone shed any light on the following:
    > >> >> >> >
    > >> >> >> >I have forms authentication setup within the web.config file
    (see
    > >> >below)
    > >> >> >> >which protects the entire website, which brings up the login
    page
    > -
    > >> >OK.
    > >> >> >> >
    > >> >> >> >However, even though I have been logged in and authenticated it
    is
    > >> >still
    > >> >> >> >returning to the login page. However if i log in again it will
    > try
    > >> to
    > >> >> go
    > >> >> >> >off to the originially specified location, but never seems to
    get
    > >> >there?
    > >> >> >> >
    > >> >> >> >If i then directly type in the original URL i tried in the very
    > 1st
    > >> >> place
    > >> >> >> it
    > >> >> >> >resolves fine, as i am now authenticated.
    > >> >> >> >
    > >> >> >> >This is extremely baffling - hope someone can help!
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >Web Config settings.
    > >> >> >> >
    > >> >> >> ><configuration>
    > >> >> >> ><system.web>
    > >> >> >> > <customErrors mode="Off"/>
    > >> >> >> > <pages smartNavigation="true"/>
    > >> >> >> > <compilation debug="true"/>
    > >> >> >> >
    > >> >> >> ><authentication mode="Forms" >
    > >> >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    > >> >> >> > <credentials passwordFormat="Clear">
    > >> >> >> > <user name="tester" password="testing" />
    > >> >> >> > </credentials>
    > >> >> >> ></forms>
    > >> >> >> ></authentication>
    > >> >> >> >
    > >> >> >> >
    > >> >> >> > <authorization>
    > >> >> >> > <allow users="tester"/>
    > >> >> >> > <deny users="?"/>
    > >> >> >> > </authorization>
    > >> >> >> ></system.web>
    > >> >> >> >
    > >> >> >> ></configuration>
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >
    > >> >> >>
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >>
    > >> >
    > >> >
    > >> >
    > >>
    > >
    > >
    > >
    >

    dave Guest

  10. #10

    Default Re: RedirectFromLogin Goes Nowhere?

    Dave,

    That's a shame.

    How are you coding your Forms authentication? Are you just calling
    RedirectFromLogin()? How are you authenticating in the live site? Are you
    just using the web.config with a list of users?

    Jim Cheshire, MCSE, MCSD [MSFT]
    Developer Support
    ASP.NET
    [email]jamesche@online.microsoft.com[/email]

    This post is provided as-is with no warranties and confers no rights.

    --------------------
    >From: "dave" <dave@edin.co.uk>
    >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    >Subject: Re: RedirectFromLogin Goes Nowhere?
    >Date: Thu, 20 Nov 2003 09:20:48 -0000
    >Lines: 281
    >X-Priority: 3
    >X-MSMail-Priority: Normal
    >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >Message-ID: <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    81.128.186.244
    >Path:
    cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
    .phx.gbl!TK2MSFTNGP10.phx.gbl
    >Xref: cpmsftngxa07.phx.gbl
    microsoft.public.dotnet.framework.aspnet.security: 7592
    >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >
    >Hi Jim
    >
    >FH are not willing to assist - they reckon it is a scripting error...
    >
    >I cant see what it is and i have followed all the samples available to man.
    >
    >
    >
    >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >news:pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl...
    >> Thanks, Dave. If they agree to it, you will want to call (800) 936-5800
    >> and open a case with us so that we can assist.
    >>
    >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> Developer Support
    >> ASP.NET
    >> [email]jamesche@online.microsoft.com[/email]
    >>
    >> This post is provided as-is with no warranties and confers no rights.
    >>
    >> --------------------
    >> >From: "dave" <dave@edin.co.uk>
    >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >Date: Tue, 18 Nov 2003 08:35:03 -0000
    >> >Lines: 218
    >> >X-Priority: 3
    >> >X-MSMail-Priority: Normal
    >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >Message-ID: <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    >> 81.128.186.244
    >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
    >> >Xref: cpmsftngxa06.phx.gbl
    >> microsoft.public.dotnet.framework.aspnet.security: 7606
    >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >
    >> >Jim
    >> >
    >> >Sorry for the delay been away for a few days.
    >> >
    >> >I have forwarded a request to my ISP (FastHosts) to see if this is
    >> something
    >> >they will cater.
    >> >
    >> >Will come back to you soonest.
    >> >
    >> >Cheers
    >> >
    >> >Dave
    >> >
    >> >
    >> >
    >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >> >news:yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl...
    >> >> Dave,
    >> >>
    >> >> Okay, now we know that we are truly parsing your Web.config.
    >> >>
    >> >> In order to really troubleshoot this, you really need access to the
    >> >server.
    >> >> It would then be best to open a case with us so that we can look into
    >> it.
    >> >> If your host will agree to conference call with us, we can figure out
    >> >> what's going on.
    >> >>
    >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> >> Developer Support
    >> >> ASP.NET
    >> >> [email]jamesche@online.microsoft.com[/email]
    >> >>
    >> >> This post is provided as-is with no warranties and confers no rights.
    >> >>
    >> >>
    >> >> --------------------
    >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >Date: Wed, 12 Nov 2003 18:24:46 -0000
    >> >> >Lines: 147
    >> >> >X-Priority: 3
    >> >> >X-MSMail-Priority: Normal
    >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >81.128.209.62
    >> >> >Path:
    >> >>
    >>
    >>cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSF TNGXA05.phx.gbl!TK2MSFTNGP
    0
    >> 8
    >> >> phx.gbl!TK2MSFTNGP09.phx.gbl
    >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> microsoft.public.dotnet.framework.aspnet.security: 7550
    >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >
    >> >> >Yep, that throws an error!
    >> >> >
    >> >> >
    >> >> >
    >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    message
    >> >> >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    >> >> >> Dave,
    >> >> >>
    >> >> >> I would check to see if it's really parsing your web.config. Try
    >> >adding
    >> >> a
    >> >> >> <foo> tag to your web.config and see if it throws an error.
    >> >> >>
    >> >> >> Jim Cheshire [MSFT]
    >> >> >> Developer Support
    >> >> >> ASP.NET
    >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >>
    >> >> >> This post is provided as-is with no warranties and confers no
    >rights.
    >> >> >>
    >> >> >>
    >> >> >> --------------------
    >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    >> >> >> >Lines: 96
    >> >> >> >X-Priority: 3
    >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >> >81.128.209.62
    >> >> >> >Path:
    >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7527
    >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >
    >> >> >> >Thanks for that Jim
    >> >> >> >
    >> >> >> >You are right of course they should ordered differently, but
    >> >> >unfortunately
    >> >> >> >that did not make any difference...
    >> >> >> >
    >> >> >> >This all works fine on my local pc and server, but not on my ISP's
    >> >> dotnet
    >> >> >> >site (Fasthosts) - is there anything i can ask them that might be
    >> >> causing
    >> >> >> >this?
    >> >> >> >
    >> >> >> >Thanks again...
    >> >> >> >
    >> >> >> >Cheers
    >> >> >> >
    >> >> >> >Dave
    >> >> >> >
    >> >> >> >
    >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    >> message
    >> >> >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    >> >> >> >> Dave,
    >> >> >> >>
    >> >> >> >> This web.config should work although you should reverse your
    >> <allow>
    >> >> >and
    >> >> >> >> <deny> tags in the <authorization> element.
    >> >> >> >>
    >> >> >> >> Jim Cheshire [MSFT]
    >> >> >> >> Developer Support
    >> >> >> >> ASP.NET
    >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >> >>
    >> >> >> >> This post is provided as-is with no warranties and confers no
    >> >rights.
    >> >> >> >>
    >> >> >> >> --------------------
    >> >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >> >Subject: RedirectFromLogin Goes Nowhere?
    >> >> >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    >> >> >> >> >Lines: 43
    >> >> >> >> >X-Priority: 3
    >> >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >> >> >81.128.209.62
    >> >> >> >> >Path:
    >> >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    >> >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >
    >> >> >> >> >Can anyone shed any light on the following:
    >> >> >> >> >
    >> >> >> >> >I have forms authentication setup within the web.config file
    >(see
    >> >> >below)
    >> >> >> >> >which protects the entire website, which brings up the login
    >page
    >> -
    >> >> >OK.
    >> >> >> >> >
    >> >> >> >> >However, even though I have been logged in and authenticated it
    >is
    >> >> >still
    >> >> >> >> >returning to the login page. However if i log in again it will
    >> try
    >> >> to
    >> >> >> go
    >> >> >> >> >off to the originially specified location, but never seems to
    >get
    >> >> >there?
    >> >> >> >> >
    >> >> >> >> >If i then directly type in the original URL i tried in the very
    >> 1st
    >> >> >> place
    >> >> >> >> it
    >> >> >> >> >resolves fine, as i am now authenticated.
    >> >> >> >> >
    >> >> >> >> >This is extremely baffling - hope someone can help!
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >Web Config settings.
    >> >> >> >> >
    >> >> >> >> ><configuration>
    >> >> >> >> ><system.web>
    >> >> >> >> > <customErrors mode="Off"/>
    >> >> >> >> > <pages smartNavigation="true"/>
    >> >> >> >> > <compilation debug="true"/>
    >> >> >> >> >
    >> >> >> >> ><authentication mode="Forms" >
    >> >> >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    >> >> >> >> > <credentials passwordFormat="Clear">
    >> >> >> >> > <user name="tester" password="testing" />
    >> >> >> >> > </credentials>
    >> >> >> >> ></forms>
    >> >> >> >> ></authentication>
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> > <authorization>
    >> >> >> >> > <allow users="tester"/>
    >> >> >> >> > <deny users="?"/>
    >> >> >> >> > </authorization>
    >> >> >> >> ></system.web>
    >> >> >> >> >
    >> >> >> >> ></configuration>
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >>
    >> >> >> >
    >> >> >> >
    >> >> >> >
    >> >> >>
    >> >> >
    >> >> >
    >> >> >
    >> >>
    >> >
    >> >
    >> >
    >>
    >
    >
    >
    Jim Cheshire [MSFT] Guest

  11. #11

    Default Re: RedirectFromLogin Goes Nowhere?

    Jim

    Here is the code snippet from the login page that i use:

    if dat.Read() then
    'set the UserID and UserTypeID Session vars
    Session("User_FName") = dat("CONTACT_FNAME")
    Session("User_Type_ID") = dat("USER_TYPE_ID")
    FormsAuthentication.RedirectFromLoginPage(dat("USE R_ID"), "False")

    'pick the users roles/permissions
    GetUsersRoles()

    lblValid.Text = "Valid Login Details..."
    else
    'set message to bad login details
    lblValid.Text = "Incorrect Login Details"
    end if


    And here is the whole web.config file:


    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    <pages smartNavigation="true"/>
    <compilation debug="true"/>

    <authentication mode="Forms" >
    <forms name="Nerisis" path="/" loginUrl="login.aspx" timeout="20" ></forms>
    </authentication>

    <authorization>
    <deny users="?"/>
    </authorization>
    </system.web>

    <appSettings>
    <add key="DBconnString" value="Server=myserver;Password=xxx;Persist
    Security Info=True;User ID=sa;Initial Catalog=LMS" />
    </appSettings>


    </configuration>

    "Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    news:Ze0$bN4rDHA.2996@cpmsftngxa07.phx.gbl...
    > Dave,
    >
    > That's a shame.
    >
    > How are you coding your Forms authentication? Are you just calling
    > RedirectFromLogin()? How are you authenticating in the live site? Are
    you
    > just using the web.config with a list of users?
    >
    > Jim Cheshire, MCSE, MCSD [MSFT]
    > Developer Support
    > ASP.NET
    > [email]jamesche@online.microsoft.com[/email]
    >
    > This post is provided as-is with no warranties and confers no rights.
    >
    > --------------------
    > >From: "dave" <dave@edin.co.uk>
    > >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    > <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    > <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    > >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >Date: Thu, 20 Nov 2003 09:20:48 -0000
    > >Lines: 281
    > >X-Priority: 3
    > >X-MSMail-Priority: Normal
    > >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >Message-ID: <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    > >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    > 81.128.186.244
    > >Path:
    >
    cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
    > phx.gbl!TK2MSFTNGP10.phx.gbl
    > >Xref: cpmsftngxa07.phx.gbl
    > microsoft.public.dotnet.framework.aspnet.security: 7592
    > >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >
    > >Hi Jim
    > >
    > >FH are not willing to assist - they reckon it is a scripting error...
    > >
    > >I cant see what it is and i have followed all the samples available to
    man.
    > >
    > >
    > >
    > >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >news:pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl...
    > >> Thanks, Dave. If they agree to it, you will want to call (800)
    936-5800
    > >> and open a case with us so that we can assist.
    > >>
    > >> Jim Cheshire, MCSE, MCSD [MSFT]
    > >> Developer Support
    > >> ASP.NET
    > >> [email]jamesche@online.microsoft.com[/email]
    > >>
    > >> This post is provided as-is with no warranties and confers no rights.
    > >>
    > >> --------------------
    > >> >From: "dave" <dave@edin.co.uk>
    > >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    > >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >Date: Tue, 18 Nov 2003 08:35:03 -0000
    > >> >Lines: 218
    > >> >X-Priority: 3
    > >> >X-MSMail-Priority: Normal
    > >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >Message-ID: <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    > >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    > >> 81.128.186.244
    > >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
    > >> >Xref: cpmsftngxa06.phx.gbl
    > >> microsoft.public.dotnet.framework.aspnet.security: 7606
    > >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >
    > >> >Jim
    > >> >
    > >> >Sorry for the delay been away for a few days.
    > >> >
    > >> >I have forwarded a request to my ISP (FastHosts) to see if this is
    > >> something
    > >> >they will cater.
    > >> >
    > >> >Will come back to you soonest.
    > >> >
    > >> >Cheers
    > >> >
    > >> >Dave
    > >> >
    > >> >
    > >> >
    > >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >> >news:yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl...
    > >> >> Dave,
    > >> >>
    > >> >> Okay, now we know that we are truly parsing your Web.config.
    > >> >>
    > >> >> In order to really troubleshoot this, you really need access to the
    > >> >server.
    > >> >> It would then be best to open a case with us so that we can look
    into
    > >> it.
    > >> >> If your host will agree to conference call with us, we can figure
    out
    > >> >> what's going on.
    > >> >>
    > >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    > >> >> Developer Support
    > >> >> ASP.NET
    > >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >>
    > >> >> This post is provided as-is with no warranties and confers no
    rights.
    > >> >>
    > >> >>
    > >> >> --------------------
    > >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >> >Date: Wed, 12 Nov 2003 18:24:46 -0000
    > >> >> >Lines: 147
    > >> >> >X-Priority: 3
    > >> >> >X-MSMail-Priority: Normal
    > >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >> >81.128.209.62
    > >> >> >Path:
    > >> >>
    > >>
    >
    >>cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSF TNGXA05.phx.gbl!TK2MSFTNGP
    > 0
    > >> 8
    > >> >> phx.gbl!TK2MSFTNGP09.phx.gbl
    > >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> microsoft.public.dotnet.framework.aspnet.security: 7550
    > >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >
    > >> >> >Yep, that throws an error!
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    > message
    > >> >> >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    > >> >> >> Dave,
    > >> >> >>
    > >> >> >> I would check to see if it's really parsing your web.config. Try
    > >> >adding
    > >> >> a
    > >> >> >> <foo> tag to your web.config and see if it throws an error.
    > >> >> >>
    > >> >> >> Jim Cheshire [MSFT]
    > >> >> >> Developer Support
    > >> >> >> ASP.NET
    > >> >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >> >>
    > >> >> >> This post is provided as-is with no warranties and confers no
    > >rights.
    > >> >> >>
    > >> >> >>
    > >> >> >> --------------------
    > >> >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >> >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    > >> >> >> >Lines: 96
    > >> >> >> >X-Priority: 3
    > >> >> >> >X-MSMail-Priority: Normal
    > >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >> >> >81.128.209.62
    > >> >> >> >Path:
    > >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    > >> >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7527
    > >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >
    > >> >> >> >Thanks for that Jim
    > >> >> >> >
    > >> >> >> >You are right of course they should ordered differently, but
    > >> >> >unfortunately
    > >> >> >> >that did not make any difference...
    > >> >> >> >
    > >> >> >> >This all works fine on my local pc and server, but not on my
    ISP's
    > >> >> dotnet
    > >> >> >> >site (Fasthosts) - is there anything i can ask them that might
    be
    > >> >> causing
    > >> >> >> >this?
    > >> >> >> >
    > >> >> >> >Thanks again...
    > >> >> >> >
    > >> >> >> >Cheers
    > >> >> >> >
    > >> >> >> >Dave
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    > >> message
    > >> >> >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    > >> >> >> >> Dave,
    > >> >> >> >>
    > >> >> >> >> This web.config should work although you should reverse your
    > >> <allow>
    > >> >> >and
    > >> >> >> >> <deny> tags in the <authorization> element.
    > >> >> >> >>
    > >> >> >> >> Jim Cheshire [MSFT]
    > >> >> >> >> Developer Support
    > >> >> >> >> ASP.NET
    > >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >> >> >>
    > >> >> >> >> This post is provided as-is with no warranties and confers no
    > >> >rights.
    > >> >> >> >>
    > >> >> >> >> --------------------
    > >> >> >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >> >> >Subject: RedirectFromLogin Goes Nowhere?
    > >> >> >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    > >> >> >> >> >Lines: 43
    > >> >> >> >> >X-Priority: 3
    > >> >> >> >> >X-MSMail-Priority: Normal
    > >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >> >> >> >81.128.209.62
    > >> >> >> >> >Path:
    > >> >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    > >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    > >> >> >> >> >X-Tomcat-NG:
    microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >> >
    > >> >> >> >> >Can anyone shed any light on the following:
    > >> >> >> >> >
    > >> >> >> >> >I have forms authentication setup within the web.config file
    > >(see
    > >> >> >below)
    > >> >> >> >> >which protects the entire website, which brings up the login
    > >page
    > >> -
    > >> >> >OK.
    > >> >> >> >> >
    > >> >> >> >> >However, even though I have been logged in and authenticated
    it
    > >is
    > >> >> >still
    > >> >> >> >> >returning to the login page. However if i log in again it
    will
    > >> try
    > >> >> to
    > >> >> >> go
    > >> >> >> >> >off to the originially specified location, but never seems to
    > >get
    > >> >> >there?
    > >> >> >> >> >
    > >> >> >> >> >If i then directly type in the original URL i tried in the
    very
    > >> 1st
    > >> >> >> place
    > >> >> >> >> it
    > >> >> >> >> >resolves fine, as i am now authenticated.
    > >> >> >> >> >
    > >> >> >> >> >This is extremely baffling - hope someone can help!
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >> >Web Config settings.
    > >> >> >> >> >
    > >> >> >> >> ><configuration>
    > >> >> >> >> ><system.web>
    > >> >> >> >> > <customErrors mode="Off"/>
    > >> >> >> >> > <pages smartNavigation="true"/>
    > >> >> >> >> > <compilation debug="true"/>
    > >> >> >> >> >
    > >> >> >> >> ><authentication mode="Forms" >
    > >> >> >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    > >> >> >> >> > <credentials passwordFormat="Clear">
    > >> >> >> >> > <user name="tester" password="testing" />
    > >> >> >> >> > </credentials>
    > >> >> >> >> ></forms>
    > >> >> >> >> ></authentication>
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >> > <authorization>
    > >> >> >> >> > <allow users="tester"/>
    > >> >> >> >> > <deny users="?"/>
    > >> >> >> >> > </authorization>
    > >> >> >> >> ></system.web>
    > >> >> >> >> >
    > >> >> >> >> ></configuration>
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >>
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >
    > >> >> >>
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >>
    > >> >
    > >> >
    > >> >
    > >>
    > >
    > >
    > >
    >

    dave Guest

  12. #12

    Default Re: RedirectFromLogin Goes Nowhere?

    Dave,

    What is dat? What does the Read() method on dat do?

    Jim Cheshire, MCSE, MCSD [MSFT]
    Developer Support
    ASP.NET
    [email]jamesche@online.microsoft.com[/email]

    This post is provided as-is with no warranties and confers no rights.


    --------------------
    >From: "dave" <dave@edin.co.uk>
    >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    <Ze0$bN4rDHA.2996@cpmsftngxa07.phx.gbl>
    >Subject: Re: RedirectFromLogin Goes Nowhere?
    >Date: Thu, 20 Nov 2003 20:54:03 -0000
    >Lines: 392
    >X-Priority: 3
    >X-MSMail-Priority: Normal
    >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >Message-ID: <#Hjyuh6rDHA.3744@TK2MSFTNGP11.phx.gbl>
    >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    81.128.186.244
    >Path:
    cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
    .phx.gbl!TK2MSFTNGP11.phx.gbl
    >Xref: cpmsftngxa07.phx.gbl
    microsoft.public.dotnet.framework.aspnet.security: 7606
    >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >
    >Jim
    >
    >Here is the code snippet from the login page that i use:
    >
    > if dat.Read() then
    > 'set the UserID and UserTypeID Session vars
    > Session("User_FName") = dat("CONTACT_FNAME")
    > Session("User_Type_ID") = dat("USER_TYPE_ID")
    > FormsAuthentication.RedirectFromLoginPage(dat("USE R_ID"), "False")
    >
    > 'pick the users roles/permissions
    > GetUsersRoles()
    >
    > lblValid.Text = "Valid Login Details..."
    > else
    > 'set message to bad login details
    > lblValid.Text = "Incorrect Login Details"
    > end if
    >
    >
    >And here is the whole web.config file:
    >
    >
    ><configuration>
    ><system.web>
    > <customErrors mode="Off"/>
    > <pages smartNavigation="true"/>
    > <compilation debug="true"/>
    >
    ><authentication mode="Forms" >
    ><forms name="Nerisis" path="/" loginUrl="login.aspx" timeout="20" ></forms>
    ></authentication>
    >
    ><authorization>
    > <deny users="?"/>
    ></authorization>
    ></system.web>
    >
    ><appSettings>
    > <add key="DBconnString" value="Server=myserver;Password=xxx;Persist
    >Security Info=True;User ID=sa;Initial Catalog=LMS" />
    ></appSettings>
    >
    >
    ></configuration>
    >
    >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >news:Ze0$bN4rDHA.2996@cpmsftngxa07.phx.gbl...
    >> Dave,
    >>
    >> That's a shame.
    >>
    >> How are you coding your Forms authentication? Are you just calling
    >> RedirectFromLogin()? How are you authenticating in the live site? Are
    >you
    >> just using the web.config with a list of users?
    >>
    >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> Developer Support
    >> ASP.NET
    >> [email]jamesche@online.microsoft.com[/email]
    >>
    >> This post is provided as-is with no warranties and confers no rights.
    >>
    >> --------------------
    >> >From: "dave" <dave@edin.co.uk>
    >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    >> <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    >> <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >Date: Thu, 20 Nov 2003 09:20:48 -0000
    >> >Lines: 281
    >> >X-Priority: 3
    >> >X-MSMail-Priority: Normal
    >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >Message-ID: <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    >> 81.128.186.244
    >> >Path:
    >>
    >cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFT NGXA05.phx.gbl!TK2MSFTNGP0
    8
    >> phx.gbl!TK2MSFTNGP10.phx.gbl
    >> >Xref: cpmsftngxa07.phx.gbl
    >> microsoft.public.dotnet.framework.aspnet.security: 7592
    >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >
    >> >Hi Jim
    >> >
    >> >FH are not willing to assist - they reckon it is a scripting error...
    >> >
    >> >I cant see what it is and i have followed all the samples available to
    >man.
    >> >
    >> >
    >> >
    >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >> >news:pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl...
    >> >> Thanks, Dave. If they agree to it, you will want to call (800)
    >936-5800
    >> >> and open a case with us so that we can assist.
    >> >>
    >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> >> Developer Support
    >> >> ASP.NET
    >> >> [email]jamesche@online.microsoft.com[/email]
    >> >>
    >> >> This post is provided as-is with no warranties and confers no rights.
    >> >>
    >> >> --------------------
    >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >Date: Tue, 18 Nov 2003 08:35:03 -0000
    >> >> >Lines: 218
    >> >> >X-Priority: 3
    >> >> >X-MSMail-Priority: Normal
    >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >Message-ID: <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    >> >> 81.128.186.244
    >> >> >Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
    >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> microsoft.public.dotnet.framework.aspnet.security: 7606
    >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >
    >> >> >Jim
    >> >> >
    >> >> >Sorry for the delay been away for a few days.
    >> >> >
    >> >> >I have forwarded a request to my ISP (FastHosts) to see if this is
    >> >> something
    >> >> >they will cater.
    >> >> >
    >> >> >Will come back to you soonest.
    >> >> >
    >> >> >Cheers
    >> >> >
    >> >> >Dave
    >> >> >
    >> >> >
    >> >> >
    >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    message
    >> >> >news:yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl...
    >> >> >> Dave,
    >> >> >>
    >> >> >> Okay, now we know that we are truly parsing your Web.config.
    >> >> >>
    >> >> >> In order to really troubleshoot this, you really need access to the
    >> >> >server.
    >> >> >> It would then be best to open a case with us so that we can look
    >into
    >> >> it.
    >> >> >> If your host will agree to conference call with us, we can figure
    >out
    >> >> >> what's going on.
    >> >> >>
    >> >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> >> >> Developer Support
    >> >> >> ASP.NET
    >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >>
    >> >> >> This post is provided as-is with no warranties and confers no
    >rights.
    >> >> >>
    >> >> >>
    >> >> >> --------------------
    >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >> >Date: Wed, 12 Nov 2003 18:24:46 -0000
    >> >> >> >Lines: 147
    >> >> >> >X-Priority: 3
    >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >> >81.128.209.62
    >> >> >> >Path:
    >> >> >>
    >> >>
    >>
    >>>cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MS FTNGXA05.phx.gbl!TK2MSFTNG
    P
    >> 0
    >> >> 8
    >> >> >> phx.gbl!TK2MSFTNGP09.phx.gbl
    >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7550
    >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >
    >> >> >> >Yep, that throws an error!
    >> >> >> >
    >> >> >> >
    >> >> >> >
    >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    >> message
    >> >> >> >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    >> >> >> >> Dave,
    >> >> >> >>
    >> >> >> >> I would check to see if it's really parsing your web.config.
    Try
    >> >> >adding
    >> >> >> a
    >> >> >> >> <foo> tag to your web.config and see if it throws an error.
    >> >> >> >>
    >> >> >> >> Jim Cheshire [MSFT]
    >> >> >> >> Developer Support
    >> >> >> >> ASP.NET
    >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >> >>
    >> >> >> >> This post is provided as-is with no warranties and confers no
    >> >rights.
    >> >> >> >>
    >> >> >> >>
    >> >> >> >> --------------------
    >> >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >> >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    >> >> >> >> >Lines: 96
    >> >> >> >> >X-Priority: 3
    >> >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >> >> >81.128.209.62
    >> >> >> >> >Path:
    >> >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7527
    >> >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >
    >> >> >> >> >Thanks for that Jim
    >> >> >> >> >
    >> >> >> >> >You are right of course they should ordered differently, but
    >> >> >> >unfortunately
    >> >> >> >> >that did not make any difference...
    >> >> >> >> >
    >> >> >> >> >This all works fine on my local pc and server, but not on my
    >ISP's
    >> >> >> dotnet
    >> >> >> >> >site (Fasthosts) - is there anything i can ask them that might
    >be
    >> >> >> causing
    >> >> >> >> >this?
    >> >> >> >> >
    >> >> >> >> >Thanks again...
    >> >> >> >> >
    >> >> >> >> >Cheers
    >> >> >> >> >
    >> >> >> >> >Dave
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    >> >> message
    >> >> >> >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    >> >> >> >> >> Dave,
    >> >> >> >> >>
    >> >> >> >> >> This web.config should work although you should reverse your
    >> >> <allow>
    >> >> >> >and
    >> >> >> >> >> <deny> tags in the <authorization> element.
    >> >> >> >> >>
    >> >> >> >> >> Jim Cheshire [MSFT]
    >> >> >> >> >> Developer Support
    >> >> >> >> >> ASP.NET
    >> >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >> >> >>
    >> >> >> >> >> This post is provided as-is with no warranties and confers no
    >> >> >rights.
    >> >> >> >> >>
    >> >> >> >> >> --------------------
    >> >> >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >> >> >Subject: RedirectFromLogin Goes Nowhere?
    >> >> >> >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    >> >> >> >> >> >Lines: 43
    >> >> >> >> >> >X-Priority: 3
    >> >> >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> >> >Newsgroups:
    microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >> >> >> >81.128.209.62
    >> >> >> >> >> >Path:
    >> >> >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    >> >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    >> >> >> >> >> >X-Tomcat-NG:
    >microsoft.public.dotnet.framework.aspnet.securi ty
    >> >> >> >> >> >
    >> >> >> >> >> >Can anyone shed any light on the following:
    >> >> >> >> >> >
    >> >> >> >> >> >I have forms authentication setup within the web.config file
    >> >(see
    >> >> >> >below)
    >> >> >> >> >> >which protects the entire website, which brings up the login
    >> >page
    >> >> -
    >> >> >> >OK.
    >> >> >> >> >> >
    >> >> >> >> >> >However, even though I have been logged in and authenticated
    >it
    >> >is
    >> >> >> >still
    >> >> >> >> >> >returning to the login page. However if i log in again it
    >will
    >> >> try
    >> >> >> to
    >> >> >> >> go
    >> >> >> >> >> >off to the originially specified location, but never seems
    to
    >> >get
    >> >> >> >there?
    >> >> >> >> >> >
    >> >> >> >> >> >If i then directly type in the original URL i tried in the
    >very
    >> >> 1st
    >> >> >> >> place
    >> >> >> >> >> it
    >> >> >> >> >> >resolves fine, as i am now authenticated.
    >> >> >> >> >> >
    >> >> >> >> >> >This is extremely baffling - hope someone can help!
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >> >Web Config settings.
    >> >> >> >> >> >
    >> >> >> >> >> ><configuration>
    >> >> >> >> >> ><system.web>
    >> >> >> >> >> > <customErrors mode="Off"/>
    >> >> >> >> >> > <pages smartNavigation="true"/>
    >> >> >> >> >> > <compilation debug="true"/>
    >> >> >> >> >> >
    >> >> >> >> >> ><authentication mode="Forms" >
    >> >> >> >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    >> >> >> >> >> > <credentials passwordFormat="Clear">
    >> >> >> >> >> > <user name="tester" password="testing" />
    >> >> >> >> >> > </credentials>
    >> >> >> >> >> ></forms>
    >> >> >> >> >> ></authentication>
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >> > <authorization>
    >> >> >> >> >> > <allow users="tester"/>
    >> >> >> >> >> > <deny users="?"/>
    >> >> >> >> >> > </authorization>
    >> >> >> >> >> ></system.web>
    >> >> >> >> >> >
    >> >> >> >> >> ></configuration>
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >>
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >>
    >> >> >> >
    >> >> >> >
    >> >> >> >
    >> >> >>
    >> >> >
    >> >> >
    >> >> >
    >> >>
    >> >
    >> >
    >> >
    >>
    >
    >
    >
    Jim Cheshire [MSFT] Guest

  13. #13

    Default Re: RedirectFromLogin Goes Nowhere?

    Sorry Jim

    Dat is a datareader taken from an sql DB, as iam validating their login
    details against a DB - and read() is the sqldatareader method for iterating
    the records.



    "Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    news:gUwlRr7rDHA.3444@cpmsftngxa07.phx.gbl...
    > Dave,
    >
    > What is dat? What does the Read() method on dat do?
    >
    > Jim Cheshire, MCSE, MCSD [MSFT]
    > Developer Support
    > ASP.NET
    > [email]jamesche@online.microsoft.com[/email]
    >
    > This post is provided as-is with no warranties and confers no rights.
    >
    >
    > --------------------
    > >From: "dave" <dave@edin.co.uk>
    > >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    > <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    > <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    > <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    > <Ze0$bN4rDHA.2996@cpmsftngxa07.phx.gbl>
    > >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >Date: Thu, 20 Nov 2003 20:54:03 -0000
    > >Lines: 392
    > >X-Priority: 3
    > >X-MSMail-Priority: Normal
    > >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >Message-ID: <#Hjyuh6rDHA.3744@TK2MSFTNGP11.phx.gbl>
    > >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    > 81.128.186.244
    > >Path:
    >
    cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
    > phx.gbl!TK2MSFTNGP11.phx.gbl
    > >Xref: cpmsftngxa07.phx.gbl
    > microsoft.public.dotnet.framework.aspnet.security: 7606
    > >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >
    > >Jim
    > >
    > >Here is the code snippet from the login page that i use:
    > >
    > > if dat.Read() then
    > > 'set the UserID and UserTypeID Session vars
    > > Session("User_FName") = dat("CONTACT_FNAME")
    > > Session("User_Type_ID") = dat("USER_TYPE_ID")
    > > FormsAuthentication.RedirectFromLoginPage(dat("USE R_ID"), "False")
    > >
    > > 'pick the users roles/permissions
    > > GetUsersRoles()
    > >
    > > lblValid.Text = "Valid Login Details..."
    > > else
    > > 'set message to bad login details
    > > lblValid.Text = "Incorrect Login Details"
    > > end if
    > >
    > >
    > >And here is the whole web.config file:
    > >
    > >
    > ><configuration>
    > ><system.web>
    > > <customErrors mode="Off"/>
    > > <pages smartNavigation="true"/>
    > > <compilation debug="true"/>
    > >
    > ><authentication mode="Forms" >
    > ><forms name="Nerisis" path="/" loginUrl="login.aspx" timeout="20"
    ></forms>
    > ></authentication>
    > >
    > ><authorization>
    > > <deny users="?"/>
    > ></authorization>
    > ></system.web>
    > >
    > ><appSettings>
    > > <add key="DBconnString" value="Server=myserver;Password=xxx;Persist
    > >Security Info=True;User ID=sa;Initial Catalog=LMS" />
    > ></appSettings>
    > >
    > >
    > ></configuration>
    > >
    > >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >news:Ze0$bN4rDHA.2996@cpmsftngxa07.phx.gbl...
    > >> Dave,
    > >>
    > >> That's a shame.
    > >>
    > >> How are you coding your Forms authentication? Are you just calling
    > >> RedirectFromLogin()? How are you authenticating in the live site? Are
    > >you
    > >> just using the web.config with a list of users?
    > >>
    > >> Jim Cheshire, MCSE, MCSD [MSFT]
    > >> Developer Support
    > >> ASP.NET
    > >> [email]jamesche@online.microsoft.com[/email]
    > >>
    > >> This post is provided as-is with no warranties and confers no rights.
    > >>
    > >> --------------------
    > >> >From: "dave" <dave@edin.co.uk>
    > >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    > >> <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    > >> <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    > >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >Date: Thu, 20 Nov 2003 09:20:48 -0000
    > >> >Lines: 281
    > >> >X-Priority: 3
    > >> >X-MSMail-Priority: Normal
    > >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >Message-ID: <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    > >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    > >> 81.128.186.244
    > >> >Path:
    > >>
    >
    >cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFT NGXA05.phx.gbl!TK2MSFTNGP0
    > 8
    > >> phx.gbl!TK2MSFTNGP10.phx.gbl
    > >> >Xref: cpmsftngxa07.phx.gbl
    > >> microsoft.public.dotnet.framework.aspnet.security: 7592
    > >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >
    > >> >Hi Jim
    > >> >
    > >> >FH are not willing to assist - they reckon it is a scripting error...
    > >> >
    > >> >I cant see what it is and i have followed all the samples available to
    > >man.
    > >> >
    > >> >
    > >> >
    > >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    > >> >news:pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl...
    > >> >> Thanks, Dave. If they agree to it, you will want to call (800)
    > >936-5800
    > >> >> and open a case with us so that we can assist.
    > >> >>
    > >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    > >> >> Developer Support
    > >> >> ASP.NET
    > >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >>
    > >> >> This post is provided as-is with no warranties and confers no
    rights.
    > >> >>
    > >> >> --------------------
    > >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > >> >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > >> >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    > >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >> >Date: Tue, 18 Nov 2003 08:35:03 -0000
    > >> >> >Lines: 218
    > >> >> >X-Priority: 3
    > >> >> >X-MSMail-Priority: Normal
    > >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >Message-ID: <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    > >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    > >> >> 81.128.186.244
    > >> >> >Path:
    cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
    > >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> microsoft.public.dotnet.framework.aspnet.security: 7606
    > >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >
    > >> >> >Jim
    > >> >> >
    > >> >> >Sorry for the delay been away for a few days.
    > >> >> >
    > >> >> >I have forwarded a request to my ISP (FastHosts) to see if this is
    > >> >> something
    > >> >> >they will cater.
    > >> >> >
    > >> >> >Will come back to you soonest.
    > >> >> >
    > >> >> >Cheers
    > >> >> >
    > >> >> >Dave
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    > message
    > >> >> >news:yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl...
    > >> >> >> Dave,
    > >> >> >>
    > >> >> >> Okay, now we know that we are truly parsing your Web.config.
    > >> >> >>
    > >> >> >> In order to really troubleshoot this, you really need access to
    the
    > >> >> >server.
    > >> >> >> It would then be best to open a case with us so that we can look
    > >into
    > >> >> it.
    > >> >> >> If your host will agree to conference call with us, we can figure
    > >out
    > >> >> >> what's going on.
    > >> >> >>
    > >> >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    > >> >> >> Developer Support
    > >> >> >> ASP.NET
    > >> >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >> >>
    > >> >> >> This post is provided as-is with no warranties and confers no
    > >rights.
    > >> >> >>
    > >> >> >>
    > >> >> >> --------------------
    > >> >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    > >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >> >> >Date: Wed, 12 Nov 2003 18:24:46 -0000
    > >> >> >> >Lines: 147
    > >> >> >> >X-Priority: 3
    > >> >> >> >X-MSMail-Priority: Normal
    > >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >> >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    > >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >> >> >81.128.209.62
    > >> >> >> >Path:
    > >> >> >>
    > >> >>
    > >>
    >
    >>>cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MS FTNGXA05.phx.gbl!TK2MSFTNG
    > P
    > >> 0
    > >> >> 8
    > >> >> >> phx.gbl!TK2MSFTNGP09.phx.gbl
    > >> >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7550
    > >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >
    > >> >> >> >Yep, that throws an error!
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    > >> message
    > >> >> >> >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    > >> >> >> >> Dave,
    > >> >> >> >>
    > >> >> >> >> I would check to see if it's really parsing your web.config.
    > Try
    > >> >> >adding
    > >> >> >> a
    > >> >> >> >> <foo> tag to your web.config and see if it throws an error.
    > >> >> >> >>
    > >> >> >> >> Jim Cheshire [MSFT]
    > >> >> >> >> Developer Support
    > >> >> >> >> ASP.NET
    > >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >> >> >>
    > >> >> >> >> This post is provided as-is with no warranties and confers no
    > >> >rights.
    > >> >> >> >>
    > >> >> >> >>
    > >> >> >> >> --------------------
    > >> >> >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    > >> >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    > >> >> >> >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    > >> >> >> >> >Lines: 96
    > >> >> >> >> >X-Priority: 3
    > >> >> >> >> >X-MSMail-Priority: Normal
    > >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >> >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    > >> >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    > >> >> >> >81.128.209.62
    > >> >> >> >> >Path:
    > >> >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    > >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7527
    > >> >> >> >> >X-Tomcat-NG:
    microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >> >
    > >> >> >> >> >Thanks for that Jim
    > >> >> >> >> >
    > >> >> >> >> >You are right of course they should ordered differently, but
    > >> >> >> >unfortunately
    > >> >> >> >> >that did not make any difference...
    > >> >> >> >> >
    > >> >> >> >> >This all works fine on my local pc and server, but not on my
    > >ISP's
    > >> >> >> dotnet
    > >> >> >> >> >site (Fasthosts) - is there anything i can ask them that
    might
    > >be
    > >> >> >> causing
    > >> >> >> >> >this?
    > >> >> >> >> >
    > >> >> >> >> >Thanks again...
    > >> >> >> >> >
    > >> >> >> >> >Cheers
    > >> >> >> >> >
    > >> >> >> >> >Dave
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote
    in
    > >> >> message
    > >> >> >> >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    > >> >> >> >> >> Dave,
    > >> >> >> >> >>
    > >> >> >> >> >> This web.config should work although you should reverse
    your
    > >> >> <allow>
    > >> >> >> >and
    > >> >> >> >> >> <deny> tags in the <authorization> element.
    > >> >> >> >> >>
    > >> >> >> >> >> Jim Cheshire [MSFT]
    > >> >> >> >> >> Developer Support
    > >> >> >> >> >> ASP.NET
    > >> >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    > >> >> >> >> >>
    > >> >> >> >> >> This post is provided as-is with no warranties and confers
    no
    > >> >> >rights.
    > >> >> >> >> >>
    > >> >> >> >> >> --------------------
    > >> >> >> >> >> >From: "dave" <dave@edin.co.uk>
    > >> >> >> >> >> >Subject: RedirectFromLogin Goes Nowhere?
    > >> >> >> >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    > >> >> >> >> >> >Lines: 43
    > >> >> >> >> >> >X-Priority: 3
    > >> >> >> >> >> >X-MSMail-Priority: Normal
    > >> >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > >> >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > >> >> >> >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    > >> >> >> >> >> >Newsgroups:
    > microsoft.public.dotnet.framework.aspnet.security
    > >> >> >> >> >> >NNTP-Posting-Host:
    host81-128-209-62.in-addr.btopenworld.com
    > >> >> >> >> >81.128.209.62
    > >> >> >> >> >> >Path:
    > >> >> >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    > >> >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    > >> >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    > >> >> >> >> >> >X-Tomcat-NG:
    > >microsoft.public.dotnet.framework.aspnet.securi ty
    > >> >> >> >> >> >
    > >> >> >> >> >> >Can anyone shed any light on the following:
    > >> >> >> >> >> >
    > >> >> >> >> >> >I have forms authentication setup within the web.config
    file
    > >> >(see
    > >> >> >> >below)
    > >> >> >> >> >> >which protects the entire website, which brings up the
    login
    > >> >page
    > >> >> -
    > >> >> >> >OK.
    > >> >> >> >> >> >
    > >> >> >> >> >> >However, even though I have been logged in and
    authenticated
    > >it
    > >> >is
    > >> >> >> >still
    > >> >> >> >> >> >returning to the login page. However if i log in again it
    > >will
    > >> >> try
    > >> >> >> to
    > >> >> >> >> go
    > >> >> >> >> >> >off to the originially specified location, but never seems
    > to
    > >> >get
    > >> >> >> >there?
    > >> >> >> >> >> >
    > >> >> >> >> >> >If i then directly type in the original URL i tried in the
    > >very
    > >> >> 1st
    > >> >> >> >> place
    > >> >> >> >> >> it
    > >> >> >> >> >> >resolves fine, as i am now authenticated.
    > >> >> >> >> >> >
    > >> >> >> >> >> >This is extremely baffling - hope someone can help!
    > >> >> >> >> >> >
    > >> >> >> >> >> >
    > >> >> >> >> >> >Web Config settings.
    > >> >> >> >> >> >
    > >> >> >> >> >> ><configuration>
    > >> >> >> >> >> ><system.web>
    > >> >> >> >> >> > <customErrors mode="Off"/>
    > >> >> >> >> >> > <pages smartNavigation="true"/>
    > >> >> >> >> >> > <compilation debug="true"/>
    > >> >> >> >> >> >
    > >> >> >> >> >> ><authentication mode="Forms" >
    > >> >> >> >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    > >> >> >> >> >> > <credentials passwordFormat="Clear">
    > >> >> >> >> >> > <user name="tester" password="testing" />
    > >> >> >> >> >> > </credentials>
    > >> >> >> >> >> ></forms>
    > >> >> >> >> >> ></authentication>
    > >> >> >> >> >> >
    > >> >> >> >> >> >
    > >> >> >> >> >> > <authorization>
    > >> >> >> >> >> > <allow users="tester"/>
    > >> >> >> >> >> > <deny users="?"/>
    > >> >> >> >> >> > </authorization>
    > >> >> >> >> >> ></system.web>
    > >> >> >> >> >> >
    > >> >> >> >> >> ></configuration>
    > >> >> >> >> >> >
    > >> >> >> >> >> >
    > >> >> >> >> >> >
    > >> >> >> >> >> >
    > >> >> >> >> >> >
    > >> >> >> >> >>
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >> >
    > >> >> >> >>
    > >> >> >> >
    > >> >> >> >
    > >> >> >> >
    > >> >> >>
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >>
    > >> >
    > >> >
    > >> >
    > >>
    > >
    > >
    > >
    >

    dave Guest

  14. #14

    Default Re: RedirectFromLogin Goes Nowhere?

    Dave,

    It's hard to say without seeing all of your code, but with a DataReader,
    you would normally use a while loop since you should expect that the
    DataReader contains more than one record.

    Have you debugged this to see if authentication is failing on the first
    attempt?

    Jim Cheshire, MCSE, MCSD [MSFT]
    Developer Support
    ASP.NET
    [email]jamesche@online.microsoft.com[/email]

    This post is provided as-is with no warranties and confers no rights.

    --------------------
    >From: "dave" <dave@edin.co.uk>
    >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    <Ze0$bN4rDHA.2996@cpmsftngxa07.phx.gbl>
    <#Hjyuh6rDHA.3744@TK2MSFTNGP11.phx.gbl>
    <gUwlRr7rDHA.3444@cpmsftngxa07.phx.gbl>
    >Subject: Re: RedirectFromLogin Goes Nowhere?
    >Date: Fri, 21 Nov 2003 08:53:40 -0000
    >Lines: 470
    >X-Priority: 3
    >X-MSMail-Priority: Normal
    >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >Message-ID: <Ovqj2zAsDHA.2436@TK2MSFTNGP12.phx.gbl>
    >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    81.128.186.244
    >Path:
    cpmsftngxa07.phx.gbl!cpmsftngxa06.phx.gbl!TK2MSFTN GP08.phx.gbl!TK2MSFTNGP12.
    phx.gbl
    >Xref: cpmsftngxa07.phx.gbl
    microsoft.public.dotnet.framework.aspnet.security: 7612
    >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >
    >Sorry Jim
    >
    >Dat is a datareader taken from an sql DB, as iam validating their login
    >details against a DB - and read() is the sqldatareader method for iterating
    >the records.
    >
    >
    >
    >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >news:gUwlRr7rDHA.3444@cpmsftngxa07.phx.gbl...
    >> Dave,
    >>
    >> What is dat? What does the Read() method on dat do?
    >>
    >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> Developer Support
    >> ASP.NET
    >> [email]jamesche@online.microsoft.com[/email]
    >>
    >> This post is provided as-is with no warranties and confers no rights.
    >>
    >>
    >> --------------------
    >> >From: "dave" <dave@edin.co.uk>
    >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    >> <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    >> <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    >> <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    >> <Ze0$bN4rDHA.2996@cpmsftngxa07.phx.gbl>
    >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >Date: Thu, 20 Nov 2003 20:54:03 -0000
    >> >Lines: 392
    >> >X-Priority: 3
    >> >X-MSMail-Priority: Normal
    >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >Message-ID: <#Hjyuh6rDHA.3744@TK2MSFTNGP11.phx.gbl>
    >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    >> 81.128.186.244
    >> >Path:
    >>
    >cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFT NGXA05.phx.gbl!TK2MSFTNGP0
    8
    >> phx.gbl!TK2MSFTNGP11.phx.gbl
    >> >Xref: cpmsftngxa07.phx.gbl
    >> microsoft.public.dotnet.framework.aspnet.security: 7606
    >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >
    >> >Jim
    >> >
    >> >Here is the code snippet from the login page that i use:
    >> >
    >> > if dat.Read() then
    >> > 'set the UserID and UserTypeID Session vars
    >> > Session("User_FName") = dat("CONTACT_FNAME")
    >> > Session("User_Type_ID") = dat("USER_TYPE_ID")
    >> > FormsAuthentication.RedirectFromLoginPage(dat("USE R_ID"), "False")
    >> >
    >> > 'pick the users roles/permissions
    >> > GetUsersRoles()
    >> >
    >> > lblValid.Text = "Valid Login Details..."
    >> > else
    >> > 'set message to bad login details
    >> > lblValid.Text = "Incorrect Login Details"
    >> > end if
    >> >
    >> >
    >> >And here is the whole web.config file:
    >> >
    >> >
    >> ><configuration>
    >> ><system.web>
    >> > <customErrors mode="Off"/>
    >> > <pages smartNavigation="true"/>
    >> > <compilation debug="true"/>
    >> >
    >> ><authentication mode="Forms" >
    >> ><forms name="Nerisis" path="/" loginUrl="login.aspx" timeout="20"
    >></forms>
    >> ></authentication>
    >> >
    >> ><authorization>
    >> > <deny users="?"/>
    >> ></authorization>
    >> ></system.web>
    >> >
    >> ><appSettings>
    >> > <add key="DBconnString" value="Server=myserver;Password=xxx;Persist
    >> >Security Info=True;User ID=sa;Initial Catalog=LMS" />
    >> ></appSettings>
    >> >
    >> >
    >> ></configuration>
    >> >
    >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in message
    >> >news:Ze0$bN4rDHA.2996@cpmsftngxa07.phx.gbl...
    >> >> Dave,
    >> >>
    >> >> That's a shame.
    >> >>
    >> >> How are you coding your Forms authentication? Are you just calling
    >> >> RedirectFromLogin()? How are you authenticating in the live site?
    Are
    >> >you
    >> >> just using the web.config with a list of users?
    >> >>
    >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> >> Developer Support
    >> >> ASP.NET
    >> >> [email]jamesche@online.microsoft.com[/email]
    >> >>
    >> >> This post is provided as-is with no warranties and confers no rights.
    >> >>
    >> >> --------------------
    >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    >> >> <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    >> >> <pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl>
    >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >Date: Thu, 20 Nov 2003 09:20:48 -0000
    >> >> >Lines: 281
    >> >> >X-Priority: 3
    >> >> >X-MSMail-Priority: Normal
    >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >Message-ID: <#9w3Ze0rDHA.2508@TK2MSFTNGP10.phx.gbl>
    >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    >> >> 81.128.186.244
    >> >> >Path:
    >> >>
    >>
    >>cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSF TNGXA05.phx.gbl!TK2MSFTNGP
    0
    >> 8
    >> >> phx.gbl!TK2MSFTNGP10.phx.gbl
    >> >> >Xref: cpmsftngxa07.phx.gbl
    >> >> microsoft.public.dotnet.framework.aspnet.security: 7592
    >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >
    >> >> >Hi Jim
    >> >> >
    >> >> >FH are not willing to assist - they reckon it is a scripting error...
    >> >> >
    >> >> >I cant see what it is and i have followed all the samples available
    to
    >> >man.
    >> >> >
    >> >> >
    >> >> >
    >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    message
    >> >> >news:pVpHGmfrDHA.2088@cpmsftngxa06.phx.gbl...
    >> >> >> Thanks, Dave. If they agree to it, you will want to call (800)
    >> >936-5800
    >> >> >> and open a case with us so that we can assist.
    >> >> >>
    >> >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> >> >> Developer Support
    >> >> >> ASP.NET
    >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >>
    >> >> >> This post is provided as-is with no warranties and confers no
    >rights.
    >> >> >>
    >> >> >> --------------------
    >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> >> >> <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> >> >> <yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl>
    >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >> >Date: Tue, 18 Nov 2003 08:35:03 -0000
    >> >> >> >Lines: 218
    >> >> >> >X-Priority: 3
    >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >Message-ID: <#3zde7arDHA.1656@tk2msftngp13.phx.gbl>
    >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >NNTP-Posting-Host: host81-128-186-244.in-addr.btopenworld.com
    >> >> >> 81.128.186.244
    >> >> >> >Path:
    >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msft ngp13.phx.gbl
    >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7606
    >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >
    >> >> >> >Jim
    >> >> >> >
    >> >> >> >Sorry for the delay been away for a few days.
    >> >> >> >
    >> >> >> >I have forwarded a request to my ISP (FastHosts) to see if this is
    >> >> >> something
    >> >> >> >they will cater.
    >> >> >> >
    >> >> >> >Will come back to you oonest.
    >> >> >> >
    >> >> >> >Cheers
    >> >> >> >
    >> >> >> >Dave
    >> >> >> >
    >> >> >> >
    >> >> >> >
    >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    >> message
    >> >> >> >news:yLGSRTgqDHA.2396@cpmsftngxa06.phx.gbl...
    >> >> >> >> Dave,
    >> >> >> >>
    >> >> >> >> Okay, now we know that we are truly parsing your Web.config.
    >> >> >> >>
    >> >> >> >> In order to really troubleshoot this, you really need access to
    >the
    >> >> >> >server.
    >> >> >> >> It would then be best to open a case with us so that we can
    look
    >> >into
    >> >> >> it.
    >> >> >> >> If your host will agree to conference call with us, we can
    figure
    >> >out
    >> >> >> >> what's going on.
    >> >> >> >>
    >> >> >> >> Jim Cheshire, MCSE, MCSD [MSFT]
    >> >> >> >> Developer Support
    >> >> >> >> ASP.NET
    >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >> >>
    >> >> >> >> This post is provided as-is with no warranties and confers no
    >> >rights.
    >> >> >> >>
    >> >> >> >>
    >> >> >> >> --------------------
    >> >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> >> >> <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> <mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl>
    >> >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >> >> >Date: Wed, 12 Nov 2003 18:24:46 -0000
    >> >> >> >> >Lines: 147
    >> >> >> >> >X-Priority: 3
    >> >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >> >Message-ID: <OlmSEpUqDHA.2140@TK2MSFTNGP09.phx.gbl>
    >> >> >> >> >Newsgroups: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >> >> >81.128.209.62
    >> >> >> >> >Path:
    >> >> >> >>
    >> >> >>
    >> >>
    >>
    >>>>cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2M SFTNGXA05.phx.gbl!TK2MSFTN
    G
    >> P
    >> >> 0
    >> >> >> 8
    >> >> >> >> phx.gbl!TK2MSFTNGP09.phx.gbl
    >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7550
    >> >> >> >> >X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >
    >> >> >> >> >Yep, that throws an error!
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote in
    >> >> message
    >> >> >> >> >news:mYHvBjUqDHA.1332@cpmsftngxa06.phx.gbl...
    >> >> >> >> >> Dave,
    >> >> >> >> >>
    >> >> >> >> >> I would check to see if it's really parsing your web.config.
    >> Try
    >> >> >> >adding
    >> >> >> >> a
    >> >> >> >> >> <foo> tag to your web.config and see if it throws an error.
    >> >> >> >> >>
    >> >> >> >> >> Jim Cheshire [MSFT]
    >> >> >> >> >> Developer Support
    >> >> >> >> >> ASP.NET
    >> >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >> >> >>
    >> >> >> >> >> This post is provided as-is with no warranties and confers no
    >> >> >rights.
    >> >> >> >> >>
    >> >> >> >> >>
    >> >> >> >> >> --------------------
    >> >> >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >> >> >References: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> >> <ZN#ktdHqDHA.1844@cpmsftngxa06.phx.gbl>
    >> >> >> >> >> >Subject: Re: RedirectFromLogin Goes Nowhere?
    >> >> >> >> >> >Date: Tue, 11 Nov 2003 20:00:40 -0000
    >> >> >> >> >> >Lines: 96
    >> >> >> >> >> >X-Priority: 3
    >> >> >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >> >> >Message-ID: <#mAc$5IqDHA.1632@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> >> >Newsgroups:
    microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >> >NNTP-Posting-Host: host81-128-209-62.in-addr.btopenworld.com
    >> >> >> >> >81.128.209.62
    >> >> >> >> >> >Path:
    >> >> >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    >> >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7527
    >> >> >> >> >> >X-Tomcat-NG:
    >microsoft.public.dotnet.framework.aspnet.securi ty
    >> >> >> >> >> >
    >> >> >> >> >> >Thanks for that Jim
    >> >> >> >> >> >
    >> >> >> >> >> >You are right of course they should ordered differently, but
    >> >> >> >> >unfortunately
    >> >> >> >> >> >that did not make any difference...
    >> >> >> >> >> >
    >> >> >> >> >> >This all works fine on my local pc and server, but not on my
    >> >ISP's
    >> >> >> >> dotnet
    >> >> >> >> >> >site (Fasthosts) - is there anything i can ask them that
    >might
    >> >be
    >> >> >> >> causing
    >> >> >> >> >> >this?
    >> >> >> >> >> >
    >> >> >> >> >> >Thanks again...
    >> >> >> >> >> >
    >> >> >> >> >> >Cheers
    >> >> >> >> >> >
    >> >> >> >> >> >Dave
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >> >"Jim Cheshire [MSFT]" <jamesche@online.microsoft.com> wrote
    >in
    >> >> >> message
    >> >> >> >> >> >news:ZN%23ktdHqDHA.1844@cpmsftngxa06.phx.gbl...
    >> >> >> >> >> >> Dave,
    >> >> >> >> >> >>
    >> >> >> >> >> >> This web.config should work although you should reverse
    >your
    >> >> >> <allow>
    >> >> >> >> >and
    >> >> >> >> >> >> <deny> tags in the <authorization> element.
    >> >> >> >> >> >>
    >> >> >> >> >> >> Jim Cheshire [MSFT]
    >> >> >> >> >> >> Developer Support
    >> >> >> >> >> >> ASP.NET
    >> >> >> >> >> >> [email]jamesche@online.microsoft.com[/email]
    >> >> >> >> >> >>
    >> >> >> >> >> >> This post is provided as-is with no warranties and confers
    >no
    >> >> >> >rights.
    >> >> >> >> >> >>
    >> >> >> >> >> >> --------------------
    >> >> >> >> >> >> >From: "dave" <dave@edin.co.uk>
    >> >> >> >> >> >> >Subject: RedirectFromLogin Goes Nowhere?
    >> >> >> >> >> >> >Date: Tue, 11 Nov 2003 11:07:55 -0000
    >> >> >> >> >> >> >Lines: 43
    >> >> >> >> >> >> >X-Priority: 3
    >> >> >> >> >> >> >X-MSMail-Priority: Normal
    >> >> >> >> >> >> >X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    >> >> >> >> >> >> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    >> >> >> >> >> >> >Message-ID: <etnhQQEqDHA.2416@TK2MSFTNGP10.phx.gbl>
    >> >> >> >> >> >> >Newsgroups:
    >> microsoft.public.dotnet.framework.aspnet.security
    >> >> >> >> >> >> >NNTP-Posting-Host:
    >host81-128-209-62.in-addr.btopenworld.com
    >> >> >> >> >> >81.128.209.62
    >> >> >> >> >> >> >Path:
    >> >> >> >cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
    >> >> >> >> >> >> >Xref: cpmsftngxa06.phx.gbl
    >> >> >> >> >> >> microsoft.public.dotnet.framework.aspnet.security: 7513
    >> >> >> >> >> >> >X-Tomcat-NG:
    >> >microsoft.public.dotnet.framework.aspnet.securi ty
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >Can anyone shed any light on the following:
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >I have forms authentication setup within the web.config
    >file
    >> >> >(see
    >> >> >> >> >below)
    >> >> >> >> >> >> >which protects the entire website, which brings up the
    >login
    >> >> >page
    >> >> >> -
    >> >> >> >> >OK.
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >However, even though I have been logged in and
    >authenticated
    >> >it
    >> >> >is
    >> >> >> >> >still
    >> >> >> >> >> >> >returning to the login page. However if i log in again
    it
    >> >will
    >> >> >> try
    >> >> >> >> to
    >> >> >> >> >> go
    >> >> >> >> >> >> >off to the originially specified location, but never
    seems
    >> to
    >> >> >get
    >> >> >> >> >there?
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >If i then directly type in the original URL i tried in
    the
    >> >very
    >> >> >> 1st
    >> >> >> >> >> place
    >> >> >> >> >> >> it
    >> >> >> >> >> >> >resolves fine, as i am now authenticated.
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >This is extremely baffling - hope someone can help!
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >Web Config settings.
    >> >> >> >> >> >> >
    >> >> >> >> >> >> ><configuration>
    >> >> >> >> >> >> ><system.web>
    >> >> >> >> >> >> > <customErrors mode="Off"/>
    >> >> >> >> >> >> > <pages smartNavigation="true"/>
    >> >> >> >> >> >> > <compilation debug="true"/>
    >> >> >> >> >> >> >
    >> >> >> >> >> >> ><authentication mode="Forms" >
    >> >> >> >> >> >> ><forms name="App1" path="/" loginUrl="login.aspx" >
    >> >> >> >> >> >> > <credentials passwordFormat="Clear">
    >> >> >> >> >> >> > <user name="tester" password="testing" />
    >> >> >> >> >> >> > </credentials>
    >> >> >> >> >> >> ></forms>
    >> >> >> >> >> >> ></authentication>
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >
    >> >> >> >> >> >> > <authorization>
    >> >> >> >> >> >> > <allow users="tester"/>
    >> >> >> >> >> >> > <deny users="?"/>
    >> >> >> >> >> >> > </authorization>
    >> >> >> >> >> >> ></system.web>
    >> >> >> >> >> >> >
    >> >> >> >> >> >> ></configuration>
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >
    >> >> >> >> >> >> >
    >> >> >> >> >> >>
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >> >
    >> >> >> >> >>
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >> >
    >> >> >> >>
    >> >> >> >
    >> >> >> >
    >> >> >> >
    >> >> >>
    >> >> >
    >> >> >
    >> >> >
    >> >>
    >> >
    >> >
    >> >
    >>
    >
    >
    >
    Jim Cheshire [MSFT] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139