I have a problem with atlas and authentication

Last post 07-12-2006 4:23 AM by denman. 2 replies.

Sort Posts:

  • I have a problem with atlas and authentication

    07-11-2006, 3:39 AM
    • Member
      5 point Member
    • santosbj
    • Member since 03-29-2006, 8:56 AM
    • Posts 2

    Hi,

    When i activate the authentication mode

    <authentication mode="Forms">
          <forms loginUrl="Login.aspx" timeout="20"/>
        </authentication>
        <authorization>
          <deny users="?"/>
    </authorization>

    then atlas not work and get JavaScript Error, then i put the next lines in web.config

     <location path="atlasglob.axd">
        <system.web>
          <authorization>
            <allow users="*"/>
            </authorization>
          </system.web>
        </location>
      <location path="WebResource.axd">
        <system.web>
          <authorization>
            <allow users="*"/>
          </authorization>
        </system.web>
      </location>

      <location path="SecurePages">
      <system.web>
        <authorization>
          <allow roles="AuthenticatedUsers"/>
          <deny users="*"/>
        </authorization>
      </system.web>
      </location>

    but the problem persist.

    mi application only work without authentication mode.

    please help me.

  • Re: I have a problem with atlas and authentication

    07-11-2006, 8:56 AM
    • Member
      71 point Member
    • denman
    • Member since 07-10-2006, 10:11 AM
    • Enschede, The Netherlands
    • Posts 26

    It seems we have the same problem...

    Only I thought my problem initialy was different..

    See: http://forums.asp.net/thread/1336861.aspx

     

  • Re: I have a problem with atlas and authentication

    07-12-2006, 4:23 AM
    • Member
      71 point Member
    • denman
    • Member since 07-10-2006, 10:11 AM
    • Enschede, The Netherlands
    • Posts 26

    Hi santosbj,

    I had the same problem (http://forums.asp.net/thread/1336861.aspx).

    The following works for me:

    Install Fiddler (http://www.fiddlertool.com/). Run it, then run your website.

    Look at the log Fiddler makes, probably you will see the pages atlasglob.axd and WebResource.axd in the log (maybe you see more pages coming by, try to add them to locations-tags to).

    Add this pages to your location tags in the web.config, and allow all users to view these pages.

Page 1 of 1 (3 items)