IIS and .Net 2.0

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have three web site on one Windows 2003 server. I tried to configure one to
use the 2.0 framework. That doesn't work. The error message I got is that
multiple web site can't use the same process to run different version of the
framework. Next I create a new application pool. I thoght I could move one
website into a separate application pool.
How can I move a web site into a separate process?
 
I don't have Win 2003 with me right now, so I will have to go for worst
case:

1. Create new pool
2. Create new site in new pool
3. XCopy bits from old site to new site
4. Set pool up for 2.0

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***********************************************
Think Outside the Box!
***********************************************
 
Gregory,
A new site in a new pool makes sense, but I have no idea how to accomplish
that.
Arne.
 
I found it.
In the properties for web site I found a drop down list for application
pools in the Home directory tab.
 
I do not have a Windows 2003 server accessible here, so I am flying blind
(from memory).

First open the ISM (Internet Services Manager) admin tool. I believe you can
right click on the application pools to create a new one. You then right
click on the pool and choose either new virtual directory (most likely
unless you have additional IP addresses bound to the NIC) or new website.
That will place the app in that pool.

I believe you can also switch this in the tab with the directory (Home
Directory or Virtual Directory? or similar). Find the one with the app
information at the bottom of the tab and choose a pool.

To then set, the aspnet_regiis from the proper version is the best bet,
although it forces you to understand website directory trees. You can also
manually set each of the handlers to the 2.0 versions under the application
configuration, or use the new ASP.NET tab that should install with 2.0.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***********************************************
Think Outside the Box!
***********************************************
 
Back
Top