I have few questions regarding .NET COM component.
Basically I'm developing a .NET COM server (.DLL) to support our legacy system,the idea is legacy system invoke COM Server method, .NET COM code intern call our Hosted WCF services.
Initially, I have developed a .NET COM component (.DLL) with basic functionality(i.e without calling WCF services), written a VB-Script to access COM methods, everything is working fine.
For WCF services, the configuration related information is stored in app.config, but i do not see the app.config file is loaded into the app-domain
1) how to load the app.config for .NET COM server
2) how to debug .NET COM component
Thanks in advance.