Describe and In Process Vs Out of Process component. Which
is faster?

Answers were Sorted based on User's Feedback



Describe and In Process Vs Out of Process component. Which is faster?..

Answer / swapna

An inprocess is one which runs in the same process area as
that of the client giving tha advantage of speed but the
disadvantage of stability becoz if it crashes it takes the
client application also with it.

Outprocess is one which works outside the clients memory
thus giving stability to the client, but we have to
compromise a bit on speed.

Inprocess is faster than outprocess.

Is This Answer Correct ?    24 Yes 0 No

Describe and In Process Vs Out of Process component. Which is faster?..

Answer / 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

More ASP.NET Interview Questions

What combination of methods are used to improve the speed of the fill() method of the DataAdapter? a) BeginFillData() and EndFillData() b) StartFillData() and EndFillData() c) BeginLoadData() and EndLoadData() d) StartLoadData() and EndLoadData()

2 Answers   Syntax Softtech, winfoware,


What is boxing?

8 Answers   IBM, Misys, Siebel Systems,


How would you implement inheritance using c#?

0 Answers  


What is the difference between Trace and Debug?

2 Answers   BirlaSoft,


In What Order Do The Events Of An Aspx Page Execute. As A Developer Is It Important To Undertsand These Events?

0 Answers   Siebel Systems,






COM+ Used ________________ Isolation Level

0 Answers   CTS,


Whats the use of @ Register directives ?

4 Answers  


Explain how inline and code behind is used differently ?

1 Answers   Siebel,


What is authentication in asp.net?

0 Answers  


How we can force all the validation controls to run?

0 Answers  


What is the maximum length of textbox

1 Answers  


How many types of sessions are there?

2 Answers  


Categories