Click here to Skip to main content
15,910,211 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how to work with sln and vcproj files Pin
Chris Richardson16-Nov-02 11:35
Chris Richardson16-Nov-02 11:35 
GeneralRe: how to work with sln and vcproj files Pin
Stephane Rodriguez.16-Nov-02 20:00
Stephane Rodriguez.16-Nov-02 20:00 
GeneralRe: how to work with sln and vcproj files Pin
Chris Richardson18-Nov-02 7:00
Chris Richardson18-Nov-02 7:00 
Generalportability 2 Pin
Ian Dermott16-Nov-02 2:58
sussIan Dermott16-Nov-02 2:58 
GeneralRe: portability 2 Pin
ian mariano16-Nov-02 9:03
ian mariano16-Nov-02 9:03 
GeneralRe: portability 2 Pin
ian mariano16-Nov-02 9:10
ian mariano16-Nov-02 9:10 
GeneralIIS: a theoretical question - processes and threads Pin
devvvy16-Nov-02 2:48
devvvy16-Nov-02 2:48 
GeneralRe: IIS: a theoretical question - processes and threads Pin
ian mariano16-Nov-02 8:42
ian mariano16-Nov-02 8:42 
To quote an MSDN article:

"IIS uses an I/O thread pool to process all incoming requests. Requests for static files (.htm, .jpg, etc.) are satisfied immediately, while requests for dynamic content are dispatched to the appropriate ISAPI extension DLL. The Active Server Pages extension uses a worker thread pool to execute ASP pages. Because ASP is COM-based, all sorts of components end up executing in our process. This is a mixed blessing. It's wonderful for developers, because it allows easy reuse of components, makes ASP marvelously flexible, and has made ASP and IIS a big success. However, this flexibility has caused us performance problems. Many of these components were written for the desktop, and many of the components created specifically for ASP were written by people who don't fully understand what it takes to write a high-performance server component.

The same is often true for ISAPI extensions and filters; the components interact badly with other components and they interact badly with different instances of themselves.

All of the following apply to IIS; most of them apply to other kinds of server applications too."

See Server Performance and Scalability Killers[^]

With IIS, you can set up your ASP application to run in various "modes" of safety. Usually, I opt to run applications isolated, which means IIS launches the ASP app in it's own process so you won't kill the server if things go amok.

The article link above should give you a good start, as well as this one: Agility in Server Components[^]

"The greatest danger to humanity is humanity without an open mind."
  - Ian Mariano - http://www.ian-space.com/

Generalchanging frame window looks Pin
B4u16-Nov-02 0:52
B4u16-Nov-02 0:52 
GeneralRe: changing frame window looks Pin
dabs16-Nov-02 2:42
dabs16-Nov-02 2:42 
Generalswap values of two variable Pin
Anonymous16-Nov-02 0:24
Anonymous16-Nov-02 0:24 
GeneralRe: swap values of two variable Pin
moliate16-Nov-02 0:29
moliate16-Nov-02 0:29 
GeneralRe: swap values of two variable Pin
NormDroid16-Nov-02 7:09
professionalNormDroid16-Nov-02 7:09 
GeneralRe: swap values of two variable Pin
moliate16-Nov-02 8:41
moliate16-Nov-02 8:41 
GeneralRe: swap values of two variable Pin
KevinHall16-Nov-02 8:00
KevinHall16-Nov-02 8:00 
GeneralRe: swap values of two variable Pin
moliate16-Nov-02 8:34
moliate16-Nov-02 8:34 
GeneralWindow being minimized Pin
S O S16-Nov-02 0:07
S O S16-Nov-02 0:07 
GeneralRe: Window being minimized Pin
Redeemer-dk16-Nov-02 0:18
Redeemer-dk16-Nov-02 0:18 
GeneralRe: Window being minimized Pin
Gary R. Wheeler16-Nov-02 2:41
Gary R. Wheeler16-Nov-02 2:41 
QuestionIs it possible to enumrate all the system's DirectShow filters? Pin
Redeemer-dk15-Nov-02 23:56
Redeemer-dk15-Nov-02 23:56 
AnswerRe: Is it possible to enumrate all the system's DirectShow filters? Pin
Joaquín M López Muñoz16-Nov-02 1:41
Joaquín M López Muñoz16-Nov-02 1:41 
GeneralRe: Is it possible to enumrate all the system's DirectShow filters? Pin
Redeemer-dk16-Nov-02 2:16
Redeemer-dk16-Nov-02 2:16 
GeneralBuilding a statically linked MFC-App with VC7 Pin
Rainer Mangold15-Nov-02 23:55
Rainer Mangold15-Nov-02 23:55 
GeneralRe: Building a statically linked MFC-App with VC7 Pin
lbc16-Nov-02 0:33
lbc16-Nov-02 0:33 
GeneralRe: Building a statically linked MFC-App with VC7 Pin
Rainer Mangold16-Nov-02 6:29
Rainer Mangold16-Nov-02 6:29 

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.