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
How to make paging concepts in datagrid in ASP.NET?
Why and where this web.config file is used?
What is application in asp net?
What is ispostback property?
What is the life-span of the items in the viewstate?
What is base class of button control in .net?
What is use of Master Page in ASP.NET web pages?
What are ASHX files?
Explain in what order a destructors is called.
What are the three parts of an http response?
What are the parts of an http response?
What is a server cookie?
What is the difference between mvc (model-view-controller) and mvp (model-view-presenter)? : asp.net mvc
What are validator? Name the validation controls in asp.net?
Explain difference between dataset and datareader?