473,326 Members | 2,099 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,326 software developers and data experts.

unable to run asp.net on 2000 server

'm not bale to run my projec on the 2000 server, he error was:
error while trying to run project: unable to start debugging on the web server.erver side error occurred on sending debug HTTP request
mak sure that the server is running correctly . verify that there are o syntax errors in the web.config...

i check the IIS, it is running correctly, also the webconfig so what am i sposed to to do be able to run it
Nov 18 '05 #1
3 3028
You may be experiencing the same problem one encounters when VS.NET is
installed before IIS is installed. ASP.NET doesn't work. In this scenario,
the developer opens VS.NET and attempts to open an existing or create a new
ASP.NET application. VS.NET throws up an error complaining about ASP.NET
not installed, and to check the webserver. I don't have my VS.NET disc with
me. Check your VS.NET disk for more info. on setting up dotnet
framework/ASP.NET when framework/VS.NET is installed before IIS. You could
also check MSDN or Technet.
"hussein" <an*******@discussions.microsoft.com> wrote in message
news:8F**********************************@microsof t.com...
'm not bale to run my projec on the 2000 server, he error was:
error while trying to run project: unable to start debugging on the web server.erver side error occurred on sending debug HTTP request. mak sure that the server is running correctly . verify that there are o syntax errors in the web.config....
i check the IIS, it is running correctly, also the webconfig so what am i

sposed to to do be able to run it
Nov 18 '05 #2
sorry, but the IIS was instaled befor the VS.Net not after it. and the problem is still the same. so how will it be solved?
Nov 18 '05 #3
Give this a shot... This is a copy of an article straight from MSDN. Its
about the tool that I had to run on my box to get VS.NET\ASP.NET\IIS to play
nice. I hope you can read this because is did select, copy and paste. If
you are unable to read it do a search for "aspnet_regiis":
-------------------
By default, when the .NET Framework is installed on a computer with an
existing installation, all ASP.NET applications are automatically updated to
use this version of the .NET Framework. The only exceptions are applications
that are bound to an incompatible version of the runtime or to a later
version of the runtime. Although later versions of the .NET Framework are
designed to be backward compatible, you might want to configure an ASP.NET
application to use an earlier version. The following sections describe the
process to configure an ASP.NET application to target a specific version of
the .NET Framework.

Viewing the Script Map for an ASP.NET Application
When managing a computer with multiple versions of the .NET Framework
installed, it is often useful to view the script map for an ASP.NET
application to determine which version is used by the application. You can
view the script map for an ASP.NET application using the Internet
Information Services management console.

To view the script map for an ASP.NET Application

1.. Open the IIS management console, expand the local computer by clicking
the plus sign, and navigate to the folder that contains the ASP.NET
application.
2.. Right-click the folder and click Properties. The application's
Properties dialog box appears.
3.. On the Directory tab, click the Configuration button. The Application
Configuration dialog box appears.
4.. On the Mappings tab, select an ASP.NET application extension, such as
..asmx or .aspx.
The Executable Path column of the dialog box lists the path to the ASP.NET
ISAPI version used by the application. By default, the ASP.NET ISAPI is
installed in the following location:

systemroot\Microsoft.NET\Framework\versionNumber

The version number shown in the path indicates the version number of the
ASP.NET ISAPI used by the application. The ASP.NET ISAPI version determines
which version of the runtime is used by the application.

Updating Script Maps Using Aspnet_regiis.exe
To make it easier to reconfigure the script map for an ASP.NET application,
each installation of the .NET Framework comes with an associated version of
the ASP.NET IIS Registration tool (Aspnet_regiis.exe). Administrators can
use this tool to remap an ASP.NET application to the ASP.NET ISAPI version
associated with the tool.

Note Because Aspnet_regiis.exe is linked to a specific version of the
..NET Framework, administrators must use the appropriate version of
Aspnet_regiis.exe to reconfigure the script map for an ASP.NET application.
Aspnet_regiis.exe only reconfigures the script map of an ASP.NET application
to the ASP.NET ISAPI version associated with the tool.
The tool can also be used to display the status of all installed versions of
ASP.NET, register the associated version of ASP.NET, create client-script
directories, and perform other configuration operations.

To use Aspnet_regiis.exe to update a script map for an ASP.NET application

1.. Open a command window. (Click Start, click Run, type cmd, and then
click OK.)
2.. Navigate to the directory of the Aspnet_regiis.exe version you want to
use. Remember that each version of the .NET Framework comes with its own
version. The file is usually located in the following directory:
systemroot\Microsoft.NET\Framework\versionNumber

3.. Use the -s or -sn option of Aspnet_regiis.exe along with the path to
the application to set up the script maps. The following shows a sample
command line that updates the script maps for an application called
SampleApp1.
Aspnet_regiis.exe -s W3SVC/1/ROOT/SampleApp1Application Pooling in IIS 6.0
IIS versions earlier than 6.0 use the ASP.NET process model (Aspnet_wp.exe).
Under the ASP.NET process model, each unique application version
automatically runs in a separate process at run time. All applications that
target the same version of the runtime share the same process (or processes
in Web garden mode). However, IIS 6.0 uses the IIS 6.0 process model
(w3wp.exe) and introduces a new isolation feature called application
pooling. Application pooling allows applications to run together in one or
more processes, as long as they share the same pool designation.
Applications that are assigned different application pools never run in the
same process.

When multiple versions of the .NET Framework are installed on a computer
that uses IIS 6.0, you might encounter the following error message in the
Application Event log.

It is not possible to run different versions of ASP.NET in the same IIS
process. Please use the IIS Administration Tool to reconfigure your server
to run the application in a separate process.
This error occurs when more than one version of ASP.NET is configured to run
in the same process. Different versions of the .NET Framework and runtime
cannot coexist side-by-side in the same process. Therefore, an ASP.NET
application that uses a particular version of the runtime must not share a
process with an application that uses a different version. This error
commonly occurs when two or more applications are mapped to different
versions of ASP.NET, but share the same application pool.

To use application pooling, first make sure IIS 5.0 isolation mode is
disabled. Next, navigate to the desired application in the Internet
Information Services management console and assign it an application pool.
If you want to isolate your application from the existing application pools,
create a new pool designation.

Note The process isolation for each application is configured manually.
To disable IIS 5.0 isolation mode in IIS 6.0

1.. Open the IIS management console and expand the local computer by
clicking the plus sign.
2.. Right-click the Web Sites folder and click Properties.
3.. On the Service tab, clear the Run Web service in IIS 5.0 isolation
mode check box.
To assign a pool designation to an ASP.NET application in IIS 6.0

1.. Open the IIS management console, expand the local computer by clicking
the plus sign, and navigate to the folder that contains the ASP.NET
application.
2.. Right-click the application and then click Properties. The
application's properties dialog box appears.
3.. On the Directory tab, select the desired pool designation from the
Application Pool list.
To create a pool designation in IIS 6.0

1.. Open the IIS management console and expand the local computer by
clicking the plus sign.
2.. Right-click the Application Pools folder, point to New, and then click
Application Pool. The Add New Application Pool dialog box appears.
3.. Enter the new pool designation in the Application pool text box, and
then click OK.
Nov 18 '05 #4

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

Similar topics

2
by: Carlos G Benevides | last post by:
I have a ASP.Net web application that has two assemblies that run under com+. Under Windows 2000 the two assemblies are added to com+ automatically when instantiated from the web site. For this...
0
by: ksams | last post by:
Hi Hope this mail finds you in the best of health and in good sprit. I have a problem with Web Service in a Windows 2000 Advanced Serve Machine. I have a WebService calling a Method in a...
4
by: wardellcastles | last post by:
I am running SQLServer 2000 SP3 with MDAC 2.8. On instances created via MSDE, I am unable to create the first step in a job. Instances created with SQLServer 2000, this problem does not occur....
1
by: Reza Sadeghi | last post by:
Hi I am getting this error when I tried to browse any asp.net in visual studio.net. I can build the project but when I try to run and debug the project I get error message that "Unable to start...
2
by: TM | last post by:
When I run an ASP.Net application I am getting the following error: "Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged."...
16
by: Serdar Kalaycý | last post by:
Hi everybody, My problem seems a bit clichè but I could not work around. Well I read lots of MSDN papers and discussions, but my problem is a bit different from them. When I tried to run the...
22
by: EP | last post by:
When running my asp.net hosting service (asp.net without IIS), on server 2003 with IIS not installed, I get the following when trying to process a request. "System.DllNotFoundException: Unable to...
4
by: Abi | last post by:
We able to generate this error in our test environment and were able to research this enough to understand that the issue is NOT with an abject that needs to be serialized but rather as the stack...
1
by: Jeppe Jespersen | last post by:
On my development maching, I have three different SQL Server instances: ..\SQL2000 ..\SQL2005EXPRESS ..\SQL2005 When i try to debug a stored procedure in Query Analyzer, I get the following...
0
by: na | last post by:
My ASP.Net 2.0 web site has a Data.xsd schema. I just added a table adapter to the collection and configured it to use an existing SQL 2000 stored proc. When I tried to preview data from the...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
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...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
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...

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.