ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 
Categories >> Software >> Microsoft-Related >> COM+
 
 


 

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
 
0
Ananda Babu
 
 
Answer
yes beacuse when server tranfer data that will in searlize 
and any format they used which seralized data in com
 
0
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.
 
4
Abhishek Maitrey
 
 
 
Answer
Main disadvantage of using com components is dll hell problem.
 
0
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).
 
0
Manpreet Singh
 
 
Answer
ccw is called com callable wrapper where as rcw is called as 
runtime callable wrapper.
 
3
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
 
2
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.
 
5
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 &#150;k
<keyfilename.snk> 
2)Use tlbimp <TypeLibFileName> /keyfile: <keyfilename.snk>
/out: <AssemblyName.dll> 
3)Register Imported Assembly in GAC using gacutil /i
<AssemblyName.dll>
 
0
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
 
0
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
 
0
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.
 
0
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
 
0
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
 
0
Rcnivas
 
 
Answer
In Com no version is maintained but in .net different
version of the component are maintained in GAC.
 
0
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
 
0
Abhishek Maitrey
 
 
Answer
1 load balancing
2 queue
 
0
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.
 
0
Swapna
 
 
Answer
ContextUtil is used for providing the Context utilization 
for JIT Activation.
 
0
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.
 
0
Vinforum
 
 
Answer
go to Run and type  'Regsvr32 "\dll name" and press Enter
 
0
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
 
0
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.
 
0
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.
 
0
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
 
0
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.
 
0
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.
 
0
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.
 
0
Swapna
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com