authentication not kept when deploying application

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

  1. #1

    Default authentication not kept when deploying application

    I currently wrote a login application using asp.net. It works just great on
    my local computer, but I need to use it on the internet for the company
    website. I deployed it using the Web Setup Project onto the webserver. Now
    when I try to access the page that is supposed to be protected(by login), I
    can get right to it without having to login. None of my forms
    authentication or authorization code is working.

    Here is the layout on the webserver:
    -webserver
    -wwwroot
    -folder1(virtual directory)
    -folder2(virtual directory)
    -protected pages
    -web.config
    -folder3(not a virtual directory)
    -login page
    -web.config

    Any help or advise would be greatly appreciated. Thanks for the help in
    advance.

    --
    Message posted via [url]http://www.dotnetmonster.com[/url]
    Nicole Temple via DotNetMonster.com Guest

  2. Similar Questions and Discussions

    1. Deploying an ASP.NET application
      I have just finished an ASP.NET application, but I don't know if I need to deploy/release the project in order to use it on the internet. It...
    2. Sharing Forms Authentication between application and sub-application
      Hi, I'm succesfully using Forms Authentication on a site I'm working on (MyMainApp). In a subfolder of this site, I have a seperate ASP.NET...
    3. Deploying ASP.NET database application to remote server
      Everything in the deployment works fine with the exception of the address of the database also deployed on the remote server. The string address...
    4. deploying the web application
      Hi, I am using visual studio .net for developing and deploying the web application. My application is running perfectly on my system. I...
    5. Deploying ASP.NET application + database
      Hi, I have ASP.NET application that includes a database. How do I transfer all this to another computer. Do I just copy application's folder and...
  3. #2

    Default Re: authentication not kept when deploying application

    Are you using windows authentication? If so, it sounds as if the application
    in IIS still allows anonymous access. If that's not it, it's probabaly some
    setting in IIS that's different on your machine than the live webserver.

    -Brock
    DevelopMentor
    [url]http://staff.develop.com/ballen[/url]

    > I currently wrote a login application using asp.net. It works just
    > great on my local computer, but I need to use it on the internet for
    > the company website. I deployed it using the Web Setup Project onto
    > the webserver. Now when I try to access the page that is supposed to
    > be protected(by login), I can get right to it without having to login.
    > None of my forms authentication or authorization code is working.
    >
    > Here is the layout on the webserver:
    > -webserver
    > -wwwroot
    > -folder1(virtual directory)
    > -folder2(virtual directory)
    > -protected pages
    > -web.config
    > -folder3(not a virtual directory)
    > -login page
    > -web.config
    > Any help or advise would be greatly appreciated. Thanks for the help
    > in advance.
    >


    Brock Allen 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