| Back to Questions Page |
| |
| Question |
Are com components serializable? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Microsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | No  |
| Ananda Babu |
| |
| |
| Answer | yes beacuse when server tranfer data that will in searlize
and any format they used which seralized data in com  |
| Vipin |
| |
| |
| Question |
Disadvantages of com components?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Microsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | COM components are not extensible and needs registration
while used.  |
| Abhishek Maitrey |
| |
| |
|
|
| |
| Answer | Main disadvantage of using com components is dll hell problem.  |
| Kavitha |
| |
| |
| Question |
What are CCW and RCW? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Tech-Mahindra |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | These are business objects(Components).  |
| Manpreet Singh |
| |
| |
| Answer | ccw is called com callable wrapper where as rcw is called as
runtime callable wrapper.  |
| Prakash.rout |
| |
| |
| Answer | CCW is the Com Callable Wrapper. This will buily a bridge
between the Com Component and the .Net Component
RCW is the Runtime Callable Wrapper. This will built a
bridge between .Net Component and Com Component.converts
the .Net data type to Com Data type  |
| Sankar |
| |
| |
| Answer | RCW :- we are using COM Component in .Net application
directly we can't call. That's way we need to create a
wrapper trough Tlbimp.exe read COM classes and interface in
assembly metadata.  |
| Vijaya Bhaskar |
| |
| |
| Answer | Com Callable Wrapper
1)Create Assembly and compile with strong name.
2)Register Assembly using regasm <assembly name>
3)Register Assembly in GAC using gacutil /i <assembly name>
4)Use tlbexp <assemblyname.dll> to export Assembly as Type
Library for COM.
Runtime Callable Wrapper
1)Create Public Key Token file using sn.exe –k
<keyfilename.snk>
2)Use tlbimp <TypeLibFileName> /keyfile: <keyfilename.snk>
/out: <AssemblyName.dll>
3)Register Imported Assembly in GAC using gacutil /i
<AssemblyName.dll>  |
| Muruganantham |
| |
| |
| Answer | Com Callable Wrapper(ccw) build a bridge
between the Com Component and the .Net Component
Runtime Callable Wrapper(rcw) will built a
bridge between .Net Component and Com Component.converts
the .Net data type to Com Data type  |
| Abhishek Mishra |
| |
| |
| Question |
what are wrapper Classes? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Tech-Mahindra |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | this class nothing but a clone class  |
| Ravi |
| |
| |
| Answer | Wrapper classes are used to encapsulate values of primitive
types in objects, so that they can be passed around in the
same manner.  |
| Vinforum |
| |
| |
| Question |
Is the COM architecture same as .Net architecture? What is
the difference between them ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | com architecture needs registratation & classids where as .net
architecture does not need registration & classids  |
| Rcnivas |
| |
| |
| Answer | no
com dll doesnot conatain metadata and it supports
registration & classids
where as .net dll contains metadata and does not support
registration and classids  |
| Rcnivas |
| |
| |
| Answer | In Com no version is maintained but in .net different
version of the component are maintained in GAC.  |
| Kavitha |
| |
| |
| Question |
What is the new three features of COM+ services, which are
not there in COM (MTS) ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 1) Automatic Transaction
2) Distributed Transactions
3) Object Pooling  |
| Abhishek Maitrey |
| |
| |
| Answer | 1 load balancing
2 queue  |
| Shekar |
| |
| |
| Question |
What is use of ContextUtil class? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | ContextUtil is the preferred class to use for obtaining
COM+ context information.  |
| Swapna |
| |
| |
| Answer | ContextUtil is used for providing the Context utilization
for JIT Activation.  |
| Virat |
| |
| |
| Question |
How will you register com+ services? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | by using component services found in Administrative tools.  |
| Vinforum |
| |
| |
| Answer | go to Run and type 'Regsvr32 "\dll name" and press Enter  |
| Vijay |
| |
| |
| Question |
How does you handle this COM components developed in other
programming languages in .NET? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | by creating typelibraries & wrapper classes  |
| Rcnivas |
| |
| |
| Question |
What is CCW (COM Callable Wrapper) ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | A proxy object generated by the common language runtime so
that existing COM applications can use managed classes,
including .NET Framework classes, transparently.  |
| Swapna |
| |
| |
| Question |
How do you make a NET component talk to a COM component? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | To enable the communication between COM and .NET
components, the .NET Framework generates a COM Callable
Wrapper (CCW).
The CCW enables communication between the calling COM code
and the managed code. It also handles conversion between
the data types, as well as other messages between the COM
types and the .NET types.  |
| Swapna |
| |
| |
| Question |
Which namespace do the classes, allowing you to support COM
functionality, are located? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | System.EnterpriseServices  |
| Swapna |
| |
| |
| Question |
Define manageability? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Deployment and maintenance of the application is as
efficient and painless as possible.  |
| Swapna |
| |
| |
| Question |
Define security? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | The application is never disrupted or compromised by the
efforts of malicious or ignorant users.  |
| Swapna |
| |
| |
| Question |
Define availability? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Users can depend on using the application when needed.  |
| Swapna |
| |
| |
|
| |
|
Back to Questions Page |