PC Review


Reply
Thread Tools Rate Thread

Cannot create ASP.NET Web Application

 
 
Kevin L
Guest
Posts: n/a
 
      3rd Mar 2004
I have XP Pro and IIS is installed.
I am trying to create a new (and first) ASP.NET Web Application.

After choosing New project in IDE and naming it, I click OK and receive the
following message:

The Web server reported the following error when attempting to create or
open the Web project located at the following URL:
'http://localhost/WebHelpDesk'. 'The server returned an invalid or
unrecognized response'.

Does anyone know what this means or how I can remedy it?

thank you



 
Reply With Quote
 
 
 
 
Cor
Guest
Posts: n/a
 
      3rd Mar 2004
Hi Kevin,

Mostly it has to do with user rights in the directory c:\inetpub

This question is often asked in the newsgroup
Aspnet
<news://msnews.microsoft.com/microsoft.public.dotnet.framework.aspnet>

Web interface:

<http://communities2.microsoft.com/co...s/?dg=microsof
t.public.dotnet.framework.aspnet>

when this is not the right answer I would ask it also there

I hope this helps a little bit?

Cor


"Kevin L" <no_spam@not_real_email.com> schreef in bericht
news:(E-Mail Removed)...
> I have XP Pro and IIS is installed.
> I am trying to create a new (and first) ASP.NET Web Application.
>
> After choosing New project in IDE and naming it, I click OK and receive

the
> following message:
>
> The Web server reported the following error when attempting to create or
> open the Web project located at the following URL:
> 'http://localhost/WebHelpDesk'. 'The server returned an invalid or
> unrecognized response'.
>
> Does anyone know what this means or how I can remedy it?
>
> thank you
>
>
>



 
Reply With Quote
 
Ian
Guest
Posts: n/a
 
      3rd Mar 2004
This is a problem with the scriptmaps, you should consider using the
aspnet_regiis utility with one of the following params, I would recommend
the -i option. You can read about this utility on MSDN

-s = register asp.net with your webapps

-s <path> = this installs scriptmaps for this version at the specified
path, recursively. Existing scriptmaps of lower version are upgraded to this
version. E.g. aspnet_regiis.exe -s W3SVC/1/ROOT/SampleApp1

-i = install this version of ASP.NET and update scriptmaps at the IIS
metabase root and for all scriptmaps below the root. Existing scriptmaps of
lower version are upgraded to this version.


"Kevin L" <no_spam@not_real_email.com> wrote in message
news:(E-Mail Removed)...
> I have XP Pro and IIS is installed.
> I am trying to create a new (and first) ASP.NET Web Application.
>
> After choosing New project in IDE and naming it, I click OK and receive

the
> following message:
>
> The Web server reported the following error when attempting to create or
> open the Web project located at the following URL:
> 'http://localhost/WebHelpDesk'. 'The server returned an invalid or
> unrecognized response'.
>
> Does anyone know what this means or how I can remedy it?
>
> thank you
>
>
>



 
Reply With Quote
 
Kevin L
Guest
Posts: n/a
 
      3rd Mar 2004
I have tried the -i parameter with Regiis, but I am still seeing the
problem.




"Ian" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> This is a problem with the scriptmaps, you should consider using the
> aspnet_regiis utility with one of the following params, I would recommend
> the -i option. You can read about this utility on MSDN
>
> -s = register asp.net with your webapps
>
> -s <path> = this installs scriptmaps for this version at the specified
> path, recursively. Existing scriptmaps of lower version are upgraded to

this
> version. E.g. aspnet_regiis.exe -s W3SVC/1/ROOT/SampleApp1
>
> -i = install this version of ASP.NET and update scriptmaps at the IIS
> metabase root and for all scriptmaps below the root. Existing scriptmaps

of
> lower version are upgraded to this version.
>
>
> "Kevin L" <no_spam@not_real_email.com> wrote in message
> news:(E-Mail Removed)...
> > I have XP Pro and IIS is installed.
> > I am trying to create a new (and first) ASP.NET Web Application.
> >
> > After choosing New project in IDE and naming it, I click OK and receive

> the
> > following message:
> >
> > The Web server reported the following error when attempting to create or
> > open the Web project located at the following URL:
> > 'http://localhost/WebHelpDesk'. 'The server returned an invalid or
> > unrecognized response'.
> >
> > Does anyone know what this means or how I can remedy it?
> >
> > thank you
> >
> >
> >

>
>



 
Reply With Quote
 
Kevin L
Guest
Posts: n/a
 
      5th Mar 2004
I figured out what it is. It is Norton Internet Security.



"Kevin L" <no_spam@not_real_email.com> wrote in message
news:(E-Mail Removed)...
> I have XP Pro and IIS is installed.
> I am trying to create a new (and first) ASP.NET Web Application.
>
> After choosing New project in IDE and naming it, I click OK and receive

the
> following message:
>
> The Web server reported the following error when attempting to create or
> open the Web project located at the following URL:
> 'http://localhost/WebHelpDesk'. 'The server returned an invalid or
> unrecognized response'.
>
> Does anyone know what this means or how I can remedy it?
>
> thank you
>
>
>



 
Reply With Quote
 
Cor
Guest
Posts: n/a
 
      5th Mar 2004
Hi Kevin,

Thanks, this one I never heard of so good information.

:-)

Cor

> I figured out what it is. It is Norton Internet Security.



 
Reply With Quote
 
Kevin L
Guest
Posts: n/a
 
      11th Mar 2004
Hi Cor,
Some additional Information:
I am using Norton Internet Security 2003. It is still installed,
I only have to disable the personal firewall portion of Norton Internet
Security, not all of Norton Internet Security.





"Cor" <(E-Mail Removed)> wrote in message
news:uqLd$(E-Mail Removed)...
> Hi Kevin,
>
> Thanks, this one I never heard of so good information.
>
> :-)
>
> Cor
>
> > I figured out what it is. It is Norton Internet Security.

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to create a DLL application with VB.NET? cherishman Microsoft VB .NET 3 18th Mar 2005 11:28 AM
Re: Can't create a ASP.Net Web Application Kristofer Gafvert Microsoft Dot NET 0 26th Aug 2004 05:16 PM
How to create a DLL out of web application! Santosh Microsoft ASP .NET 1 18th Mar 2004 11:45 PM
Cannot create Web Application Kevin L Microsoft ASP .NET 3 5th Mar 2004 01:12 PM
Cannot create ASP.NET application... John Sedlak Microsoft ASP .NET 5 20th Oct 2003 03:25 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:06 AM.