472,127 Members | 2,043 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

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

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 20991
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 discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

2 posts views Thread by pieter.breed | last post: by
1 post views Thread by Mister_d | last post: by
2 posts views Thread by Ann Marinas | last post: by
10 posts views Thread by Gerben van Loon | last post: by
10 posts views Thread by Bryan Dickerson | last post: by
reply views Thread by steve | last post: by

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.