473,394 Members | 1,750 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Unable to Deploy ASP.Net 2.0 App to Local IIS

All,
Not sure where else to go. I have: VS2005, XP SP2 Media Center, IIS5.1

Problem:
Apps developed (even simple "Hello WOrld") apps simply won't deploy properly
to either my local IIS instance or to a 2nd server W2003K server.

When I publish, create them as IIS apps, or copy, even after running
both/either the ASP2.) security tab or the web admin (asp based) manager
they will not enable properly.

I have:
- Set to anonymous access
- Given permission to IUSR_ANONYMOUS
- Turned off/uninstalled firewall, and Windows Defender
- Read the even log
- Uninstalled 1.1, and 2.0, repareid and re-installed 2.0
- Re reged ASP with aspnet_regiis
- Unistalled and re-installed IIS services
- etc...

App run fine with the built in Cassini server but won't deploy, won't run,
etc...any other way. I always get a 403 (Access forbidden or 500 unknown)
error.

I have also tried hand-copying and setting permissions for anonymous
manually....also does not work....
Not sure where else to turn....
I am starting to think that ASP in VS2005 is absolute rubbish....

cheers,
t

Jun 24 '06 #1
4 1981
Forgot to mention I've also:
- Done a full Windows Update
- Full VS2005 repair

Is it my instance of IIS? VS2005? An ASP.Net set-up issue? Issues with XP
Media Center?

This is the most difficulty I've had with any variant of VS, IIS or
ASP...and I have been using all since ASP first released....

thx again
"Tim Brooks" <us****@msn.com> wrote in message
news:OC***************@TK2MSFTNGP02.phx.gbl...
All,
Not sure where else to go. I have: VS2005, XP SP2 Media Center, IIS5.1

Problem:
Apps developed (even simple "Hello WOrld") apps simply won't deploy
properly to either my local IIS instance or to a 2nd server W2003K server.

When I publish, create them as IIS apps, or copy, even after running
both/either the ASP2.) security tab or the web admin (asp based) manager
they will not enable properly.

I have:
- Set to anonymous access
- Given permission to IUSR_ANONYMOUS
- Turned off/uninstalled firewall, and Windows Defender
- Read the even log
- Uninstalled 1.1, and 2.0, repareid and re-installed 2.0
- Re reged ASP with aspnet_regiis
- Unistalled and re-installed IIS services
- etc...

App run fine with the built in Cassini server but won't deploy, won't run,
etc...any other way. I always get a 403 (Access forbidden or 500 unknown)
error.

I have also tried hand-copying and setting permissions for anonymous
manually....also does not work....
Not sure where else to turn....
I am starting to think that ASP in VS2005 is absolute rubbish....

cheers,
t

Jun 24 '06 #2
re:
- Set to anonymous access
- Given permission to IUSR_ANONYMOUS
Unless you've configured impersonation for the IUSR_ANONYMOUS account,
you are giving permissions to the wrong account.

Under XP, ASP.NET runs as the "MachineName\ASPNET" account.
Under W2K3, ASP.NET runs as the "MachineName\Network Service" account.

Give access permissions to the correct account.

Also, under W2K3, you need to explicitly enable ASP.NET 2.0.

Open the IIS Manager, scroll on the left to "Web Service Extensions",
select that, go to the right pane and select the ASP.NET version you
want to enable and click the "Allow" button.

Repeat the sequence for all versions of ASP.NET you want to enable.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Tim Brooks" <us****@msn.com> wrote in message news:OC***************@TK2MSFTNGP02.phx.gbl... All,
Not sure where else to go. I have: VS2005, XP SP2 Media Center, IIS5.1

Problem:
Apps developed (even simple "Hello WOrld") apps simply won't deploy properly to either my local
IIS instance or to a 2nd server W2003K server.

When I publish, create them as IIS apps, or copy, even after running both/either the ASP2.)
security tab or the web admin (asp based) manager they will not enable properly.

I have:
- Set to anonymous access
- Given permission to IUSR_ANONYMOUS
- Turned off/uninstalled firewall, and Windows Defender
- Read the even log
- Uninstalled 1.1, and 2.0, repareid and re-installed 2.0
- Re reged ASP with aspnet_regiis
- Unistalled and re-installed IIS services
- etc...

App run fine with the built in Cassini server but won't deploy, won't run, etc...any other way. I
always get a 403 (Access forbidden or 500 unknown) error.

I have also tried hand-copying and setting permissions for anonymous manually....also does not
work....
Not sure where else to turn....
I am starting to think that ASP in VS2005 is absolute rubbish....

cheers,
t

Jun 25 '06 #3
TAB
Juan,

Thanks for the response. I've since gotten it working and it all seemed to
be because of the OS. I was using a machine that came pre-built with Media
Center and, because VS2005 installed fine and ASP.Net seemed to work (and
the docs said so, too) I assumed that it did.

I have since completely rebuilt the entire machine with XP Pro...and ASP.Net
worked correctly right out of the gate. Even got debugging working, had not
worked previously for ASP.Net projects....

Oh well.....
thanks all...

"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:Ot**************@TK2MSFTNGP05.phx.gbl...
re:
- Set to anonymous access
- Given permission to IUSR_ANONYMOUS


Unless you've configured impersonation for the IUSR_ANONYMOUS account,
you are giving permissions to the wrong account.

Under XP, ASP.NET runs as the "MachineName\ASPNET" account.
Under W2K3, ASP.NET runs as the "MachineName\Network Service" account.

Give access permissions to the correct account.

Also, under W2K3, you need to explicitly enable ASP.NET 2.0.

Open the IIS Manager, scroll on the left to "Web Service Extensions",
select that, go to the right pane and select the ASP.NET version you
want to enable and click the "Allow" button.

Repeat the sequence for all versions of ASP.NET you want to enable.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Tim Brooks" <us****@msn.com> wrote in message
news:OC***************@TK2MSFTNGP02.phx.gbl...
All,
Not sure where else to go. I have: VS2005, XP SP2 Media Center, IIS5.1

Problem:
Apps developed (even simple "Hello WOrld") apps simply won't deploy
properly to either my local IIS instance or to a 2nd server W2003K
server.

When I publish, create them as IIS apps, or copy, even after running
both/either the ASP2.) security tab or the web admin (asp based) manager
they will not enable properly.

I have:
- Set to anonymous access
- Given permission to IUSR_ANONYMOUS
- Turned off/uninstalled firewall, and Windows Defender
- Read the even log
- Uninstalled 1.1, and 2.0, repareid and re-installed 2.0
- Re reged ASP with aspnet_regiis
- Unistalled and re-installed IIS services
- etc...

App run fine with the built in Cassini server but won't deploy, won't
run, etc...any other way. I always get a 403 (Access forbidden or 500
unknown) error.

I have also tried hand-copying and setting permissions for anonymous
manually....also does not work....
Not sure where else to turn....
I am starting to think that ASP in VS2005 is absolute rubbish....

cheers,
t


Jun 26 '06 #4
> I was using a machine that came pre-built with Media Center

Thanks for reporting back on that. It's something to watch for!

Ken
Microsoft MVP [ASP.NET]

"TAB" <ta*@community.nospam.com> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Juan,

Thanks for the response. I've since gotten it working and it all seemed
to be because of the OS. I was using a machine that came pre-built with
Media Center and, because VS2005 installed fine and ASP.Net seemed to work
(and the docs said so, too) I assumed that it did.

I have since completely rebuilt the entire machine with XP Pro...and
ASP.Net worked correctly right out of the gate. Even got debugging
working, had not worked previously for ASP.Net projects....

Oh well.....
thanks all...

"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:Ot**************@TK2MSFTNGP05.phx.gbl...
re:
- Set to anonymous access
- Given permission to IUSR_ANONYMOUS


Unless you've configured impersonation for the IUSR_ANONYMOUS account,
you are giving permissions to the wrong account.

Under XP, ASP.NET runs as the "MachineName\ASPNET" account.
Under W2K3, ASP.NET runs as the "MachineName\Network Service" account.

Give access permissions to the correct account.

Also, under W2K3, you need to explicitly enable ASP.NET 2.0.

Open the IIS Manager, scroll on the left to "Web Service Extensions",
select that, go to the right pane and select the ASP.NET version you
want to enable and click the "Allow" button.

Repeat the sequence for all versions of ASP.NET you want to enable.


Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Tim Brooks" <us****@msn.com> wrote in message
news:OC***************@TK2MSFTNGP02.phx.gbl...
All,
Not sure where else to go. I have: VS2005, XP SP2 Media Center, IIS5.1

Problem:
Apps developed (even simple "Hello WOrld") apps simply won't deploy
properly to either my local IIS instance or to a 2nd server W2003K
server.

When I publish, create them as IIS apps, or copy, even after running
both/either the ASP2.) security tab or the web admin (asp based) manager
they will not enable properly.

I have:
- Set to anonymous access
- Given permission to IUSR_ANONYMOUS
- Turned off/uninstalled firewall, and Windows Defender
- Read the even log
- Uninstalled 1.1, and 2.0, repareid and re-installed 2.0
- Re reged ASP with aspnet_regiis
- Unistalled and re-installed IIS services
- etc...

App run fine with the built in Cassini server but won't deploy, won't
run, etc...any other way. I always get a 403 (Access forbidden or 500
unknown) error.

I have also tried hand-copying and setting permissions for anonymous
manually....also does not work....
Not sure where else to turn....
I am starting to think that ASP in VS2005 is absolute rubbish....

cheers,
t



Jun 26 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: mqsash | last post by:
Hi Problem : Unable to deploy an assembly in IE, as a cab file. (Works fine when deployed as a dll ) Description : I have created a assembly (dll with no user interface)in C# which I deploy in...
1
by: MN | last post by:
I have created an ASP.NET application which connects to Oracle database. My application runs fine in local host environment (database and apps running on same laptop). When I deploy my application...
0
by: Robert Warnestam | last post by:
Hello, I have some problems deploying Crystal Reports. I'm using Visual Studio 2005 Beta 1. In this version Crystal Reports (9.7.3500.0) is included. I created a small test application...
1
by: Jeffrey Jones | last post by:
Hello all, I hope I am posting to the right forum. I have made my very first ASP.NET web app and am trying to deploy my baby to a remote server. All I know about my remote server is that it has...
1
by: Pepe | last post by:
Hi, I have created the "Hello World" web service with one web method on it "HelloWorld" (yes the tag is there). I have deployed the web service to a Windows 2003 server, then I create a new...
1
by: yopy | last post by:
i have developed a web service which return dataset on dev machine, when i invoke the web service from the same machine it works fine, but when i deploy the web service to another machine, and...
6
by: Brad | last post by:
I have a win2003 server workstation with multiple webs, each web has it's own ip address. In VS2005, if I select to open an existing web site, select Local IIS, the dialog correctly displays a...
0
by: bazzer | last post by:
hey, i am using visual basic.net 2003 and have an ASP.NET webform application thats accessing a microsoft access 2003 database. i kept getting the following error when i tried to run it: ERROR ...
6
by: AGP | last post by:
I resisted for many years but I've just written my first app in .NET2005 and am looking to deploy my app with a third-party installer. ClickOnce and the VS Installer do not meed my needs and I am...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.