473,394 Members | 1,866 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.

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 21106
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
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.