473,468 Members | 4,274 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Deploying ASP.NET 2.0 Applications in IIS 6.0

Hi all,

Where can I find how to deploy a xml web service, build with .NET Framework
2.0 ? For Windows 2003 Server (IIS 6.0) or Windows XP Professional (IIS
5.1).

I found only Win 2003 Server with .NET 1.1 :

http://technet2.microsoft.com/Window....mspx?mfr=true

http://www.microsoft.com/technet/pro....mspx?mfr=true

Is the same for .NET 2.0 ??

A link for ASP.NET 2.0 and IIS 5.1 ?

Thanks for any advice
Jan 9 '07 #1
4 21108
Hello Bragadiru,

For ASP.NET 1.X or 2.0(on windows 2003/IIS6 or windows XP/IIS5), they all
rely on the .net framework runtime. Therefore, suppose you have a clean
machine which only has IIS installed and want to deploy ASP.NET 1.X or 2.0
application, you need to do the following things:

1. Install the corresponding .net framework runtime on the machine(depend
on whether the ASP.NET application is 1.1 or 2.0)

2. After the .net framework runtime has been installed, the ASP.NET should
automatically be registered in IIS. But you can still manually use the
"aspnet_regiis -ir" command to register it.

#ASP.NET IIS Registration Tool (Aspnet_regiis.exe)
http://msdn2.microsoft.com/en-us/lib...8h(vs.71).aspx

Also, if you have installed both .net framework 1.x and 2.0 on the machine.
For each IIS web application(application virtual dir), both ASP.NET 1.x and
ASP.NET 2.0 can be used. You need to make sure your web application's
virtual dir has been configured to the correct version. You can use
aspnet_regiis command line to configure it. Or directly use the GUI console
(inetmgr) to set the ASP.NET version.

#How to: Configure ASP.NET Applications for an ASP.NET Version
http://msdn2.microsoft.com/en-us/library/1kdfe21k.aspx

If you have anything unclear or any further questions, please feel free to
let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Jan 10 '07 #2
Hi Steven,

Thaks a lot.

I need to make an installation guide for a WebServiceApp, written in .NET
2.0. =The user must install my asp.net 2.0 app properly, including IIS.
I found how to only for Win 2003 Server Release 1 and .NET 1.1, not .NET
2.0.
http://technet2.microsoft.com/Window....mspx?mfr=true

Since I have only a Windows 2000 machine, I need a document like that for
Windows XP Pro + Win 2003 Server R1 or R2.

"Steven Cheng[MSFT]" <st*****@online.microsoft.comwrote in message
news:ly**************@TK2MSFTNGHUB02.phx.gbl...
Hello Bragadiru,

For ASP.NET 1.X or 2.0(on windows 2003/IIS6 or windows XP/IIS5), they all
rely on the .net framework runtime. Therefore, suppose you have a clean
machine which only has IIS installed and want to deploy ASP.NET 1.X or 2.0
application, you need to do the following things:

1. Install the corresponding .net framework runtime on the machine(depend
on whether the ASP.NET application is 1.1 or 2.0)

2. After the .net framework runtime has been installed, the ASP.NET should
automatically be registered in IIS. But you can still manually use the
"aspnet_regiis -ir" command to register it.

#ASP.NET IIS Registration Tool (Aspnet_regiis.exe)
http://msdn2.microsoft.com/en-us/lib...8h(vs.71).aspx

Also, if you have installed both .net framework 1.x and 2.0 on the
machine.
For each IIS web application(application virtual dir), both ASP.NET 1.x
and
ASP.NET 2.0 can be used. You need to make sure your web application's
virtual dir has been configured to the correct version. You can use
aspnet_regiis command line to configure it. Or directly use the GUI
console
(inetmgr) to set the ASP.NET version.

#How to: Configure ASP.NET Applications for an ASP.NET Version
http://msdn2.microsoft.com/en-us/library/1kdfe21k.aspx

If you have anything unclear or any further questions, please feel free to
let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

==================================================

This posting is provided "AS IS" with no warranties, and confers no
rights.

Jan 12 '07 #3
Hello Bragadiru,

The reason why you only found reference on configure ASP.NET 1.1 on windows
2003 server is that windows 2003 server has .net framework 1.1 as built-in
component. Therefore, you can install .net framework 1.1/ASP.NET 1.1 from
windows components(in IIS components from add/remove components). For
windows 2000/XP, no .net framework is contained in built-in components.

Also, since your ASP.NET application is of 2.0 version, for all those
server versions(xp, 2000, 2003), you need to follow the complete steps
below:

1. check installation of IIS server

2. check installation of .net framework 2.0 runtime

3. check whether ASP.NET 2.0 has been reigstered in IIS, you can use
"aspnet_regiis" tool to manually register it.

If you have any more specific questions on any of these steps, please feel
free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no rights.
Jan 15 '07 #4
Thanks Steven.
"Steven Cheng[MSFT]" <st*****@online.microsoft.comwrote in message
news:b8**************@TK2MSFTNGHUB02.phx.gbl...
Hello Bragadiru,

The reason why you only found reference on configure ASP.NET 1.1 on
windows
2003 server is that windows 2003 server has .net framework 1.1 as built-in
component. Therefore, you can install .net framework 1.1/ASP.NET 1.1 from
windows components(in IIS components from add/remove components). For
windows 2000/XP, no .net framework is contained in built-in components.

Also, since your ASP.NET application is of 2.0 version, for all those
server versions(xp, 2000, 2003), you need to follow the complete steps
below:

1. check installation of IIS server

2. check installation of .net framework 2.0 runtime

3. check whether ASP.NET 2.0 has been reigstered in IIS, you can use
"aspnet_regiis" tool to manually register it.

If you have any more specific questions on any of these steps, please feel
free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
This posting is provided "AS IS" with no warranties, and confers no
rights.


Jan 18 '07 #5

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

Similar topics

2
by: pieter.breed | last post by:
Hi All, The company I work for has traditionally used COM/ActiveX for the solutions that it provides. We are in the process of moving to .NET and a few applications have been written in VB.NET...
1
by: Mister_d | last post by:
When deploying a solution using the Access 2003 runtime engine, do you have to use the packaging wizard that comes with the Access 2003 Developer Extentions, or can you use other packaging software...
2
by: Ann Marinas | last post by:
Hi All! I am kinda confused with deploying a dotnetfx & MDAC together with my .NET applications. I was reading the "Redistributing the .NET Framework" on MSDN...
10
by: Gerben van Loon | last post by:
Hi there, hope someone can help me on this: I'm planning to deploy several ASP.NET projects to a production server. Normally I used the "Project / Copy project" option in VS.NET, but to this...
2
by: Tom N | last post by:
Here's is our configuration ..Net Framework 1.1, Windows 2000, AppCenter 200 Our developers use XCOPY to deploy to the AppCenter NLB cluster (obviously, to the node that is the controller ...
4
by: john | last post by:
I think some of the changes to Asp.net are rediculous. Take the ability to deploy source code to production that is compiled on the fly. If this is such a great model, why not distribute your...
10
by: Bryan Dickerson | last post by:
I fairly have my Web Service working the way that I want, so my next step will be to deploy it on a server. Do I just add a deployment/install project, build it and install it on the server? ...
0
by: E Jensen | last post by:
I am trying to deploy a .NET 2.0 Application to the network. However, I have run into the Runtime Security Policy problem. The whole point of deploying to the network instead of to each user's...
0
by: steve | last post by:
H I new in deploying applications with visual studio 2005. I've used the setup wizard for a project when the user deploys the project I need to now where the user has put it. (path of the...
6
by: Ryan | last post by:
Is there any way to save a VB 2005 created application as an .MSI install file? The only method I see is to publish as a .EXE. Curious because I want to push out an application with Group Policy....
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:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.