• Setup 64bit Windows Server for Running ASP.NET 1.1 and ASP.NET 2.0 at the Same Time


    Introduction

    There are many .NET Web applications built on ASP.NET 1.1 and 2.0, which run on the Windows server at the same time. The special case is in the Web site Main: there are some ASP.NET 1.1 projects built into the site: Proj1.1, etc. and some ASP.NET 2.0 projects are added to it: Proj2.0, etc.

    • Main (1.1)
      • Proj1.1 (1.1)
      • Proj2.0 (2.0)

    On a 32-bit Windows server, we can setup 1.1 or 2.0 Web applications by “ASP.NET Tab” in Internet Information Services (IIS) Manager. On a 64-bit (x64) Windows server, there are some issues related to running ASP.NET 1.1 and ASP.NET 2.0 at the same time, for example, ASP.NET tab is missing. This article describes some issues and their solutions.

    If running ASP.NET 1.1 and ASP.NET 2.0 on the same X64 server at the same time, we must run IIS in 32-bit mode [1]. 64-bit server doesn't allow us to install ASP.NET 2.0 of 32-bit mode, which means we need to install ASP.NET 1.1 of 32-bit mode and ASP.NET 2.0 of 64-bit mode. After installing them, we need to enable the 32-bit mode on X64.

    1. Install IIS on Windows Server 2003 R2 x64
      Control Panel | Add or Remove Programs | Add/Remove Windows Components | Add the component “Application Server”

      image001.jpg

      It prompts for convlog.exe. You can find it in \WINDOWS\ServicePackFiles\amd64.

      image001.jpg

      It prompts for iisback.vbs. You can select IISBACK.VB_ in c:\amd64.

      image001.jpg
    2. Download and install the 32-bit .NET 1.1 and 64-bit .NET 2.0 packages.

      The packages can be found in:

      1. Microsoft .NET Framework Version 1.1 Redistributable Package
      2. The .NET Framework Version 2.0 Redistributable Package x64 (64 Bit)
    3. Enable ASP.NET 1.1 and ASP.NET 2.0:

      1. Enable the 32-bit mode on x64 Windows server
        cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1
      2. Install the version of ASP.NET 1.1 and the script maps at the IIS root and under
        %SYSTEMROOT%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe –i
      3. Install the version of ASP.NET 2.0 (32-bit) and the script maps at the IIS root and under
        %SYSTEMROOT%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe –i

      After installing ASP.NET 1.1 and 2.0, you will find them in IIS Manager | Web Service Extension. Then enable the following services: Active Server Pages, ASP.NET v1.1.4322, ASP.NET v2.0.50727 (32-bit), Internet Data Connector, and Service Side Includes.

      image001.jpg
    4. Setup ASP.NET 1.1 and 2.0 applications

      After creating the virtual directories for Main etc. and different Application Pools for ASP.NET 1.1 and 2.0, you will find the ASP.NET tab missing in IIS Manager. Microsoft does not fix “Missing ASP.NET tabs on Windows x64 Servers”. But there is a workaround [2]. In our case, configure Main using ASP.NET 1.1 version, which also applies to Proj1.1: %SYSTEMROOT%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -s W3SVC/1/ROOT/Main.

      Then, configure Proj2.0 to use ASP.NET 2.0 versions: %SYSTEMROOT%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -s W3SVC/1/ROOT/Main/Proj2.0.

  • 相关阅读:
    Google开源单元測试框架Google Test:VS2012 配置
    ubuntu16.04 uninstall cuda 9.0 completely and install 8.0 instead
    ubuntu 16.04 安装cuda的方法
    ubuntu垃圾文件清理方法
    行人检测资源(下)代码数据
    行人检测资源(上)综述文献
    开源深度学习架构Caffe
    python pip 安装库文件报错:pip install ImportError: No module named _internal
    Canny算子
    vmware中nat模式中使用静态ip后无法上网的问题
  • 原文地址:https://www.cnblogs.com/huqingyu/p/1415083.html
Copyright © 2020-2023  润新知