ASP.NET Configuration Error

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

  1. #1

    Default ASP.NET Configuration Error

    I cannot configure web.config file properly on my system.
    Pls help me getting following error:

    Server Error in '/' Application.
    -----------------------------------------------------------
    ---------------------

    Configuration Error
    Description: An error occurred during the processing of a
    configuration file required to service this request.
    Please review the specific error details below and modify
    your configuration file appropriately.

    Parser Error Message: It is an error to use a section
    registered as allowDefinition='MachineToApplication'
    beyond application level. This error can be caused by a
    virtual directory not being configured as an application
    in IIS.

    Source Error:


    Line 7: <system.web>
    Line 8:
    Line 9: <authentication mode="Forms">
    Line 10: <forms name="dtiindiaupload"
    loginUrl="dtiupload/login.aspx" protection="All"
    timeout="1" path="/" />
    Line 11: </authentication>


    Pratap Guest

  2. Similar Questions and Discussions

    1. Impersonation Configuration Error
      I have entered an identity element in my Web.Config file: <identity impersonate="true" userName="myDomain\myUserid" password="myPassword" /> ...
    2. Web Server Configuration Error
      After installing the Cold Fusin on Windows XP I receive the following error when trying to configure the webserver: Could not connect to any...
    3. Configuration error ?
      I have a web APS application that works fine at home, with IIS. In IIS, the application is an application, not a file folder. When I copy the...
    4. Configuration Error
      One possible answer can be found in http://support.microsoft.com/default.aspx?scid=kb%3ben-us%3b329065. Appears there may be other reasons as...
    5. Configuration Error, out of no where!
      Isn't it always the case that as soon as you post, you solve the problem? Apparently, adding an extra "space" to a blank line in my web.config...
  3. #2

    Default Re: ASP.NET Configuration Error

    One of two things: you don't have your root directory configured as an
    application in IIS, or you are trying to set up your authentication mode in
    a subdirectory, which is not allowed.

    --
    Chris Jackson
    Software Engineer
    Microsoft MVP - Windows Shell/UI
    Windows XP Associate Expert
    --
    More people read the newsgroups than read my email.
    Reply to the newsgroup for a faster response.
    (Control-G using Outlook Express)
    --

    "Pratap" <vedulapratap@coolgoose.com> wrote in message
    news:3b9701c3aa75$db15cb40$a601280a@phx.gbl...
    > I cannot configure web.config file properly on my system.
    > Pls help me getting following error:
    >
    > Server Error in '/' Application.
    > -----------------------------------------------------------
    > ---------------------
    >
    > Configuration Error
    > Description: An error occurred during the processing of a
    > configuration file required to service this request.
    > Please review the specific error details below and modify
    > your configuration file appropriately.
    >
    > Parser Error Message: It is an error to use a section
    > registered as allowDefinition='MachineToApplication'
    > beyond application level. This error can be caused by a
    > virtual directory not being configured as an application
    > in IIS.
    >
    > Source Error:
    >
    >
    > Line 7: <system.web>
    > Line 8:
    > Line 9: <authentication mode="Forms">
    > Line 10: <forms name="dtiindiaupload"
    > loginUrl="dtiupload/login.aspx" protection="All"
    > timeout="1" path="/" />
    > Line 11: </authentication>
    >
    >

    Chris Jackson 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