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

Deploying IIS 6.0 applciation to IIS 5.0 box.....

Hello All,
Question regarding application compatibility...

We have been developing an asp.net application and deployed to a test
environment consisting of
Windows server 2003 Web Edition, IIS 6.0 and MDAC 2.8 SP2.

Prior to production deployment, it was noticed (I know.....) that our
production server is in fact running Windows 2000 with IIS5.0

Will my 2003/IIS 6.0 application work with my Win2k/IIS5.0 setup?

I would assume not, but have been engaged by a developer that finds my
concerns with this discrepancy to be somewhat laughable.

Can any one provide me with a good answer, as I have looked and information
on this topic is lacking (probably because no one would consider doing what
my developer says is a piece of cake...)

Please help.

Any and all feedback is most welcome.

Thanks for your time.

B.
Nov 19 '05 #1
3 2511
Tam,

ASP.NET projects are compiled to MSIL before deployment, and it works as
long as the running platform supports .NET framework. (The .NET runtime will
take care of any discrepancies, sounds much like JVM things but a
development framework is responsible to keep the "common" functions behaves
the same across all platforms it declared to support, unless otherwise
specified.)

Because Win2k is supported by .NET framework v1.1, there is no reason
why your project developed on Win2k3 cannot run on Win2k unless your page
use some Win2k specific APIs like those concerned with ADs. (Of course IIS
settings may differs, but not for the DLL/ASPX files)

Regards,
Lau Lei Cheong

"Tam OShanter" <ta*@oshanter.com> ¼¶¼g©ó¶l¥ó·s»D:Sl*********************@fe04.news.e asynews.com...
Hello All,
Question regarding application compatibility...

We have been developing an asp.net application and deployed to a test
environment consisting of
Windows server 2003 Web Edition, IIS 6.0 and MDAC 2.8 SP2.

Prior to production deployment, it was noticed (I know.....) that our
production server is in fact running Windows 2000 with IIS5.0

Will my 2003/IIS 6.0 application work with my Win2k/IIS5.0 setup?

I would assume not, but have been engaged by a developer that finds my
concerns with this discrepancy to be somewhat laughable.

Can any one provide me with a good answer, as I have looked and
information on this topic is lacking (probably because no one would
consider doing what my developer says is a piece of cake...)

Please help.

Any and all feedback is most welcome.

Thanks for your time.

B.

Nov 19 '05 #2
Hi Tam:

You shouldn't face much of a problem. It's always good to test in the
same environment you'll be running in, but for the most part web apps
don't use APIs specific to either platform.

I've summarized a few differences between IIS 5 and IIS 6 here:
http://odetocode.com/Blogs/scott/arc...7/10/1925.aspx

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Thu, 14 Jul 2005 02:46:10 GMT, "Tam OShanter" <ta*@oshanter.com>
wrote:
Hello All,
Question regarding application compatibility...

We have been developing an asp.net application and deployed to a test
environment consisting of
Windows server 2003 Web Edition, IIS 6.0 and MDAC 2.8 SP2.

Prior to production deployment, it was noticed (I know.....) that our
production server is in fact running Windows 2000 with IIS5.0

Will my 2003/IIS 6.0 application work with my Win2k/IIS5.0 setup?

I would assume not, but have been engaged by a developer that finds my
concerns with this discrepancy to be somewhat laughable.

Can any one provide me with a good answer, as I have looked and information
on this topic is lacking (probably because no one would consider doing what
my developer says is a piece of cake...)

Please help.

Any and all feedback is most welcome.

Thanks for your time.

B.


Nov 19 '05 #3
Hi, Tam.

You should have no problems, as Lau Lei indicated.

Adding to his comments, I'd also make sure that your development
server running IIS 6.0 is set to IIS 5.0 Isolation Mode.

To configure IIS for IIS 5.0 isolation mode, in the IIS Manager,
expand the local computer, right-click Web Sites, and then click
Properties.

Click the Service tab, select the Run WWW service in IIS 5.0 isolation mode
check box, and then click OK. To start the WWW service, click Yes.

It will take a few seconds to restart in IIS 5.0 Isolation mode.

That way, you can mimic, very closely, what the expected
results will be when the application runs on W2K/IIS 5.0.

What this means is that your applications will, like they do in IIS 5,

1. have a dependency on Inetinfo.exe.

2. require Read Raw Data Filters

3. require to run under Dllhost.exe

Running in IIS 5.0 Isolation mode will allow you to load test
your application in IIS 6.0 under the similar conditions which it
will run under in IIS 5.0.


Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================

"Tam OShanter" <ta*@oshanter.com> wrote in message
news:Sl*********************@fe04.news.easynews.co m...
Hello All,
Question regarding application compatibility...

We have been developing an asp.net application and deployed to a test environment
consisting of
Windows server 2003 Web Edition, IIS 6.0 and MDAC 2.8 SP2.

Prior to production deployment, it was noticed (I know.....) that our production server
is in fact running Windows 2000 with IIS5.0

Will my 2003/IIS 6.0 application work with my Win2k/IIS5.0 setup?

I would assume not, but have been engaged by a developer that finds my concerns with
this discrepancy to be somewhat laughable.

Can any one provide me with a good answer, as I have looked and information on this
topic is lacking (probably because no one would consider doing what my developer says is
a piece of cake...)

Please help.

Any and all feedback is most welcome.

Thanks for your time.

B.

Nov 19 '05 #4

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

Similar topics

0
by: Sean Campbell | last post by:
Hi, My group have a ASP.NET based application ( currently running on 1.0.3705 ). Ideally, we would like to deploy new components(asp files/assemblies/db updates) into a live environment without...
1
by: Terry H | last post by:
Hi I am deploying a winforms app via the windows installer and a VS.Net 2003 setup and deploymnet project. At the moment, I am adding launch conditions for the .Net Framework 1.1 and MDAC 2.7...
1
by: dansan | last post by:
We have a webservice that we have been deploying using the deployment project in Visual Studio. Now we are trying to deploy this service to a server that has multiple sites. I have looked...
2
by: Flip | last post by:
I am deploying webapps using XP (IIS5) and deploying them to a Windows 2003 Server box (IIS6). So far so good. However, when I try to manage my w2k3 server from XP, I get an error message saying...
3
by: Rachel | last post by:
Hi, I am using the data access application block successfully in our development environment, however when I deploy to our testing server as Private Assemblies I keep getting the following ...
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: Dave | last post by:
Hello The application I'm building an installer for uses dlls which were developed originally in C. Since the application itself is developed in C#, these dlls were wrapped using SWIG....
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....
3
by: GaryDean | last post by:
This is really a licence question.... I want to deploy the version of Crystal Reports that comes with Visual Studio 2005 to a production server. Is there another license charge if the I'm...
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: 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: 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...
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
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
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...
0
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...

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.