Saturday, March 31, 2012
Web server not running ASP.NET v1.1
.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
..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.
> >> >>>
> >> >>
> >> >>
> >> >> >>
> >>
Monday, March 26, 2012
'web service call failed: 500' using ajax hovermenu and web service
I'm using a hovermenuextender attached to a templatefield of a
gridview, and everything seemed to work fine.. however I've moved on
to add dynamic attributes to the hovermenu. Now I get the error "web
service call failed: 500" in place of the output I want (on the
hovermenu's panel).
When accessing the web service I created (directly through the
browser) everything works fine..
here's my hovermenuextender dynamic attributes
DynamicContextKey='<%=eval("refnumber") %>'
DynamicServiceMethod="GetSearchDetails"
DynamicServicePath="Services.asmx"
DynamicControlID="lbdynamiccontent"
I'm guessing the path or method may be incorrect? I've put
services.asmx in the root folder and services.vb was slipped into the
app_code directory.
The other problem would be with the contextkey, but debugging info
within the webservice never gets thrown (it does when I run the
service directly through the browser) so would a funny parameter do
that?
Any help would be greatly appreciated! I also saw error 12030 instead
of 500 crop up, but that seems to have gone (!!!)
cheers,
ChrisOn 5 Jun, 12:53, Not Me <clhumphr...@.gmail.com> wrote:
> Hi there,
> I'm using a hovermenuextender attached to a templatefield of a
> gridview, and everything seemed to work fine.. however I've moved on
> to add dynamic attributes to the hovermenu. Now I get the error "web
> service call failed: 500" in place of the output I want (on the
> hovermenu's panel).
Aha, I realised the helloworld service worked fine.. it was just
anything I created with parameters.. I had my service set up as
Public Function getSearchDetails(ByVal refno As String) As String
so changed this to
Public Function getSearchDetails(ByVal contextKey As String) As String
and all is well!
hope that it useful to any googler's out there.
cheers,
Chris
'web service call failed: 500' using ajax hovermenu and web service
I'm using a hovermenuextender attached to a templatefield of a
gridview, and everything seemed to work fine.. however I've moved on
to add dynamic attributes to the hovermenu. Now I get the error "web
service call failed: 500" in place of the output I want (on the
hovermenu's panel).
When accessing the web service I created (directly through the
browser) everything works fine..
here's my hovermenuextender dynamic attributes
DynamicContextKey='<%=eval("refnumber") %>'
DynamicServiceMethod="GetSearchDetails"
DynamicServicePath="Services.asmx"
DynamicControlID="lbdynamiccontent"
I'm guessing the path or method may be incorrect? I've put
services.asmx in the root folder and services.vb was slipped into the
app_code directory.
The other problem would be with the contextkey, but debugging info
within the webservice never gets thrown (it does when I run the
service directly through the browser) so would a funny parameter do
that?
Any help would be greatly appreciated! I also saw error 12030 instead
of 500 crop up, but that seems to have gone (!!!)
cheers,
ChrisOn 5 Jun, 12:53, Not Me <clhumphr...@.gmail.comwrote:
Quote:
Originally Posted by
Hi there,
>
I'm using a hovermenuextender attached to a templatefield of a
gridview, and everything seemed to work fine.. however I've moved on
to add dynamic attributes to the hovermenu. Now I get the error "web
service call failed: 500" in place of the output I want (on the
hovermenu's panel).
Aha, I realised the helloworld service worked fine.. it was just
anything I created with parameters.. I had my service set up as
Public Function getSearchDetails(ByVal refno As String) As String
so changed this to
Public Function getSearchDetails(ByVal contextKey As String) As String
and all is well!
hope that it useful to any googler's out there.
cheers,
Chris
Monday, March 12, 2012
Web Services on a Windows 2000 IIS 5.x ASP.Net 1.1 works fine but not on 2003
on a Windows 2000 machine with IIS 5.x ASP.Net 1.1.
I moved them to a Windows 2003 server with IIS 6.x ASP.Net 1.1 and suddenly
it's chewing up memory. On the old machine, aspnet_wp.exe would grow but
would level out at about 40MB of memory used. On the new machine, it just
keeps growing and growing.
Anybody got any suggestions on things to look at?
TIA - Jeff.Hello Mufasa,
The only way to understad is profile your web app or to make the memory dump
of your pool and scrutinize it
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
M> I have web services that have been running fine for 8-9 months. It's
M> hosted on a Windows 2000 machine with IIS 5.x ASP.Net 1.1.
M>
M> I moved them to a Windows 2003 server with IIS 6.x ASP.Net 1.1 and
M> suddenly it's chewing up memory. On the old machine, aspnet_wp.exe
M> would grow but would level out at about 40MB of memory used. On the
M> new machine, it just keeps growing and growing.
M>
M> Anybody got any suggestions on things to look at?
M>
M> TIA - Jeff.
M>
Hello Mufasa,
The only way to understand is profile your web app or to make the memory
dump of your pool and scrutinize it
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
M> I have web services that have been running fine for 8-9 months. It's
M> hosted on a Windows 2000 machine with IIS 5.x ASP.Net 1.1.
M>
M> I moved them to a Windows 2003 server with IIS 6.x ASP.Net 1.1 and
M> suddenly it's chewing up memory. On the old machine, aspnet_wp.exe
M> would grow but would level out at about 40MB of memory used. On the
M> new machine, it just keeps growing and growing.
M>
M> Anybody got any suggestions on things to look at?
M>
M> TIA - Jeff.
M>
Web Services on a Windows 2000 IIS 5.x ASP.Net 1.1 works fine but not on 2003
on a Windows 2000 machine with IIS 5.x ASP.Net 1.1.
I moved them to a Windows 2003 server with IIS 6.x ASP.Net 1.1 and suddenly
it's chewing up memory. On the old machine, aspnet_wp.exe would grow but
would level out at about 40MB of memory used. On the new machine, it just
keeps growing and growing.
Anybody got any suggestions on things to look at?
TIA - Jeff.Hello Mufasa,
The only way to understad is profile your web app or to make the memory dump
of your pool and scrutinize it
--
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
MI have web services that have been running fine for 8-9 months. It's
Mhosted on a Windows 2000 machine with IIS 5.x ASP.Net 1.1.
M>
MI moved them to a Windows 2003 server with IIS 6.x ASP.Net 1.1 and
Msuddenly it's chewing up memory. On the old machine, aspnet_wp.exe
Mwould grow but would level out at about 40MB of memory used. On the
Mnew machine, it just keeps growing and growing.
M>
MAnybody got any suggestions on things to look at?
M>
MTIA - Jeff.
M>
Hello Mufasa,
The only way to understand is profile your web app or to make the memory
dump of your pool and scrutinize it
--
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
MI have web services that have been running fine for 8-9 months. It's
Mhosted on a Windows 2000 machine with IIS 5.x ASP.Net 1.1.
M>
MI moved them to a Windows 2003 server with IIS 6.x ASP.Net 1.1 and
Msuddenly it's chewing up memory. On the old machine, aspnet_wp.exe
Mwould grow but would level out at about 40MB of memory used. On the
Mnew machine, it just keeps growing and growing.
M>
MAnybody got any suggestions on things to look at?
M>
MTIA - Jeff.
M>