473,385 Members | 1,324 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,385 software developers and data experts.

Error while runnning project in ASP.Net - aspnet_wp.exe

Hi,

I got the following error while trying to run the project in ASP.Net 2003 to
one of my application in my machine. I think some where im loosing the IIS
configurations.

Error Detail: Auto-attach to process '[5488] aspnet_wp.exe' on machine
'<machine name>' failed. Error code 0x8004000e.

Could you help me to find resolution.

Thanks.

OS: Windows 2000 Prof.
Framwork: 1.1
Enabled settings in IIS:
* Integrated Windows Authentication
* HTTP keep-alives enabled

Results when running 'Check server extensions': (Listed only specific
project entries)

Web http://<machine name>/Project
Begin check 10/23/2008 3:53:54 PM
PROBLEM: There is no web named "/Project".
NOT CORRECTED
End check 10/23/2008 3:53:55 PM
Web http://<machine name>/project1
Begin check 10/23/2008 3:53:55 PM
PROBLEM: Content folder "project1" not found.
NOT CORRECTED
End check 10/23/2008 3:53:55 PM

----Probably it should be only one project. I have placed my project as open
in wwwroot itself (without creating folders within wwwroot).

Is there any professional way to delete the ASP.Net project from machine
instead of removing folders in wwwroot and mydocuments???

Oct 23 '08 #1
1 3131
Because you are speaking of projects, I'm assuming your trying to
access the project through Visual Studio and are getting errors like
the following:

1. The default Web access mode for this project is set to file share,
but the project folder at http://LocalHost/ProjectName cannot be
opened with the path ‘filepath’. The error returned was:

Unable to open Web project projectname. The Web projectname located
on server http://localhost does not exist.

2. Unable to open Web project projectname. The file filepath does not
correspond to the URL http://Localhost/projectname. The two must map
to the same server location. HTTP Error 404: Object Not Found.

3. The project you are trying to open is a Web project. You need to
open it by specifying its URL path.

There are two categories of projects in Visual Studio .NET: Web
Projects, and local or non-Web Projects. These problems happen when
web projects are not properly configured for editing on your
workstation.

Web projects are created over the HTTP protocol while non-web projects
are created through the local file system. The HTTP protocol
specifies relative file paths that get converted into absolute file
paths by a webserver. If you do not define either the necessary
relative to absolute file path mappings in IIS, or the relative file
path to your sandbox for the project, you will experience opening
problems.

Right click a web project folder in windows explorer and select
properties from the popup menu. On the "Web Sharing" tab of the
properties dialog that opens, click "Share this folder".

On the Edit Alias dialog that appears, select all permissions. The
Alias textbox should be populated with the folder name. Click [OK] to
close the dialog, and then [OK] again to close the property sheet.
You have just created a virtual directory in IIS; you do not need to
file share the folder.

Next, change the project’s webinfo file to make it point to the
virtual directory you’ve just setup. The name of the file will be the
same as the project file with the exception that it has a .webinfo
suffix. Because the webinfo file isn’t checked into CVS, you may have
to create it.

Edit the webinfo file in a text editor outside of visual studio and
change the XML tag <Webso that it’s URLPath attribute refers to the
project file using your virtual directory alias as follows:

<VisualStudioUNCWeb>
<Web URLPath = http://localhost/youraliasname/yourprojectname.??proj
/>
</VisualStudioUNCWeb>

where:

Server = Always localhost
Youraliasname = alias name that’s the same as the folder name
containing your project
Yourprojectname.??proj Project file for your project (ends in vbproj
for visual basic and csproj for CSharp)

Next, change the project paths in the solution file (.sln) to make
them all relative to the current directory.

Edit the solution file in a text editor outside of visual studio and
remove any http://server qualification from the path for a project
file so that only the project file name remains (without any
preceeding slashes).

This should now allow you to open the project in visual studio.
Oct 23 '08 #2

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

Similar topics

11
by: Todd Gardner | last post by:
--------------------------------------------------------------- I would appreciate any ideas how to write to the parallel port (Mem 0x378) when runnning WinXP or Mandrake 9.2. In C and LabVIEW I...
4
by: Stephen Miller | last post by:
Hi, I am running v1.1.4322 on Win2K server and unable to debug a ASP.Net application running locally, using a full URL (ie www.mysite.com). When I hit F5, I get the following error message: ...
5
by: CES | last post by:
All, I've just started to use VBStudio, up tell now I've coded with note pad, so this is all new to me. I'm trying to create my first project but I'm running into problems. I've created a base...
6
by: AlanS | last post by:
I have used Visual Studio for about 8 months. I have developed some ASP solutions. I had to get on with some other things and have not worked with ASP.NET for a couple months. In the meantime, I...
2
by: Emil | last post by:
Hello, Two days ago I tried to create my first asp project but when I tried to create a new asp project I got the following error message: 'The web server reported the following error when...
8
by: Rod | last post by:
I have been working with ASP.NET 1.1 for quite a while now. For some reason, opening some ASP.NET applications we wrote is producing the following error message: "The Web server reported...
1
by: pbj | last post by:
sometime last night, with my website project saved, but still open, my computer chose to reboot itself. this morning, after a short burst of creative vocabulary, i logged back in and restarted...
1
by: Ramanfromoz | last post by:
Hi, Developing a new we application. Everything okay on my local WIN XP PROFESSIONAL, IIS 5.0 running locally. The website is running smoothly. Now, the same code I am copying over to a...
3
by: Ramesh Dodamani | last post by:
Environment: XP Pro, VS.Net 2003, .Net 1.1.4322 with SP1 & KB Hotfix 886903 P4 2.2GHz, 1 GB RAM My system was working fine till a few weeks back when I started seeing the following errors. ...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

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.