Showing posts with label running. Show all posts
Showing posts with label running. Show all posts

Saturday, March 31, 2012

Web server cluster related problem

We are running an ASP.NET application on a cluster of 3 web-servers, using
the Network Load Balancing feature of Application Center. We have
synchronized the machineKey in machine.config on the 3 web-servers, so we
can utilize a random algorithm for server selection for requests. The
application does not use either session state or application state.

We recently upgraded to .NET Framework 1.1 (including the hotfix for the
"doPostback bug"), and after that we experience a mysterious problem on our
production servers:

Let's call the servers A, B and C. Let's say you select a page (a GET
request), and it is served by either server A or B. The page contains a
form, so when you post it back and server C gets to handle the request, the
response appears to be like the original GET request. The page does not seem
to process the page as a POST request.

The same thing happens if the original page comes from server C, and the
postback is processed by server A or B.

Obviously, it seems that there is something wrong on server C.

We have checked everything we can think of. Among them the .NET Framework
installation, machine.config, and that the web application files are the
same.

Since this is a production environment, we are not allowed to use debug
tools. However, we have enabled tracing. When this problem occurs, we see
that
1) The form collection contains the posted data
2) That LoadViewState and ProcessPostData has been executed, both of which
are not executed on a GET request.
3) SessionId is unchanged

But even so, when the request is processed by the called page, it is
processed as a GET request.

Now I don't know where to keep on looking. Does it ring a bell for anyone?

Thanks,
HelgeAn ASP.NET webform detects if a request is a postback by comparing the
hash value in the viewstate of a page. This hash value is generated
by using a validation key. In the default setting, ASP.NET will
automatically generate an random validation key for each web server.
Thus, sending a POST request to a webform on a different web server
will not be recognized as a POST request because the validation key is
different.

Try changing the machine.config or web.config on each web server to
use a static validation key.

For example,

<machineKey validationKey="Some static key" validation="SHA1"/
Tommy,

"Helge Kalnes" <helge.kalnes@.electricfarm.no> wrote in message news:<ejjxuus#DHA.2072@.TK2MSFTNGP11.phx.gbl>...
> We are running an ASP.NET application on a cluster of 3 web-servers, using
> the Network Load Balancing feature of Application Center. We have
> synchronized the machineKey in machine.config on the 3 web-servers, so we
> can utilize a random algorithm for server selection for requests. The
> application does not use either session state or application state.
> We recently upgraded to .NET Framework 1.1 (including the hotfix for the
> "doPostback bug"), and after that we experience a mysterious problem on our
> production servers:
> Let's call the servers A, B and C. Let's say you select a page (a GET
> request), and it is served by either server A or B. The page contains a
> form, so when you post it back and server C gets to handle the request, the
> response appears to be like the original GET request. The page does not seem
> to process the page as a POST request.
> The same thing happens if the original page comes from server C, and the
> postback is processed by server A or B.
> Obviously, it seems that there is something wrong on server C.
> We have checked everything we can think of. Among them the .NET Framework
> installation, machine.config, and that the web application files are the
> same.
> Since this is a production environment, we are not allowed to use debug
> tools. However, we have enabled tracing. When this problem occurs, we see
> that
> 1) The form collection contains the posted data
> 2) That LoadViewState and ProcessPostData has been executed, both of which
> are not executed on a GET request.
> 3) SessionId is unchanged
> But even so, when the request is processed by the called page, it is
> processed as a GET request.
> Now I don't know where to keep on looking. Does it ring a bell for anyone?
> Thanks,
> Helge
Thanx, but as you can see in my original message we have already done that.
If the machineKeys hadn't been synchronized we would have got an exception.
And in addition when switching between servers A and B there is no problem.
We have of course double checked the machineKeys several times.

I found a KB article
(http://support.microsoft.com/defaul...b;EN-US;323744), but the
problem described here is related ASP.NET 1.0 and is supposed to be fixed in
1.1. I am not able to reproduce a problem as described in this article, but
it is of course possible that the problem is related to this.

:) Helge

"Tommy" <Websoftwares@.Hotmail.com> wrote in message
news:a85edaaf.0402241033.7fa789b8@.posting.google.c om...
> An ASP.NET webform detects if a request is a postback by comparing the
> hash value in the viewstate of a page. This hash value is generated
> by using a validation key. In the default setting, ASP.NET will
> automatically generate an random validation key for each web server.
> Thus, sending a POST request to a webform on a different web server
> will not be recognized as a POST request because the validation key is
> different.
> Try changing the machine.config or web.config on each web server to
> use a static validation key.
> For example,
> <machineKey validationKey="Some static key" validation="SHA1"/>
> Tommy,
> "Helge Kalnes" <helge.kalnes@.electricfarm.no> wrote in message
news:<ejjxuus#DHA.2072@.TK2MSFTNGP11.phx.gbl>...
> > We are running an ASP.NET application on a cluster of 3 web-servers,
using
> > the Network Load Balancing feature of Application Center. We have
> > synchronized the machineKey in machine.config on the 3 web-servers, so
we
> > can utilize a random algorithm for server selection for requests. The
> > application does not use either session state or application state.
> > We recently upgraded to .NET Framework 1.1 (including the hotfix for the
> > "doPostback bug"), and after that we experience a mysterious problem on
our
> > production servers:
> > Let's call the servers A, B and C. Let's say you select a page (a GET
> > request), and it is served by either server A or B. The page contains a
> > form, so when you post it back and server C gets to handle the request,
the
> > response appears to be like the original GET request. The page does not
seem
> > to process the page as a POST request.
> > The same thing happens if the original page comes from server C, and the
> > postback is processed by server A or B.
> > Obviously, it seems that there is something wrong on server C.
> > We have checked everything we can think of. Among them the .NET
Framework
> > installation, machine.config, and that the web application files are the
> > same.
> > Since this is a production environment, we are not allowed to use debug
> > tools. However, we have enabled tracing. When this problem occurs, we
see
> > that
> > 1) The form collection contains the posted data
> > 2) That LoadViewState and ProcessPostData has been executed, both of
which
> > are not executed on a GET request.
> > 3) SessionId is unchanged
> > But even so, when the request is processed by the called page, it is
> > processed as a GET request.
> > Now I don't know where to keep on looking. Does it ring a bell for
anyone?
> > Thanks,
> > Helge

Web Server Error

Hi
Just installed .net and when I open up a project. I get a message which says that "The specified sever is not running .net version 1.1. I wont be able to compile the projects". I checked add/remove programms , I have 1.1 framework installed. Whats Iam missing here.
Thankstry running aspnet_regiis.exe from the .NET framework's folder (under c:\winnt\ i believe)
it resides at:
%systemroot%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe

To map a specific application to ASP.NET v1.1:
%systemroot%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe –s W3SVC/1/ROOT/<applicationdir
Here's a link for more information:
http://www.asp.net/faq/SideBySide.aspx#2

Ciao
Chadwick

web server is not running ASP.net version 1.1

I just installed Visual Studio.Net 2003 and that is supposed to add that
asp.net 1.1 extension. I got an error message while opening ASP.NET
project.Error is :

"visual studio.net has detected that the specified web server is not running
ASP.net version 1.1. You will be unable to run asp.net web applications or
services."

I found a solution for this in 'Missing asp.net 1.1 in web extensions'
questioned by David as
----
1) Open Add/Remove program and uninstall dot net version 1.0.

2) If dot net version 1.0 is not in the list of installed programs, find the
following folder and delete it if found
C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705

3) run the executable with the following option from command window:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.xxxx\aspne t_regiis.exe -i

Once completed, the problem will no longer occur.
---
I did this.But even i am still getting the same problem.

Can any one tell me how to overcome this problem.One thing I am using 'Win
2000 Prof'

Thanks,
VenkatTry running this tool and use it to set the ASP.NET version?

http://www.denisbauer.com/NETTools/...onSwitcher.aspx

"Venkat" <Venkat@.discussions.microsoft.com> wrote in message
news:6B0474ED-0BC7-44E3-B737-814DF85975A4@.microsoft.com...
>I just installed Visual Studio.Net 2003 and that is supposed to add that
> asp.net 1.1 extension. I got an error message while opening ASP.NET
> project.Error is :
> "visual studio.net has detected that the specified web server is not
> running
> ASP.net version 1.1. You will be unable to run asp.net web applications or
> services."
> I found a solution for this in 'Missing asp.net 1.1 in web extensions'
> questioned by David as
> ----
> 1) Open Add/Remove program and uninstall dot net version 1.0.
> 2) If dot net version 1.0 is not in the list of installed programs, find
> the
> following folder and delete it if found
> C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705
> 3) run the executable with the following option from command window:
> C:\WINDOWS\Microsoft.NET\Framework\v1.1.xxxx\aspne t_regiis.exe -i
> Once completed, the problem will no longer occur.
> ---
> I did this.But even i am still getting the same problem.
> Can any one tell me how to overcome this problem.One thing I am using 'Win
> 2000 Prof'
> Thanks,
> Venkat

web server is not running ASP.net version 1.1

I just installed Visual Studio.Net 2003 and that is supposed to add that
asp.net 1.1 extension. I got an error message while opening ASP.NET
project.Error is :
"visual studio.net has detected that the specified web server is not running
ASP.net version 1.1. You will be unable to run asp.net web applications or
services."
I found a solution for this in 'Missing asp.net 1.1 in web extensions'
questioned by David as
--
1) Open Add/Remove program and uninstall dot net version 1.0.
2) If dot net version 1.0 is not in the list of installed programs, find the
following folder and delete it if found
C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705
3) run the executable with the following option from command window:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.xxxx\aspnet_regiis.exe -i
Once completed, the problem will no longer occur.
--
I did this.But even i am still getting the same problem.
Can any one tell me how to overcome this problem.One thing I am using 'Win
2000 Prof'
Thanks,
VenkatTry running this tool and use it to set the ASP.NET version?
http://www.denisbauer.com/NETTools/...onSwitcher.aspx
"Venkat" <Venkat@.discussions.microsoft.com> wrote in message
news:6B0474ED-0BC7-44E3-B737-814DF85975A4@.microsoft.com...
>I just installed Visual Studio.Net 2003 and that is supposed to add that
> asp.net 1.1 extension. I got an error message while opening ASP.NET
> project.Error is :
> "visual studio.net has detected that the specified web server is not
> running
> ASP.net version 1.1. You will be unable to run asp.net web applications or
> services."
> I found a solution for this in 'Missing asp.net 1.1 in web extensions'
> questioned by David as
> --
> 1) Open Add/Remove program and uninstall dot net version 1.0.
> 2) If dot net version 1.0 is not in the list of installed programs, find
> the
> following folder and delete it if found
> C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705
> 3) run the executable with the following option from command window:
> C:\WINDOWS\Microsoft.NET\Framework\v1.1.xxxx\aspnet_regiis.exe -i
> Once completed, the problem will no longer occur.
> --
> I did this.But even i am still getting the same problem.
> Can any one tell me how to overcome this problem.One thing I am using 'Win
> 2000 Prof'
> Thanks,
> Venkat
>

Web server is not running ASP.net version 1.1

Hi!
I have installed Visual studio.net on Windows XP 2002, SP 2. IIS is working properly. But when i press Asp.net web application from the new project menue the following message appears on the window:
visual studio.net has detected that the specified web server is not running ASP.Net version 1.1. You will be unable to run Asp.net web application and services.

I am new user of .Net. Can anybody tell me that why am i facing the above message?
Regards,
Mizi.

Try to register asp.net with IIS via the cmd line tool aspnet_iis -i. The cmd should be in the C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ folder.
Small correction to the above post.. The executable is named aspnet_regiis.exe

web server is not running ASP.NET version 1.1

Hi,
i have remove IIS and add again to solve a problem. Visual Studio is running
on my computer. but now it give me this problem.

" Visual Studio .Net has detected that the sepicified Web server is not
running ASP.NET version 1.1. You will be unable to run ASP.Net Web
applications or services"

how can i solve this.
thankstry this
start - run
c:\windows\microsoft.net\framework\v1.1.4.322\aspn et_regiis.exe -i

"Hunsal" <huseyin_unsal@.yahoo.com> wrote in message
news:uJeRnRpLEHA.1484@.tk2msftngp13.phx.gbl...
> Hi,
> i have remove IIS and add again to solve a problem. Visual Studio is
running
> on my computer. but now it give me this problem.
> " Visual Studio .Net has detected that the sepicified Web server is not
> running ASP.NET version 1.1. You will be unable to run ASP.Net Web
> applications or services"
> how can i solve this.
> thanks
thanks, it works

"Meelis Lilbok" <meelis.lilbok@.deltmar.ee> wrote in message
news:%23vDR4UpLEHA.2976@.TK2MSFTNGP10.phx.gbl...
> try this
> start - run
> c:\windows\microsoft.net\framework\v1.1.4.322\aspn et_regiis.exe -i
>
>
> "Hunsal" <huseyin_unsal@.yahoo.com> wrote in message
> news:uJeRnRpLEHA.1484@.tk2msftngp13.phx.gbl...
>> Hi,
>> i have remove IIS and add again to solve a problem. Visual Studio is
> running
>> on my computer. but now it give me this problem.
>>
>> " Visual Studio .Net has detected that the sepicified Web server is not
>> running ASP.NET version 1.1. You will be unable to run ASP.Net Web
>> applications or services"
>>
>> how can i solve this.
>> thanks
>>
>>

web server is not running ASP.NET version 1.1

I tried to open my web project today and I get the following error :

'VS.NET has detected that the web server is not running ASP.NET version
1.1. You will be unable to run ASP.NET web applications or services.'

I have been running VS.NET and working on my project in it for over a
month. What is going on with this?

Any help would be really appreciated!

Cheers,

Mike

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!I think you use Visual studio 2003 to develop under framework 1.0

If you can't upgrade the web server with dotnet 1.1 you have to use Visual
studio 2002 (I think)

Regards

LJ
"Mike P" <mrp@.telcoelectronics.co.uk> a crit dans le message de news:
eXJD#ZqAEHA.2308@.tk2msftngp13.phx.gbl...
> I tried to open my web project today and I get the following error :
> 'VS.NET has detected that the web server is not running ASP.NET version
> 1.1. You will be unable to run ASP.NET web applications or services.'
> I have been running VS.NET and working on my project in it for over a
> month. What is going on with this?
>
> Any help would be really appreciated!
>
> Cheers,
> Mike
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
Check the ISAPI mappings for your web site. In IIS Admin, right-click the
web site and select "Properties" from the context menu. You can find the
ISPI mappings under the "Home Directory" tab by clicking the "Configuration"
button and going to the "Mappings" tab.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Mike P" <mrp@.telcoelectronics.co.uk> wrote in message
news:eXJD#ZqAEHA.2308@.tk2msftngp13.phx.gbl...
> I tried to open my web project today and I get the following error :
> 'VS.NET has detected that the web server is not running ASP.NET version
> 1.1. You will be unable to run ASP.NET web applications or services.'
> I have been running VS.NET and working on my project in it for over a
> month. What is going on with this?
>
> Any help would be really appreciated!
>
> Cheers,
> Mike
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
I got the same message, i checked everything in IIS but did not find the
error, but than I realized thet I had installed Apache Webserver
which caused this Error. Maybe you did the same.

Ci@.o Jens

"Mike P" <mrp@.telcoelectronics.co.uk> schrieb im Newsbeitrag
news:eXJD%23ZqAEHA.2308@.tk2msftngp13.phx.gbl...
> I tried to open my web project today and I get the following error :
> 'VS.NET has detected that the web server is not running ASP.NET version
> 1.1. You will be unable to run ASP.NET web applications or services.'
> I have been running VS.NET and working on my project in it for over a
> month. What is going on with this?
>
> Any help would be really appreciated!
>
> Cheers,
> Mike
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!

Web server is not running ASP.NET version 1.1?

Hi,

I am running VS.Net 2003 with IIS 5.1 on a Win2000 Server (sp4) and I get this message when I try to open a project.

"Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1. You will be unable to run ASP.NET Web applications or services."

I've tried to go through some of the prior threads to find the solution (and have tried running aspnet_regiis.exe -i in the correct directory) but it doesn't seem to work.

Most Microsoft fixes for this seem to be based on IIS 6??

Any help would be greatly appreciated.

Many thanks
VaruniWhat is the output when you try to run "aspnet_regiis /lv" and "aspnet_regiis /lk". Alsothis article might also prove useful.

-Kashif
Kashif,
I am facing the same problem with a different scenario! In our development server, version 1 and 1.1 together worked perfectly until yesterday when I restarted my machine! I am not being able to open ASP.NET 1.1 apps with VS.NET 2003 now. VS.NET claims that the web server is running asp.net 1.0 only (or something like this). I re-scriptmapped the 1.1 app with no luck. Following is the retured error:

"Visual Studio .NET has detected that the web server is running ASP.NET version 1.0. The Web application you are creating or openning can be configured to be compliant with ASP.NET 1.0"

I un-installed and installed the .NET 1.1 Framewok, negative :(

I don't know what else to do! I ran the aspnet_regiis with both params and here what I got(which is absoultely true):

"C:\WINNT\Microsoft.NET\Framework\v1.1.4322>aspnet_regiis /lv
1.0.3705.288 Valid (Root) C:\WINNT\Microsoft.NET\Framework\v1.0.3705\aspne
t_isapi.dll
1.1.4322.0 Valid C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspne
t_isapi.dll"

C:\WINNT\Microsoft.NET\Framework\v1.1.4322>aspnet_regiis /lk
W3SVC/ 1.0.3705.288
W3SVC/1/Root/SHUAACapital.Intranet.WebUI/ 1.1.4322.0

Any hints will be appreciated. Thank you.

Cheers,
Kashif,
Never mind. I could solve the problem by reegistering the aspnet_isapi.dll.

regsvr32 c:\winnt\microsoft.net\framework\v1.1.4322\aspnet_isapi.dll

Phew :)

Cheers,
Hi

Thanks for the response. After running "aspnet_regiis/lv" I get

1.1.4322.0 Valid (Root) C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspne
t_isapi.dll

On running "aspnet_regiis/lk" I get

W3SVC/ 1.1.4322.0

Am I having this issue because I havn't upgraded to IIS 6 (Win2003)??

Many thanks
Varuni
Hi Kashif,

Thanks so much...it's fixed and works like a dream. Looks like it was the security policy thing on the link you sent.

Thanks again
Varuni
Thank you so much alzogbi!!

Running the regsvr32 worked perfectly.

Dawn

p.s. you'd think the error message would be a bit clearer. I had no idea how to change my "web server" to run v1.1 vs Visual Studio running v1.1.

Web Server is not running ASP.NET version 1.1?

I've recently installed VS.Net 2003 on a desktop running Windows XP. When
I try to create a new ASP.Net Web Application I get an error message.

'Visual Studio.Net has detected that the specified Web Server is not running
ASP.NET version 1.1. You will be unable to run ASP.Net Web Applications or
Services'

..NET Framework 1.1 is installed. IIS 5.1 is installed a seems to be running
fine.

Any ideas?

TIA ,

LionelGo in to your IIS and look at the properties. In the tab Document make sure
you have default.aspx or any name with .aspx extention. If not then you need
to uninstall framework and reinstall it.

"Lionel" <lslade@.glam.ac.uk> wrote in message
news:u9uGWsrrDHA.2492@.TK2MSFTNGP12.phx.gbl...
> I've recently installed VS.Net 2003 on a desktop running Windows XP.
When
> I try to create a new ASP.Net Web Application I get an error message.
> 'Visual Studio.Net has detected that the specified Web Server is not
running
> ASP.NET version 1.1. You will be unable to run ASP.Net Web Applications
or
> Services'
> .NET Framework 1.1 is installed. IIS 5.1 is installed a seems to be
running
> fine.
> Any ideas?
> TIA ,
> Lionel
Lionel,

If the you do not have default.aspx as Ruslan suggests then you should try
running the command aspnet_regiis -i from the visual studio.net command
prompt (not the regular command prompt) before going through a full
re-install. This will attempt to re-register all .net association with IIS.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche

"Ruslan Shlain" <rshlain@.hotmail.com> wrote in message
news:%23AnQTzrrDHA.4060@.TK2MSFTNGP11.phx.gbl...
> Go in to your IIS and look at the properties. In the tab Document make
sure
> you have default.aspx or any name with .aspx extention. If not then you
need
> to uninstall framework and reinstall it.
>
> "Lionel" <lslade@.glam.ac.uk> wrote in message
> news:u9uGWsrrDHA.2492@.TK2MSFTNGP12.phx.gbl...
> > I've recently installed VS.Net 2003 on a desktop running Windows XP.
> When
> > I try to create a new ASP.Net Web Application I get an error message.
> > 'Visual Studio.Net has detected that the specified Web Server is not
> running
> > ASP.NET version 1.1. You will be unable to run ASP.Net Web Applications
> or
> > Services'
> > .NET Framework 1.1 is installed. IIS 5.1 is installed a seems to be
> running
> > fine.
> > Any ideas?
> > TIA ,
> > Lionel
Try the following URL. It may help.
http://support.microsoft.com/default.aspx?kbid=306005

>--Original Message--
>I've recently installed VS.Net 2003 on a desktop running
Windows XP. When
>I try to create a new ASP.Net Web Application I get an
error message.
>'Visual Studio.Net has detected that the specified Web
Server is not running
>ASP.NET version 1.1. You will be unable to run ASP.Net
Web Applications or
>Services'
>..NET Framework 1.1 is installed. IIS 5.1 is installed
a seems to be running
>fine.
>Any ideas?
>TIA ,
>Lionel
>
>.

Web Server Not Running

I am 100% new to this and have had no schooling...

I am trying to open the ASP.Net Web Application in Visual Studio .NET and when I do I am getting the error message that states "Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1. You will be unable to run ASP.NET Web applications or services.

What does that mean & how do I fix it. I would like to attempt to program some websites using ASP.NET, but can't get past this point...

Thank you in advance for any assistance you may provide

Steven M. BrittoSteven M. Britton wrote:

> I am 100% new to this and have had no schooling...
> I am trying to open the ASP.Net Web Application in Visual Studio .NET and when I do I am getting the error message that states "Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1. You will be unable to run ASP.NET Web applications or services."
> What does that mean & how do I fix it. I would like to attempt to program some websites using ASP.NET, but can't get past this point...
> Thank you in advance for any assistance you may provide.
> Steven M. Britton

Do you have IIS5 or above, and did you install the .NET framework on the
web server (better yet, the Web Applications options)? If not, VS.NET
is saying you can't run ASP.NET.

The latter problem should be an installation option in your VS.NET
setup. Go into the custom setup options (in the installer) and make
sure the web applications is checked to be installed.

--
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET

Web server not running ASP.NET v1.1

I have just moved a project to my laptop and get the message "Visual Studio
.NET has detected that the specified Web server is not running ASP.NET v1.1
.
You will be unable to run ASP.NET Web applications or services"
Presumably there is a d/l on MSDN to rectify this, but I can't find it. Does
anyone know the URL?
Many thanks.http://support.microsoft.com/defaul...kb;en-us;817267
or
http://support.microsoft.com/defaul...kb;en-us;825792
let us know if these don't do the trick
Jason Brown
Microsoft GTSC, IIS
This posting is provided "AS IS" with no warranties, and confers no
rights.
"Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>I have just moved a project to my laptop and get the message "Visual Studio
>.NET has detected that the specified Web server is not running ASP.NET
>v1.1. You will be unable to run ASP.NET Web applications or services"
> Presumably there is a d/l on MSDN to rectify this, but I can't find it.
> Does anyone know the URL?
> Many thanks.
>
Andrew,
see if
http://support.microsoft.com/defaul...kb;en-us;817267
or
http://www.support.microsoft.com/?s...6351&sid=global
help you.
Juan T. Llibre
===========
"Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>I have just moved a project to my laptop and get the message "Visual Studio
>.NET has detected that the specified Web server is not running ASP.NET
>v1.1. You will be unable to run ASP.NET Web applications or services"
> Presumably there is a d/l on MSDN to rectify this, but I can't find it.
> Does anyone know the URL?
> Many thanks.
>
Thanks. Using 817267 I looked at IIS and there is no "Web Service
Extensions" tab. What do I need to install?
Thanks,
Andrew
"Jason Brown [MSFT]" <i-brjaso@.online.microsoft.com> wrote in message
news:ecNOTBm3EHA.2572@.TK2MSFTNGP11.phx.gbl...
> http://support.microsoft.com/defaul...kb;en-us;817267
> or
> http://support.microsoft.com/defaul...kb;en-us;825792
>
> let us know if these don't do the trick
> --
> Jason Brown
> Microsoft GTSC, IIS
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>
Thanks. Using 817267 I looked at IIS and there is no "Web Service
Extensions" tab. What do I need to install?
Thanks,
Andrew
"Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
news:uWOK1In3EHA.4064@.tk2msftngp13.phx.gbl...
> Andrew,
> see if
> http://support.microsoft.com/defaul...kb;en-us;817267
> or
> [url]http://www.support.microsoft.com/?scid=kb;en-us;886389&spid=6351&sid=global[/url
]
> help you.
>
>
> Juan T. Llibre
> ===========
> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>
re:
> Thanks. Using 817267 I looked at IIS and there is no "Web Service
> Extensions" tab. What do I need to install?
Hi, Andrew.
First, let's find out what you are actually running.
Please copy the following into a file named "version.aspx",
and place the file in your wwwroot directory.
version.aspx:
--
<%@. Page Language="VB" %>
<html>
<head>
</head>
<body>
<%
dim var as string
var=Request.ServerVariables("SERVER_SOFTWARE")
Response.Write("SERVER_SOFTWARE = " & var)
Response.Write("<P>")
Response.Write(System.Environment.Version.ToString())
%>
</body>
</html>
If you placed it in your wwwroot directory,
please run the file by clicking on this link :
http://localhost/version.aspx
Post here the version information which the page writes.
That will tell us what version of ASP.NET you're running.
If you're running 1.0,
there's no "Web Extensions" folder in the IIS Manager.
If you're running 1.1,
there is a "Web Extensions" folder in the IIS Manager.
Juan T. Llibre
===========
"Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
news:uV$FXGq3EHA.3368@.TK2MSFTNGP10.phx.gbl...
> Thanks. Using 817267 I looked at IIS and there is no "Web Service
> Extensions" tab. What do I need to install?
> Thanks,
> Andrew
> "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> news:uWOK1In3EHA.4064@.tk2msftngp13.phx.gbl...
>
Hmm, having a Web Service Extensions node (not tab) in the IIS Manager is
dependent on the OS, not the Framework version. In Win 2003, you have that
because it's IIS 6. In Win XP or Win 2000, its 5.1 or 5.0 respectively, and
they don't have a way to manage ISAPI filters like that.
Here's what you should try:
Go to the Framework folder in the Windows\Microsoft .NET folder.
In the 1.1 version folder, there is a file aspnet_regiis.exe. Just execute
that file. It will re-register ASP.NET 1.1 with IIS.
That might solve the problem.
--
Sven.
"Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
news:OqC9JNr3EHA.1596@.tk2msftngp13.phx.gbl...
> re:
> Hi, Andrew.
> First, let's find out what you are actually running.
> Please copy the following into a file named "version.aspx",
> and place the file in your wwwroot directory.
> version.aspx:
> --
> <%@. Page Language="VB" %>
> <html>
> <head>
> </head>
> <body>
> <%
> dim var as string
> var=Request.ServerVariables("SERVER_SOFTWARE")
> Response.Write("SERVER_SOFTWARE = " & var)
> Response.Write("<P>")
> Response.Write(System.Environment.Version.ToString())
> %>
> </body>
> </html>
> --
> If you placed it in your wwwroot directory,
> please run the file by clicking on this link :
> http://localhost/version.aspx
> Post here the version information which the page writes.
> That will tell us what version of ASP.NET you're running.
> If you're running 1.0,
> there's no "Web Extensions" folder in the IIS Manager.
> If you're running 1.1,
> there is a "Web Extensions" folder in the IIS Manager.
>
>
> Juan T. Llibre
> ===========
> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> news:uV$FXGq3EHA.3368@.TK2MSFTNGP10.phx.gbl...
http://www.support.microsoft.com/?s...6351&sid=global
it.
>
re:
> Hmm, having a Web Service Extensions node (not tab) in the
> IIS Manager is dependent on the OS, not the Framework version.
Aargh! You're right. I should go get some sleep.
re:
> In the 1.1 version folder, there is a file aspnet_regiis.exe.
> Just execute that file. It will re-register ASP.NET 1.1 with IIS
You need the -i parameter if you're running aspnet_regiis.
In a cmd, window, run :
"%windir%\Microsoft.NET\Framework\v.1.1.4322\aspnet_regiis.exe" -i
Just running aspnet_regiis will produce the usage instructions.
Juan T. Llibre
===========
"SA" <informatica@.freemail.nl> wrote in message
news:uPihbRt3EHA.3452@.TK2MSFTNGP14.phx.gbl...
> Hmm, having a Web Service Extensions node (not tab) in the IIS Manager is
> dependent on the OS, not the Framework version. In Win 2003, you have that
> because it's IIS 6. In Win XP or Win 2000, its 5.1 or 5.0 respectively,
> and
> they don't have a way to manage ISAPI filters like that.
> Here's what you should try:
> Go to the Framework folder in the Windows\Microsoft .NET folder.
> In the 1.1 version folder, there is a file aspnet_regiis.exe. Just execute
> that file. It will re-register ASP.NET 1.1 with IIS.
> That might solve the problem.
> --
> --
> Sven.
> "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> news:OqC9JNr3EHA.1596@.tk2msftngp13.phx.gbl...
> [url]http://www.support.microsoft.com/?scid=kb;en-us;886389&spid=6351&sid=global[/url
]
> it.
>
Lordy be! I think that worked. Thanks to you, and Juan and Jason. Where do
you discover all this stuff?
- Andrew
"SA" <informatica@.freemail.nl> wrote in message
news:uPihbRt3EHA.3452@.TK2MSFTNGP14.phx.gbl...
> Hmm, having a Web Service Extensions node (not tab) in the IIS Manager is
> dependent on the OS, not the Framework version. In Win 2003, you have that
> because it's IIS 6. In Win XP or Win 2000, its 5.1 or 5.0 respectively,
> and
> they don't have a way to manage ISAPI filters like that.
> Here's what you should try:
> Go to the Framework folder in the Windows\Microsoft .NET folder.
> In the 1.1 version folder, there is a file aspnet_regiis.exe. Just execute
> that file. It will re-register ASP.NET 1.1 with IIS.
> That might solve the problem.
> --
> --
> Sven.
> "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> news:OqC9JNr3EHA.1596@.tk2msftngp13.phx.gbl...
> [url]http://www.support.microsoft.com/?scid=kb;en-us;886389&spid=6351&sid=global[/url
]
> it.
>
Andrew:
When you hit your head hard enough often enough, it'll become clear to you
too...
--
Sven.
"Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
news:eiAC25u3EHA.1192@.tk2msftngp13.phx.gbl...
> Lordy be! I think that worked. Thanks to you, and Juan and Jason. Where do
> you discover all this stuff?
> - Andrew
> "SA" <informatica@.freemail.nl> wrote in message
> news:uPihbRt3EHA.3452@.TK2MSFTNGP14.phx.gbl...
is
that
execute
http://www.support.microsoft.com/?s...6351&sid=global
running
>

Web server not running ASP.NET v1.1

I have just moved a project to my laptop and get the message "Visual Studio
..NET has detected that the specified Web server is not running ASP.NET v1.1.
You will be unable to run ASP.NET Web applications or services"

Presumably there is a d/l on MSDN to rectify this, but I can't find it. Does
anyone know the URL?

Many thanks.http://support.microsoft.com/defaul...kb;en-us;817267
or
http://support.microsoft.com/defaul...kb;en-us;825792

let us know if these don't do the trick

--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no
rights.
"Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>I have just moved a project to my laptop and get the message "Visual Studio
>.NET has detected that the specified Web server is not running ASP.NET
>v1.1. You will be unable to run ASP.NET Web applications or services"
> Presumably there is a d/l on MSDN to rectify this, but I can't find it.
> Does anyone know the URL?
> Many thanks.
Andrew,

see if
http://support.microsoft.com/defaul...kb;en-us;817267

or
http://www.support.microsoft.com/?s...6351&sid=global

help you.

Juan T. Llibre
===========
"Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>I have just moved a project to my laptop and get the message "Visual Studio
>.NET has detected that the specified Web server is not running ASP.NET
>v1.1. You will be unable to run ASP.NET Web applications or services"
> Presumably there is a d/l on MSDN to rectify this, but I can't find it.
> Does anyone know the URL?
> Many thanks.
Thanks. Using 817267 I looked at IIS and there is no "Web Service
Extensions" tab. What do I need to install?

Thanks,

Andrew
"Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
news:uWOK1In3EHA.4064@.tk2msftngp13.phx.gbl...
> Andrew,
> see if
> http://support.microsoft.com/defaul...kb;en-us;817267
> or
> http://www.support.microsoft.com/?s...6351&sid=global
> help you.
>
>
> Juan T. Llibre
> ===========
> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>>I have just moved a project to my laptop and get the message "Visual
>>Studio .NET has detected that the specified Web server is not running
>>ASP.NET v1.1. You will be unable to run ASP.NET Web applications or
>>services"
>>
>> Presumably there is a d/l on MSDN to rectify this, but I can't find it.
>> Does anyone know the URL?
>>
>> Many thanks.
>>
Thanks. Using 817267 I looked at IIS and there is no "Web Service
Extensions" tab. What do I need to install?

Thanks,

Andrew
"Jason Brown [MSFT]" <i-brjaso@.online.microsoft.com> wrote in message
news:ecNOTBm3EHA.2572@.TK2MSFTNGP11.phx.gbl...
> http://support.microsoft.com/defaul...kb;en-us;817267
> or
> http://support.microsoft.com/defaul...kb;en-us;825792
>
> let us know if these don't do the trick
> --
> Jason Brown
> Microsoft GTSC, IIS
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>>I have just moved a project to my laptop and get the message "Visual
>>Studio .NET has detected that the specified Web server is not running
>>ASP.NET v1.1. You will be unable to run ASP.NET Web applications or
>>services"
>>
>> Presumably there is a d/l on MSDN to rectify this, but I can't find it.
>> Does anyone know the URL?
>>
>> Many thanks.
>>
re:
> Thanks. Using 817267 I looked at IIS and there is no "Web Service
> Extensions" tab. What do I need to install?

Hi, Andrew.

First, let's find out what you are actually running.

Please copy the following into a file named "version.aspx",
and place the file in your wwwroot directory.

version.aspx:
----

<%@. Page Language="VB" %>
<html>
<head>
</head>
<body>
<%
dim var as string
var=Request.ServerVariables("SERVER_SOFTWARE")
Response.Write("SERVER_SOFTWARE = " & var)
Response.Write("<P>")
Response.Write(System.Environment.Version.ToString ())
%>
</body>
</html
---

If you placed it in your wwwroot directory,
please run the file by clicking on this link :

http://localhost/version.aspx

Post here the version information which the page writes.

That will tell us what version of ASP.NET you're running.

If you're running 1.0,
there's no "Web Extensions" folder in the IIS Manager.

If you're running 1.1,
there is a "Web Extensions" folder in the IIS Manager.

Juan T. Llibre
===========
"Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
news:uV$FXGq3EHA.3368@.TK2MSFTNGP10.phx.gbl...
> Thanks. Using 817267 I looked at IIS and there is no "Web Service
> Extensions" tab. What do I need to install?
> Thanks,
> Andrew
> "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> news:uWOK1In3EHA.4064@.tk2msftngp13.phx.gbl...
>> Andrew,
>>
>> see if
>> http://support.microsoft.com/defaul...kb;en-us;817267
>>
>> or
>> http://www.support.microsoft.com/?s...6351&sid=global
>>
>> help you.
>>
>>
>>
>>
>> Juan T. Llibre
>> ===========
>> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
>> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>>>I have just moved a project to my laptop and get the message "Visual
>>>Studio .NET has detected that the specified Web server is not running
>>>ASP.NET v1.1. You will be unable to run ASP.NET Web applications or
>>>services"
>>>
>>> Presumably there is a d/l on MSDN to rectify this, but I can't find it.
>>> Does anyone know the URL?
>>>
>>> Many thanks.
>>>
>>
>>
Hmm, having a Web Service Extensions node (not tab) in the IIS Manager is
dependent on the OS, not the Framework version. In Win 2003, you have that
because it's IIS 6. In Win XP or Win 2000, its 5.1 or 5.0 respectively, and
they don't have a way to manage ISAPI filters like that.

Here's what you should try:

Go to the Framework folder in the Windows\Microsoft .NET folder.
In the 1.1 version folder, there is a file aspnet_regiis.exe. Just execute
that file. It will re-register ASP.NET 1.1 with IIS.

That might solve the problem.

--

--

Sven.

"Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
news:OqC9JNr3EHA.1596@.tk2msftngp13.phx.gbl...
> re:
> > Thanks. Using 817267 I looked at IIS and there is no "Web Service
> > Extensions" tab. What do I need to install?
> Hi, Andrew.
> First, let's find out what you are actually running.
> Please copy the following into a file named "version.aspx",
> and place the file in your wwwroot directory.
> version.aspx:
> ----
> <%@. Page Language="VB" %>
> <html>
> <head>
> </head>
> <body>
> <%
> dim var as string
> var=Request.ServerVariables("SERVER_SOFTWARE")
> Response.Write("SERVER_SOFTWARE = " & var)
> Response.Write("<P>")
> Response.Write(System.Environment.Version.ToString ())
> %>
> </body>
> </html>
> ---
> If you placed it in your wwwroot directory,
> please run the file by clicking on this link :
> http://localhost/version.aspx
> Post here the version information which the page writes.
> That will tell us what version of ASP.NET you're running.
> If you're running 1.0,
> there's no "Web Extensions" folder in the IIS Manager.
> If you're running 1.1,
> there is a "Web Extensions" folder in the IIS Manager.
>
>
> Juan T. Llibre
> ===========
> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> news:uV$FXGq3EHA.3368@.TK2MSFTNGP10.phx.gbl...
> > Thanks. Using 817267 I looked at IIS and there is no "Web Service
> > Extensions" tab. What do I need to install?
> > Thanks,
> > Andrew
> > "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> > news:uWOK1In3EHA.4064@.tk2msftngp13.phx.gbl...
> >> Andrew,
> >>
> >> see if
> >> http://support.microsoft.com/defaul...kb;en-us;817267
> >>
> >> or
> >>
http://www.support.microsoft.com/?s...6351&sid=global
> >>
> >> help you.
> >>
> >>
> >>
> >>
> >> Juan T. Llibre
> >> ===========
> >> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> >> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
> >>>I have just moved a project to my laptop and get the message "Visual
> >>>Studio .NET has detected that the specified Web server is not running
> >>>ASP.NET v1.1. You will be unable to run ASP.NET Web applications or
> >>>services"
> >>>
> >>> Presumably there is a d/l on MSDN to rectify this, but I can't find
it.
> >>> Does anyone know the URL?
> >>>
> >>> Many thanks.
> >>>
> >>
> >>
re:
> Hmm, having a Web Service Extensions node (not tab) in the
> IIS Manager is dependent on the OS, not the Framework version.

Aargh! You're right. I should go get some sleep.

re:
> In the 1.1 version folder, there is a file aspnet_regiis.exe.
> Just execute that file. It will re-register ASP.NET 1.1 with IIS

You need the -i parameter if you're running aspnet_regiis.

In a cmd, window, run :
"%windir%\Microsoft.NET\Framework\v.1.1.4322\aspnet _regiis.exe" -i

Just running aspnet_regiis will produce the usage instructions.

Juan T. Llibre
===========
"SA" <informatica@.freemail.nl> wrote in message
news:uPihbRt3EHA.3452@.TK2MSFTNGP14.phx.gbl...
> Hmm, having a Web Service Extensions node (not tab) in the IIS Manager is
> dependent on the OS, not the Framework version. In Win 2003, you have that
> because it's IIS 6. In Win XP or Win 2000, its 5.1 or 5.0 respectively,
> and
> they don't have a way to manage ISAPI filters like that.
> Here's what you should try:
> Go to the Framework folder in the Windows\Microsoft .NET folder.
> In the 1.1 version folder, there is a file aspnet_regiis.exe. Just execute
> that file. It will re-register ASP.NET 1.1 with IIS.
> That might solve the problem.
> --
> --
> Sven.
> "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> news:OqC9JNr3EHA.1596@.tk2msftngp13.phx.gbl...
>> re:
>> > Thanks. Using 817267 I looked at IIS and there is no "Web Service
>> > Extensions" tab. What do I need to install?
>>
>> Hi, Andrew.
>>
>> First, let's find out what you are actually running.
>>
>> Please copy the following into a file named "version.aspx",
>> and place the file in your wwwroot directory.
>>
>> version.aspx:
>> ----
>>
>> <%@. Page Language="VB" %>
>> <html>
>> <head>
>> </head>
>> <body>
>> <%
>> dim var as string
>> var=Request.ServerVariables("SERVER_SOFTWARE")
>> Response.Write("SERVER_SOFTWARE = " & var)
>> Response.Write("<P>")
>> Response.Write(System.Environment.Version.ToString ())
>> %>
>> </body>
>> </html>
>>
>> ---
>>
>> If you placed it in your wwwroot directory,
>> please run the file by clicking on this link :
>>
>> http://localhost/version.aspx
>>
>> Post here the version information which the page writes.
>>
>> That will tell us what version of ASP.NET you're running.
>>
>> If you're running 1.0,
>> there's no "Web Extensions" folder in the IIS Manager.
>>
>> If you're running 1.1,
>> there is a "Web Extensions" folder in the IIS Manager.
>>
>>
>>
>>
>> Juan T. Llibre
>> ===========
>> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
>> news:uV$FXGq3EHA.3368@.TK2MSFTNGP10.phx.gbl...
>> > Thanks. Using 817267 I looked at IIS and there is no "Web Service
>> > Extensions" tab. What do I need to install?
>>> > Thanks,
>>> > Andrew
>> > "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
>> > news:uWOK1In3EHA.4064@.tk2msftngp13.phx.gbl...
>> >> Andrew,
>> >>
>> >> see if
>> >> http://support.microsoft.com/defaul...kb;en-us;817267
>> >>
>> >> or
>> >>
> http://www.support.microsoft.com/?s...6351&sid=global
>> >>
>> >> help you.
>> >>
>> >>
>> >>
>> >>
>> >> Juan T. Llibre
>> >> ===========
>> >> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
>> >> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>> >>>I have just moved a project to my laptop and get the message "Visual
>> >>>Studio .NET has detected that the specified Web server is not running
>> >>>ASP.NET v1.1. You will be unable to run ASP.NET Web applications or
>> >>>services"
>> >>>
>> >>> Presumably there is a d/l on MSDN to rectify this, but I can't find
> it.
>> >>> Does anyone know the URL?
>> >>>
>> >>> Many thanks.
>> >>>
>> >>
>> >>
>>>>
>>
Lordy be! I think that worked. Thanks to you, and Juan and Jason. Where do
you discover all this stuff?

- Andrew
"SA" <informatica@.freemail.nl> wrote in message
news:uPihbRt3EHA.3452@.TK2MSFTNGP14.phx.gbl...
> Hmm, having a Web Service Extensions node (not tab) in the IIS Manager is
> dependent on the OS, not the Framework version. In Win 2003, you have that
> because it's IIS 6. In Win XP or Win 2000, its 5.1 or 5.0 respectively,
> and
> they don't have a way to manage ISAPI filters like that.
> Here's what you should try:
> Go to the Framework folder in the Windows\Microsoft .NET folder.
> In the 1.1 version folder, there is a file aspnet_regiis.exe. Just execute
> that file. It will re-register ASP.NET 1.1 with IIS.
> That might solve the problem.
> --
> --
> Sven.
> "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> news:OqC9JNr3EHA.1596@.tk2msftngp13.phx.gbl...
>> re:
>> > Thanks. Using 817267 I looked at IIS and there is no "Web Service
>> > Extensions" tab. What do I need to install?
>>
>> Hi, Andrew.
>>
>> First, let's find out what you are actually running.
>>
>> Please copy the following into a file named "version.aspx",
>> and place the file in your wwwroot directory.
>>
>> version.aspx:
>> ----
>>
>> <%@. Page Language="VB" %>
>> <html>
>> <head>
>> </head>
>> <body>
>> <%
>> dim var as string
>> var=Request.ServerVariables("SERVER_SOFTWARE")
>> Response.Write("SERVER_SOFTWARE = " & var)
>> Response.Write("<P>")
>> Response.Write(System.Environment.Version.ToString ())
>> %>
>> </body>
>> </html>
>>
>> ---
>>
>> If you placed it in your wwwroot directory,
>> please run the file by clicking on this link :
>>
>> http://localhost/version.aspx
>>
>> Post here the version information which the page writes.
>>
>> That will tell us what version of ASP.NET you're running.
>>
>> If you're running 1.0,
>> there's no "Web Extensions" folder in the IIS Manager.
>>
>> If you're running 1.1,
>> there is a "Web Extensions" folder in the IIS Manager.
>>
>>
>>
>>
>> Juan T. Llibre
>> ===========
>> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
>> news:uV$FXGq3EHA.3368@.TK2MSFTNGP10.phx.gbl...
>> > Thanks. Using 817267 I looked at IIS and there is no "Web Service
>> > Extensions" tab. What do I need to install?
>>> > Thanks,
>>> > Andrew
>> > "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
>> > news:uWOK1In3EHA.4064@.tk2msftngp13.phx.gbl...
>> >> Andrew,
>> >>
>> >> see if
>> >> http://support.microsoft.com/defaul...kb;en-us;817267
>> >>
>> >> or
>> >>
> http://www.support.microsoft.com/?s...6351&sid=global
>> >>
>> >> help you.
>> >>
>> >>
>> >>
>> >>
>> >> Juan T. Llibre
>> >> ===========
>> >> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
>> >> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
>> >>>I have just moved a project to my laptop and get the message "Visual
>> >>>Studio .NET has detected that the specified Web server is not running
>> >>>ASP.NET v1.1. You will be unable to run ASP.NET Web applications or
>> >>>services"
>> >>>
>> >>> Presumably there is a d/l on MSDN to rectify this, but I can't find
> it.
>> >>> Does anyone know the URL?
>> >>>
>> >>> Many thanks.
>> >>>
>> >>
>> >>
>>>>
>>
Andrew:

When you hit your head hard enough often enough, it'll become clear to you
too...

--

--

Sven.

"Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
news:eiAC25u3EHA.1192@.tk2msftngp13.phx.gbl...
> Lordy be! I think that worked. Thanks to you, and Juan and Jason. Where do
> you discover all this stuff?
> - Andrew
> "SA" <informatica@.freemail.nl> wrote in message
> news:uPihbRt3EHA.3452@.TK2MSFTNGP14.phx.gbl...
> > Hmm, having a Web Service Extensions node (not tab) in the IIS Manager
is
> > dependent on the OS, not the Framework version. In Win 2003, you have
that
> > because it's IIS 6. In Win XP or Win 2000, its 5.1 or 5.0 respectively,
> > and
> > they don't have a way to manage ISAPI filters like that.
> > Here's what you should try:
> > Go to the Framework folder in the Windows\Microsoft .NET folder.
> > In the 1.1 version folder, there is a file aspnet_regiis.exe. Just
execute
> > that file. It will re-register ASP.NET 1.1 with IIS.
> > That might solve the problem.
> > --
> > --
> > Sven.
> > "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> > news:OqC9JNr3EHA.1596@.tk2msftngp13.phx.gbl...
> >> re:
> >> > Thanks. Using 817267 I looked at IIS and there is no "Web Service
> >> > Extensions" tab. What do I need to install?
> >>
> >> Hi, Andrew.
> >>
> >> First, let's find out what you are actually running.
> >>
> >> Please copy the following into a file named "version.aspx",
> >> and place the file in your wwwroot directory.
> >>
> >> version.aspx:
> >> ----
> >>
> >> <%@. Page Language="VB" %>
> >> <html>
> >> <head>
> >> </head>
> >> <body>
> >> <%
> >> dim var as string
> >> var=Request.ServerVariables("SERVER_SOFTWARE")
> >> Response.Write("SERVER_SOFTWARE = " & var)
> >> Response.Write("<P>")
> >> Response.Write(System.Environment.Version.ToString ())
> >> %>
> >> </body>
> >> </html>
> >>
> >> ---
> >>
> >> If you placed it in your wwwroot directory,
> >> please run the file by clicking on this link :
> >>
> >> http://localhost/version.aspx
> >>
> >> Post here the version information which the page writes.
> >>
> >> That will tell us what version of ASP.NET you're running.
> >>
> >> If you're running 1.0,
> >> there's no "Web Extensions" folder in the IIS Manager.
> >>
> >> If you're running 1.1,
> >> there is a "Web Extensions" folder in the IIS Manager.
> >>
> >>
> >>
> >>
> >> Juan T. Llibre
> >> ===========
> >> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> >> news:uV$FXGq3EHA.3368@.TK2MSFTNGP10.phx.gbl...
> >> > Thanks. Using 817267 I looked at IIS and there is no "Web Service
> >> > Extensions" tab. What do I need to install?
> >> >> > Thanks,
> >> >> > Andrew
> >> > "Juan T. Llibre [MVP]" <nomailreplies@.nowhere.com> wrote in message
> >> > news:uWOK1In3EHA.4064@.tk2msftngp13.phx.gbl...
> >> >> Andrew,
> >> >>
> >> >> see if
> >> >> http://support.microsoft.com/defaul...kb;en-us;817267
> >> >>
> >> >> or
> >> >>
http://www.support.microsoft.com/?s...6351&sid=global
> >> >>
> >> >> help you.
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> Juan T. Llibre
> >> >> ===========
> >> >> "Andrew Chalk" <achalk@.XXXmagnacartasoftware.com> wrote in message
> >> >> news:eJ1Plul3EHA.2012@.TK2MSFTNGP15.phx.gbl...
> >> >>>I have just moved a project to my laptop and get the message "Visual
> >> >>>Studio .NET has detected that the specified Web server is not
running
> >> >>>ASP.NET v1.1. You will be unable to run ASP.NET Web applications or
> >> >>>services"
> >> >>>
> >> >>> Presumably there is a d/l on MSDN to rectify this, but I can't find
> > it.
> >> >>> Does anyone know the URL?
> >> >>>
> >> >>> Many thanks.
> >> >>>
> >> >>
> >> >>
> >> >> >>
> >>

web server not running asp.net 1.1 error

i've run the command line installer and am still getting the error. i'm on
win2k - sp4. vs.net 2003 installed. what do i need to try next?Make sure you run it from the right version of the Framework. If you have
version 1.0 and 1.1, each has it's own aspnet_regiis.exe. In any case, the
problem is with your server's ISAPI mappings.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big things are made up of
lots of little things.

"Bill Bolte" <me@.billbolte.com> wrote in message
news:OKbaLtMUDHA.940@.TK2MSFTNGP11.phx.gbl...
> i've run the command line installer and am still getting the error. i'm on
> win2k - sp4. vs.net 2003 installed. what do i need to try next?

Web Server not running ASP .NET version 1.1 Error while publishin

Hi
I am getting Error " Visual studio .NET has detected that the specified
web server is not runnin ASP.NET 1.1"
When i am trying to publish the web site on the Testing server from my
development server using Copy Project, i get this Error.
Interestingly, i did publish my web site sucessfully couple of time
earlier, but noe not able to publish it.
Both my Development & Testing webserver has same version & nothing have
changed on them excpet few installation on my local computer, but ther
version of .NEt are still the same.
any ideas, what is , wrong, how does it determine which version the server
is running & what is the fix.this is a known bug when defaultredirect is specified in web.config
http://www.kbalertz.com/kb_825792.aspx
Regards,
Hermit Dave (D'way)
http://hdave.blogspot.com
"N S S" <sidhu@.newsgroups.nospam> wrote in message
news:C4943981-E361-40A6-AA4B-45E18A2A1C9A@.microsoft.com...
> Hi
> I am getting Error " Visual studio .NET has detected that the specified
> web server is not runnin ASP.NET 1.1"
> When i am trying to publish the web site on the Testing server from my
> development server using Copy Project, i get this Error.
> Interestingly, i did publish my web site sucessfully couple of time
> earlier, but noe not able to publish it.
> Both my Development & Testing webserver has same version & nothing have
> changed on them excpet few installation on my local computer, but ther
> version of .NEt are still the same.
> any ideas, what is , wrong, how does it determine which version the
server
> is running & what is the fix.

Web Server not running ASP .NET version 1.1 Error while publishin

Hi

I am getting Error " Visual studio .NET has detected that the specified
web server is not runnin ASP.NET 1.1"

When i am trying to publish the web site on the Testing server from my
development server using Copy Project, i get this Error.

Interestingly, i did publish my web site sucessfully couple of time
earlier, but noe not able to publish it.
Both my Development & Testing webserver has same version & nothing have
changed on them excpet few installation on my local computer, but ther
version of .NEt are still the same.

any ideas, what is , wrong, how does it determine which version the server
is running & what is the fix.this is a known bug when defaultredirect is specified in web.config

http://www.kbalertz.com/kb_825792.aspx

--

Regards,

Hermit Dave (D'way)
http://hdave.blogspot.com

"N S S" <sidhu@.newsgroups.nospam> wrote in message
news:C4943981-E361-40A6-AA4B-45E18A2A1C9A@.microsoft.com...
> Hi
> I am getting Error " Visual studio .NET has detected that the specified
> web server is not runnin ASP.NET 1.1"
> When i am trying to publish the web site on the Testing server from my
> development server using Copy Project, i get this Error.
> Interestingly, i did publish my web site sucessfully couple of time
> earlier, but noe not able to publish it.
> Both my Development & Testing webserver has same version & nothing have
> changed on them excpet few installation on my local computer, but ther
> version of .NEt are still the same.
> any ideas, what is , wrong, how does it determine which version the
server
> is running & what is the fix.

Wednesday, March 28, 2012

Web server not running ASP.NET version 1.1 *RESOLVED*

I just tried creating a new ASP.NET web application and I got the following error.

Visual Studio .NET has detected that the specified web server is not running ASP.NET version 1.1. You will be unable to run ASP.NET Web applications or services.

IIS 5.1 is installed on my local machine and so is VS.NET 2003.
I am running XP Pro.

When I go into control panel->Add or Remove programms I can see Microsoft .NET Framework 1.1 there in the list.

Do any of you have any ideas.Don't Panic!!!!

I managed to fix it.
I pressed the Help button and the answer was there.

Web server reported following error... HTTP/1.1 500 Internal Server Error

My server is running Windows 2003. ASP.NET 1.1 is installed and seems to be
working fine but when I try to create a project from VS.NET 2003 I get the
"Web server reported following error... HTTP/1.1 500 Internal Server Error"
message.

I have already read a bunch of posts from others saying to run
aspnet_regiis.exe -i and the like but none of this has worked. Here's what I
have found:

BTW: Each website has its own IUSR account associated with it (i.e.
IUSR_websitename). This may or may not be relevant.

If I run FileMon while I try to create the project, I see that w3wp.exe
tries to access the root directory of the web as follows:

OPEN c:\Domains\website.com - SUCCESS

Then a few lines later I see this:

OPEN c:\Domains\website.com\ - ACCESS DENIED

Note the only difference is the slash. I have made the ASPNET worker process
part of the admin group for the sake of argument but still get the same
results.

Any help is appreciated.I found that if I go to IIS

IIS->Application Pools->DefaultAppPool

which is the app pool my app is sitting in, and change the identity from
Network Service to Local Service, I am able to create my app. However, I
would like to know how to fix this problem without compromising the security
of my server.

Thanks
I ran into the same problem a few weeks ago. Nothing seemed to work
for me, but I finally deleted the ASPNET account using Computer
Management and went through the steps listed here:

http://support.microsoft.com/?id=306005

I hope this helps.

Amaryllis

web server setup

I have a server that will be running as a web server and a database server?
To get the best performance is it better to install the database and web
server on seperate physical hard drives? or it doesn't matter?
I have a total of 8 harddrives, what RAID setup should i choose?
Thanks,
FredHere's a definition of some RAID levels: http://www.webopedia.com/TERM/R/RAID.html

You can implement level 0 for improved performance but you will need a
controller that supports what you want to do. Try to avoid RAID at the
O/S level - get some hardware that will handle it for you.
On Jul 28, 10:25 pm, "Fred" <fredbb...@.yahoo.com> wrote:
> I have a server that will be running as a web server and a database server
?
> To get the best performance is it better to install the database and web
> server on seperate physical hard drives? or it doesn't matter?
> I have a total of 8 harddrives, what RAID setup should i choose?
> Thanks,
> Fred
Fred,
Yes it is.
There isn't one setup you should choose. You need to juggle the following:
- mirrored pair gives more performance than RAID5
- SQL Log File can be better on its own drive separate from the SQL data,
allowing both to be written at the same time
- OS page file ideally on separate drive, but its a toss up between this and
the SQL log file.
So a typical setup would be either mirrored pair for OS plus RAID5 for data;
or mirrored pair for OS, mirrored pair for SQL logs and RAID5 for data.
Other factors to consider: more memory to save writing to disk; enterprise
editions to use more memory.
Anthony
http://www.airdesk.co.uk
"Fred" <fredbb123@.yahoo.com> wrote in message
news:%23c7EOfY0HHA.1164@.TK2MSFTNGP02.phx.gbl...
>I have a server that will be running as a web server and a database server?
> To get the best performance is it better to install the database and web
> server on seperate physical hard drives? or it doesn't matter?
> I have a total of 8 harddrives, what RAID setup should i choose?
> Thanks,
> Fred

web server setup

I have a server that will be running as a web server and a database server?
To get the best performance is it better to install the database and web
server on seperate physical hard drives? or it doesn't matter?
I have a total of 8 harddrives, what RAID setup should i choose?

Thanks,
FredHere's a definition of some RAID levels: http://www.webopedia.com/TERM/R/RAID.html
You can implement level 0 for improved performance but you will need a
controller that supports what you want to do. Try to avoid RAID at the
O/S level - get some hardware that will handle it for you.

On Jul 28, 10:25 pm, "Fred" <fredbb...@.yahoo.comwrote:

Quote:

Originally Posted by

I have a server that will be running as a web server and a database server?
To get the best performance is it better to install the database and web
server on seperate physical hard drives? or it doesn't matter?
I have a total of 8 harddrives, what RAID setup should i choose?
>
Thanks,
Fred


Fred,
Yes it is.
There isn't one setup you should choose. You need to juggle the following:
- mirrored pair gives more performance than RAID5
- SQL Log File can be better on its own drive separate from the SQL data,
allowing both to be written at the same time
- OS page file ideally on separate drive, but its a toss up between this and
the SQL log file.
So a typical setup would be either mirrored pair for OS plus RAID5 for data;
or mirrored pair for OS, mirrored pair for SQL logs and RAID5 for data.
Other factors to consider: more memory to save writing to disk; enterprise
editions to use more memory.
Anthony
http://www.airdesk.co.uk
"Fred" <fredbb123@.yahoo.comwrote in message
news:%23c7EOfY0HHA.1164@.TK2MSFTNGP02.phx.gbl...

Quote:

Originally Posted by

>I have a server that will be running as a web server and a database server?
To get the best performance is it better to install the database and web
server on seperate physical hard drives? or it doesn't matter?
I have a total of 8 harddrives, what RAID setup should i choose?
>
Thanks,
Fred

Web Server running ASP.Net 1.0 error

I am not sure why I am getting this error when I try to use VS.Net 2003
especially when the target system is WinSvr 2k3.

Every other web application works fine, but I have one that complains that
ASP.Net 1.0 is running on the server, and yet I cannot find any reference
what so ever to ASP.Net 1.0 in the ISAPI filter list.

Has anyone had this problem before?Hi,

Yes I got it once. check if mscoree.dll version (%windows%/system32) is
1.1.4322.573.

you also might check if all of your application mappings to extensions
is to ver 1.1.

Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
"Natty Gur" <natty@.dao2com.com> wrote in message
news:eX72X5pzDHA.2456@.TK2MSFTNGP12.phx.gbl...
> Hi,
> Yes I got it once. check if mscoree.dll version (%windows%/system32) is
> 1.1.4322.573.

Checked and it is.

> you also might check if all of your application mappings to extensions
> is to ver 1.1.

I even reinstalled the 1.1 extensions just incase there was something fubar
but still it moans about the 1.0 being installed.
It turns out it was my Proxy server that was freaking with the webserver.

Looks like I will have to setup a config file for this and others that I am
working on.

"Wayne M J" <not@.home.nor.bigpuddle.com> wrote in message
news:elndT6B0DHA.3224@.tk2msftngp13.phx.gbl...
> "Natty Gur" <natty@.dao2com.com> wrote in message
> news:eX72X5pzDHA.2456@.TK2MSFTNGP12.phx.gbl...
> > Hi,
> > Yes I got it once. check if mscoree.dll version (%windows%/system32) is
> > 1.1.4322.573.
> Checked and it is.
> > you also might check if all of your application mappings to extensions
> > is to ver 1.1.
> I even reinstalled the 1.1 extensions just incase there was something
fubar
> but still it moans about the 1.0 being installed.