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

.NET (Core and Framework)

 
Questiondoes web servise is where i sould use server side chat program? Pin
yuvalda110-Feb-07 5:59
yuvalda110-Feb-07 5:59 
AnswerRe: does web servise is where i sould use server side chat program? Pin
Dave Kreskowiak10-Feb-07 8:22
mveDave Kreskowiak10-Feb-07 8:22 
Questionmultyplayers games using a server client communication Pin
yuvalda110-Feb-07 0:19
yuvalda110-Feb-07 0:19 
QuestionMultiple Versions of .NET Framework Pin
Rajaraman Soundararajan9-Feb-07 18:38
Rajaraman Soundararajan9-Feb-07 18:38 
AnswerRe: Multiple Versions of .NET Framework Pin
Christian Graus9-Feb-07 18:44
protectorChristian Graus9-Feb-07 18:44 
GeneralRe: Multiple Versions of .NET Framework Pin
Rajaraman Soundararajan10-Feb-07 6:02
Rajaraman Soundararajan10-Feb-07 6:02 
GeneralRe: Multiple Versions of .NET Framework Pin
Christian Graus10-Feb-07 10:35
protectorChristian Graus10-Feb-07 10:35 
GeneralRe: Multiple Versions of .NET Framework Pin
Mike Dimmick11-Feb-07 23:37
Mike Dimmick11-Feb-07 23:37 
I'm sorry, Christian, but you're wrong: different 'web applications' can be run with different .NET versions. However, all web applications sharing a worker process (pool) must have the same .NET version.

A 'web application' differs from a virtual directory, and has a different icon (IIS 5.x uses an open box icon rather than a folder icon; IIS 6.0 uses a 'gear' icon rather than a folder). To convert a folder into a web application, click Create under 'Application Settings' in the folder's properties in the IIS management console.

In IIS 5.x (Windows 2000 and XP), this is automatic - the appropriate version of the ISAPI Filter is loaded depending on what the metabase has configured, which then loads the appropriate worker (aspnet_wp.exe) process. ASP.NET 2.0 adds a new ASP.NET page to the application's property sheet which permits the version to be selected. If this page isn't present, ASP.NET 2.0 is probably not installed correctly. To install it, but keep any existing web applications using ASP.NET 1.1, run aspnet_regiis -ir.

The IIS 5.x process model supports in-process, shared process or dedicated process hosting. All applications set to 'shared process' use the same dllhost.exe worker process. However, ASP.NET always creates its own worker processes - your code does not run in dllhost.exe.

In IIS 6.0, the worker process (w3wp.exe) has native support for ASP.NET hosting. Web applications can run in different 'application pools'. An application pool uses at least one process, and potentially more than one, to run the set of applications in the pool. However, the ASP.NET version required for each application is not checked. Only one version of the .NET CLR can be loaded into a process. If you configure an application pool with a set of applications that require different versions, you will have problems as the first application to load into a worker process dictates which version of the CLR is loaded. It's best to keep your .NET 2.0 applications in a separate pool from your .NET 1.1 applications to avoid problems with CLR version mismatches.

Stability. What an interesting concept. -- Chris Maunder

GeneralRe: Multiple Versions of .NET Framework Pin
Christian Graus13-Feb-07 18:09
protectorChristian Graus13-Feb-07 18:09 
AnswerRe: Multiple Versions of .NET Framework Pin
Mike Dimmick11-Feb-07 23:44
Mike Dimmick11-Feb-07 23:44 
AnswerRe: Please give me some Idea if know about it Pin
Christian Graus9-Feb-07 18:18
protectorChristian Graus9-Feb-07 18:18 
QuestionHow to reorder grid columns Pin
AndrusM9-Feb-07 8:05
AndrusM9-Feb-07 8:05 
AnswerRe: How to reorder grid columns Pin
led mike9-Feb-07 9:28
led mike9-Feb-07 9:28 
QuestionRubi on Rails Pin
supramido9-Feb-07 6:22
supramido9-Feb-07 6:22 
AnswerRe: Rubi on Rails Pin
Dave Kreskowiak9-Feb-07 7:28
mveDave Kreskowiak9-Feb-07 7:28 
GeneralRe: Rubi on Rails Pin
Christian Graus9-Feb-07 18:46
protectorChristian Graus9-Feb-07 18:46 
GeneralRe: Rubi on Rails Pin
Dave Kreskowiak10-Feb-07 5:04
mveDave Kreskowiak10-Feb-07 5:04 
GeneralRe: Rubi on Rails Pin
Paul Conrad11-Feb-07 17:51
professionalPaul Conrad11-Feb-07 17:51 
AnswerRe: Rubi on Rails Pin
led mike9-Feb-07 9:05
led mike9-Feb-07 9:05 
GeneralRe: Rubi on Rails Pin
Dave Kreskowiak9-Feb-07 9:06
mveDave Kreskowiak9-Feb-07 9:06 
GeneralRe: Rubi on Rails Pin
led mike9-Feb-07 9:26
led mike9-Feb-07 9:26 
GeneralRe: Rubi on Rails Pin
Dave Kreskowiak9-Feb-07 9:29
mveDave Kreskowiak9-Feb-07 9:29 
Questionwindows sevice... Pin
PavanPareta9-Feb-07 1:52
PavanPareta9-Feb-07 1:52 
AnswerRe: windows sevice... Pin
led mike9-Feb-07 9:07
led mike9-Feb-07 9:07 
Questionsend sms using Edge Technology Pin
PavanPareta8-Feb-07 21:56
PavanPareta8-Feb-07 21:56 

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.