problem with .net and windows xp

  • Thread starter Thread starter timar
  • Start date Start date
T

timar

i have installed windows xp professional ,by mistake i did
not installed iis componet during installation of windows
xp. Then i installed microsoft .net visual studio . After
that i installed iis componet . It was stopped giving
error. Then i removed yahoo messenger from startup and
again installed iis . the default web site was working but
i was not able to open web application from .net. So
reintalled .net. It was working. Then i restared the
computer but this time the iis default web site was stopped
i again removed iis and reintalled it . it got started but
i am not able to open web application form .net. Iam using
internet thru broadband ANd i am not able to open sites.
Is the problem due to .net iis seting. i want .net to work
as well as able to connect to internet thru broadband
Thanks
Timar
 
If I understand correctly, the basic problem is that IIS will not serve web
apps.
If you installed IIS after installing .NET, then you need to install .NET
(asp.net) again!

This is a FAQ - google for it and you will see lots of other discussion of
this symptom.

-Dino
 
Well, .Net is installed but not registered correctly with IIS (as it was not installed when you installed VS).

You'd need something like:

[If you have VS.Net 2002]
C:\> cd %windir%\Microsoft.NET\Framework\v1.0.3705
C:\> aspnet_regiis.exe -i

[If you have VS.Net 2003]
C:\> cd %windir%\Microsoft.NET\Framework\v1.1.4322
C:\> aspnet_regiis.exe -i

This should take care of it.

-Matteo

--------------------
From: "Dino Chiesa [MSFT]" <[email protected]>
References: <[email protected]>
Subject: Re: problem with .net and windows xp
Date: Mon, 8 Sep 2003 12:11:43 -0400

If I understand correctly, the basic problem is that IIS will not serve web
apps.
If you installed IIS after installing .NET, then you need to install .NET
(asp.net) again!

This is a FAQ - google for it and you will see lots of other discussion of
this symptom.

-Dino


timar said:
i have installed windows xp professional ,by mistake i did
not installed iis componet during installation of windows
xp. Then i installed microsoft .net visual studio . After
that i installed iis componet . It was stopped giving
error. Then i removed yahoo messenger from startup and
again installed iis . the default web site was working but
i was not able to open web application from .net. So
reintalled .net. It was working. Then i restared the
computer but this time the iis default web site was stopped
i again removed iis and reintalled it . it got started but
i am not able to open web application form .net. Iam using
internet thru broadband ANd i am not able to open sites.
Is the problem due to .net iis seting. i want .net to work
as well as able to connect to internet thru broadband
Thanks
Timar


--

This posting is provided "AS IS" with no warranties, and confers no rights. Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

Note: For the benefit of the community-at-large, all responses to this message are best directed to the newsgroup/thread from which they originated.
 
I have a similar problem, and had hoped that
C:\> cd %windir%\Microsoft.NET\Framework\v1.1.4322
C:\> aspnet_regiis.exe -i
would do the trick, but the problem persists. I am
running VS.NET 2003 on XP Pro and have already been
through the process of uninstalling IIS and VS.NET to
resolve an earlier issue. I've had no trouble with my
internet connection (also cable), but when I try to open
a new ASP.NET Web Application, I get the following
Microsoft Development Environment prompt:

The Web server reported the following error when
attempting to create or open the Web project located at
the following
URL: 'http://localhost/WebApplication1'. 'HTTP/1.1 500
Internal Server Error'.

The error message is so nondescript that I've had a
miserable time trying to track down any sort of
resolution, and I'd really prefer to avoid having to
uninstall and reinstall everything if at all possible.
The default web site appears to be running fine and all
my efforts along the 'permissions' lines have been
fruitless. Any suggestions would be greatly appreciated.
-----Original Message-----
Well, .Net is installed but not registered correctly
with IIS (as it was not installed when you installed VS).
You'd need something like:

[If you have VS.Net 2002]
C:\> cd %windir%\Microsoft.NET\Framework\v1.0.3705
C:\> aspnet_regiis.exe -i

[If you have VS.Net 2003]
C:\> cd %windir%\Microsoft.NET\Framework\v1.1.4322
C:\> aspnet_regiis.exe -i

This should take care of it.

-Matteo

--------------------
From: "Dino Chiesa [MSFT]" <[email protected]>
References: <[email protected]>
Subject: Re: problem with .net and windows xp
Date: Mon, 8 Sep 2003 12:11:43 -0400

If I understand correctly, the basic problem is that IIS will not serve web
apps.
If you installed IIS after installing .NET, then you need to install .NET
(asp.net) again!

This is a FAQ - google for it and you will see lots of other discussion of
this symptom.

-Dino


timar said:
i have installed windows xp professional ,by mistake i did
not installed iis componet during installation of windows
xp. Then i installed microsoft .net visual studio . After
that i installed iis componet . It was stopped giving
error. Then i removed yahoo messenger from startup and
again installed iis . the default web site was working but
i was not able to open web application from .net. So
reintalled .net. It was working. Then i restared the
computer but this time the iis default web site was stopped
i again removed iis and reintalled it . it got started but
i am not able to open web application form .net. Iam using
internet thru broadband ANd i am not able to open sites.
Is the problem due to .net iis seting. i want .net to work
as well as able to connect to internet thru broadband
Thanks
Timar
confers no rights. Use of included script samples are
subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm

Note: For the benefit of the community-at-large, all
responses to this message are best directed to the
newsgroup/thread from which they originated.
 
Mike

I was having the exact same trouble as you - .NET 2003 on XP Pro -
symptoms identical. I tried Matteos advice with running the
aspnet_regiis.exe -i and the results were the same as you got. So I did
the following:

Open the Services applet from Administrative Tools
Stop the IIS Admin service (this will force stop Web Publishing also)
Run the aspnet_regiis.exe -i command while the IIS service is stopped
When it has finished executing, start the IIS Admin service again
Start the Web Publishing service again
Now you should have no problem with this.

Hope this helps
Keith.
 
Back
Top