what is the diff between inprocess and out of process ?
Answer / guest
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 ? | 7 Yes | 0 No |
How to control the file?
What are the types of API Types?
Write the Steps in Creating an ActiveX Control?
What is the difference Between ADO and other data access objects?
Which method is preferred to save data like database to the disk?
Can Redim be used to declare a new array ?
What is Internet Explorer and its uses?
How will you retain the values of existing elements in a dynamic array when you want to alter the array size?
what component is used in vb to link to the database?
State about the different types of visual basic data?
How does a DCOM component know where to instantiate itself?
Difference between Linked Object and Embedded Object?