Answer Posted / 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 |
Post New Answer View All Answers
Explain the disadvantages of com components?
What is security?
Define jit activation?
Define durability?
What are loosely coupled events?
Explain what are wrapper classes?
Explain the use of contextutil class?
Explain disadvantages of com components?
What is integrity?
What is durability?
What is reliability?
Explain how to register com+ services?
What is ccw?
What is the difference between com architecture and .net architecture?
Explain how to make a net component talk to a com component?