Click here to Skip to main content
15,888,325 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionWin32 Debug API Pin
chandni_chandrakant_maheta5-Jun-07 0:04
chandni_chandrakant_maheta5-Jun-07 0:04 
AnswerRe: Win32 Debug API Pin
Dave Kreskowiak5-Jun-07 4:02
mveDave Kreskowiak5-Jun-07 4:02 
GeneralRe: Win32 Debug API Pin
chandni_chandrakant_maheta5-Jun-07 4:16
chandni_chandrakant_maheta5-Jun-07 4:16 
GeneralRe: Win32 Debug API Pin
Ilya Verbitskiy5-Jun-07 4:28
Ilya Verbitskiy5-Jun-07 4:28 
QuestionIIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Leistath3-Jun-07 4:16
Leistath3-Jun-07 4:16 
AnswerRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Stefan Prodan3-Jun-07 4:39
Stefan Prodan3-Jun-07 4:39 
GeneralRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Leistath6-Jun-07 12:49
Leistath6-Jun-07 12:49 
AnswerRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Mike Dimmick6-Jun-07 12:39
Mike Dimmick6-Jun-07 12:39 
The fundamental problem here is that you can only load one version of the Common Language Runtime (CLR, the actual execution engine of the .NET Framework) into a process. The first version to load wins - subsequent attempts to load a different version are simply ignored.

IIS 6.0 uses the W3WP.EXE (W3 [World Wide Web] Worker Process) executable to run ASP.NET code. It knows how to host the CLR. IIS 5.x does not natively understand .NET and uses a different model, loading a DLL into its regular worker process, which in turn launches an ASPNET_WP.EXE process, but significantly, different versions of .NET launch their own separate worker processes so the clash does not occur.

So what you have to do is to ensure that the .NET 2.0 and .NET 1.1 applications do not share a worker process. You do this, as the other reply says, by defining a new application pool and assigning the .NET 2.0 applications to that. Or you can do it the other way round if you like, placing the 1.1 applications in the new application pool.

Stability. What an interesting concept. -- Chris Maunder

GeneralRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Leistath6-Jun-07 12:53
Leistath6-Jun-07 12:53 
GeneralRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Mike Dimmick7-Jun-07 3:12
Mike Dimmick7-Jun-07 3:12 
QuestionMake MarshalByRefObject thread-safe Pin
Stefan Prodan3-Jun-07 1:42
Stefan Prodan3-Jun-07 1:42 
Questionproblem in implementing sql server connection in windows service Pin
sid22-12-Jun-07 6:24
sid22-12-Jun-07 6:24 
AnswerRe: problem in implementing sql server connection in windows service Pin
Stefan Prodan3-Jun-07 1:41
Stefan Prodan3-Jun-07 1:41 
AnswerRe: problem in implementing sql server connection in windows service Pin
Dave Kreskowiak3-Jun-07 4:50
mveDave Kreskowiak3-Jun-07 4:50 
QuestionHow do I integrate CR XI with VS.NET 2003 ? Pin
Jeneesh K. Velayudhan1-Jun-07 19:52
Jeneesh K. Velayudhan1-Jun-07 19:52 
QuestionWhat is NUnit? Pin
rangaSL31-May-07 22:41
rangaSL31-May-07 22:41 
AnswerRe: What is NUnit? Pin
Colin Angus Mackay1-Jun-07 0:45
Colin Angus Mackay1-Jun-07 0:45 
GeneralRe: What is NUnit? Pin
Kevin McFarlane4-Jun-07 9:14
Kevin McFarlane4-Jun-07 9:14 
AnswerRe: What is NUnit? Pin
Christian Graus1-Jun-07 0:55
protectorChristian Graus1-Jun-07 0:55 
GeneralRe: What is NUnit? Pin
Paul Conrad1-Jun-07 7:13
professionalPaul Conrad1-Jun-07 7:13 
AnswerRe: What is NUnit? Pin
PavanPareta17-Jun-07 21:07
PavanPareta17-Jun-07 21:07 
Questiondiff b/w object and Object Pin
Nilesh Mitra31-May-07 18:35
Nilesh Mitra31-May-07 18:35 
AnswerRe: diff b/w object and Object Pin
Sathesh Sakthivel31-May-07 18:57
Sathesh Sakthivel31-May-07 18:57 
GeneralRe: diff b/w object and Object Pin
Colin Angus Mackay31-May-07 22:36
Colin Angus Mackay31-May-07 22:36 
AnswerRe: diff b/w object and Object Pin
Colin Angus Mackay31-May-07 22:35
Colin Angus Mackay31-May-07 22:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.