1.

What Are Ccw And Rcw?

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>

Com Callable Wrapper :

Runtime Callable Wrapper :



Discussion

No Comment Found