What are CCW and RCW?
Answers were Sorted based on User's Feedback
Answer / prakash.rout
ccw is called com callable wrapper where as rcw is called as
runtime callable wrapper.
Is This Answer Correct ? | 74 Yes | 5 No |
Answer / muruganantham
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>
Is This Answer Correct ? | 42 Yes | 4 No |
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
Is This Answer Correct ? | 35 Yes | 7 No |
Answer / vijaya bhaskar
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.
Is This Answer Correct ? | 23 Yes | 3 No |
Answer / sheena
CCW-com callable wrapper....
provides interface between com client and .net componenet
RCW-Runtime callable wrappper...
provides interface between .net client and com component
Is This Answer Correct ? | 15 Yes | 2 No |
Answer / abhishek mishra
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
Is This Answer Correct ? | 11 Yes | 2 No |
Answer / srinivasareddy. varikuti
1.Com Callable Wrapper build a bridge
between the Com Component and the .Net Component
2.Run time Callable Wrapper will built a
bridge between .Net Component and Com Component.converts
the .Net data type to Com Data type
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / mohan
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
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / manpreet singh
These are business objects(Components).
Is This Answer Correct ? | 14 Yes | 31 No |
How will you register com+ services?
What is security?
Difference between COM and .NET component ?
What is com, com+ and dcom ?
Are com components serializable?
how to register dll in COM / COM+ application
What is reliability?
What is jit activation?
What is availability?
What is scalability?
Can .NET Framework components use the features of Component Services?
Explain durability?