A .NET conundrum

  • Thread starter Thread starter Robert Ginsburg
  • Start date Start date
R

Robert Ginsburg

I have created an ISAPI filter , the filter is a C++ mixed mode DLL
compiled against the .NET 2 framework. All of the functionality works,
however it appears that the mixed mode functionality seems to "lock" IIS
virtual server where it runs to the .NET 2 framework and .NET 1.X apps will
not work. In retrospect this seems to make sense, but I was wondering if
anyone had any inspired thoughts along these lines.

Thanks in advance
Robert
 
If you're using IIS 6, then you need to have separate application pools for
your 1.1 and 2.0 applications.
 
Back
Top