Describe and In Process Vs Out of Process component. Which
is faster?
Answer Posted / vivek
An in-process component is implemented as a DLL, and runs in
the same process space as its client app, enabling the most
efficient communication between client and component.Each
client app that uses the component starts a new instance of it.
An out of process component is implemented as an EXE, and
unlike a dll, runs in its own process space. As a result,
exe’s are slower then dll’s because communications between
client and component must be marshalled across process
boundaries. A single instance of an out of process component
can service many clients.
| Is This Answer Correct ? | 16 Yes | 4 No |
Post New Answer View All Answers
What is the use of express session?
How to use multiple scriptmanager controls in a web page?
What is request and response in asp.net?
Mention few asp.net validators.
How you can access the values from the Repeater control in ASP.NET?
what is AutoEventWireUp and what is the use of This property explain in details?
What is globalization and localization in asp net?
how to elimainte the similar data from the different tables
What is css and what is it used for?
How you will handle session when deploying application in more than a server?
What is voluum?
Is asp.net 64-bit enabled? How?
What is http response header?
How can we create a website?
What is the use of placeholder control? Can we see it at runtime?