What is In-proc?

Answers were Sorted based on User's Feedback



What is In-proc?..

Answer / zubeir

There are two kind of components: in-process and out-of-
process. This is identified by where the component runs
when it is invoked. That is, (i) if a component sits inside
the calling process's address space, it is an in-process
component and (ii) if a component runs in its own address
space when invoked, it is an out-of-process component.
The data transmission between out-of-process component and
the calling process must be carried out by some IPC
mechanism while it is not required for the other one.

Is This Answer Correct ?    14 Yes 2 No

What is In-proc?..

Answer / ashish

In-proc server is a com dll, when you create a com dll
using ATL or other technology, then the dll loads in the
process space of the client applications process space that
is called in-proc server.

Is This Answer Correct ?    11 Yes 4 No

What is In-proc?..

Answer / guest

In-proc server is a COM component, when instance is the
server is loaded into the caller process space. In-Proc
server can be easily identified by .dll extension.

Out-of-Proc server is a COM component that run in its own
process space and for any instances created by the users, a
proxy is created within the users process space. Proxy is
responsible for interacting with the server to carry out
operation on behalf of the client. (.exe extension).

Is This Answer Correct ?    9 Yes 4 No

What is In-proc?..

Answer / chandrasekharreddy siddamreddy

In-proc servers always run calling application address
space.

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More COM DCOM Interview Questions

How does a DCOM component know where to instantiate itself?

1 Answers  


Which namespace do the classes, allowing you to support COM functionality, are located?

0 Answers  


C is aggregated by B, which in turn aggregated by A. Our client requested C. What will happen?

2 Answers  


Differentiate normal DLL to COM DLL

7 Answers   Talisma,


What is reference counting in com?

0 Answers  






Suppose we have object b and aggregated object c (in- proc server), created by b. Can you access any interface of b from c? What?s the difference between aggregated and contained objects?

0 Answers  


Explain queued components.

2 Answers  


What is the difference, if any, between OLE and COM?

3 Answers  


Explain object pooling?

1 Answers   HCL,


how you call a dll as a COM dll.

2 Answers  


Can you explain what is dcom?

0 Answers  


Write a JCL to copy only selected members from a partitioned data set to another partitioned data set. (Use: IEBCOPY)

1 Answers   Wipro,


Categories