web sever problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • makoyat
    New Member
    • Feb 2007
    • 5

    web sever problem

    Hi,i want to start my projent using ASP.Net, but when i open, it keeps on saying: "The Web Server repoted the following error when trying to create or open the web project located at the following URL:'http://localhost/webservice1'.'H TTP/101 500 server Error'." the web server is running, i tried to reinstal it again and re-install the Visual studio.NET again.but still the same.
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Originally posted by makoyat
    Hi,i want to start my projent using ASP.Net, but when i open, it keeps on saying: "The Web Server repoted the following error when trying to create or open the web project located at the following URL:'http://localhost/webservice1'.'H TTP/101 500 server Error'." the web server is running, i tried to reinstal it again and re-install the Visual studio.NET again.but still the same.
    I'd check to see what version of ASP.NET the server is running and make sure it matches the ASP.NET framework version that Visual Studio is expecting the server to be running.

    I ran into the same problem a while back where I did a fresh install of windows, IIS, and Visual Studio.

    What I found was that when Windows did all of its updates it installed the .NET Framework2.0 but didn't update the ASPNET user.

    What I'd suggest is the following:
    on command line go to %windowsDirecto ry%\Microsoft.N ET\Framework\v2 .0.50727
    and type: aspnet_regiis -i

    This will reinstall the .Net Framework 2.0 and recreate the ASPNET user to match it.

    After you do this I would recommend restarting the computer just to be on the safe side.

    Hopefully this will fix your problems.

    -Frinny

    Comment

    • makoyat
      New Member
      • Feb 2007
      • 5

      #3
      Originally posted by Frinavale
      I'd check to see what version of ASP.NET the server is running and make sure it matches the ASP.NET framework version that Visual Studio is expecting the server to be running.

      I ran into the same problem a while back where I did a fresh install of windows, IIS, and Visual Studio.

      What I found was that when Windows did all of its updates it installed the .NET Framework2.0 but didn't update the ASPNET user.

      What I'd suggest is the following:
      on command line go to %windowsDirecto ry%\Microsoft.N ET\Framework\v2 .0.50727
      and type: aspnet_regiis -i

      This will reinstall the .Net Framework 2.0 and recreate the ASPNET user to match it.

      After you do this I would recommend restarting the computer just to be on the safe side.

      Hopefully this will fix your problems.

      -Frinny

      thanx Frinny, but when i did that it says: eroor bla bla bla 000000 application fail,'cannot read the memory'.

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        Originally posted by makoyat
        thanx Frinny, but when i did that it says: eroor bla bla bla 000000 application fail,'cannot read the memory'.
        Hmmm, that sounds interesting.

        Try downloading the .NET Framework again.
        After you install it check if your still getting the Internal 500 error.
        If you are try running the aspnet_regiis utility again.

        I've never encountered this error before.

        -Frinny

        Comment

        • tsgomez
          New Member
          • Feb 2007
          • 12

          #5
          Originally posted by Frinavale
          Hmmm, that sounds interesting.

          Try downloading the .NET Framework again.
          After you install it check if your still getting the Internal 500 error.
          If you are try running the aspnet_regiis utility again.

          I've never encountered this error before.

          -Frinny
          I ran into this before. Make sure you have IIS installed before you install .NET. For some reason, when you do it the other way, IIS won't recognize aspnet, even after running the _regis utility.

          Comment

          • Frinavale
            Recognized Expert Expert
            • Oct 2006
            • 9749

            #6
            Originally posted by tsgomez
            I ran into this before. Make sure you have IIS installed before you install .NET. For some reason, when you do it the other way, IIS won't recognize aspnet, even after running the _regis utility.
            Thanks for the tip!
            I'll keep that in mind next time I'm installing.

            -Frinny

            Comment

            Working...