473,803 Members | 2,807 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2529
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.c om> ¼¶¼g©ó¶l¥ó·s»D: Sl************* ********@fe04.n ews.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 #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.c om>
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.c om> wrote in message
news:Sl******** *************@f e04.news.easyne ws.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 #4

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

Similar topics

0
1599
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 interuption. However, it appears that upon deploying new assemblies to \appbase\bin we immediately get 'Access is denied: xxx.dll' exceptions (where xxx.dll is the next .dll required for loading depending upon where the user happens to be).
1
1786
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 or higher, and am prompting the user to run the relevant setup files if they're missing. I'm including these setup files on the CD. I can't work out from the Data Access downloads page, which MDAC file I need
1
1742
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 everywhere in the deployement project to see where I can allow the person installing to choose the root, but I can't find anything. Is there a way to install in a desired root using the deployment project? or is Visual Studio installer more of a...
2
1339
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 I can't manage an IIS6 box from IIS5. Is anyone else seeing this? Can I take my w2k3 server CDs and install IIS6 on my XP box? Do I have to uninstall of IIS5 first? Thanks.
3
1904
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 Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
4
1644
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 source code with your Windows Forms apps too? John Powell
10
2153
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? TIA! -- TFWBWY...A
0
1425
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. Initially, the machine environment variables were set to enable code development; however, I am facing problem deploying the application. To work with these wrapped libraries, the application seems to access a specific dll, for instance, let's say the C...
6
5540
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. Thanks, Ryan
3
1824
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 licensed on the production server to run Visual Studio? -- Regards, Gary Blakely
0
9703
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9565
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10550
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10317
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10295
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6844
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5633
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3799
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2972
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.