I have a .net component library (dll) that I have successfully COM wrapped (using regasm). The .net component requires configuration information.
In the .Net world this is easily solved via the app.config. I can take the specific settings for this dll and add them to a web.config or exe.config so that when the dll is used in a program or on the web, it can access the necessary configuration information.
So my question is, when called via COM (say through an ASP page or even a VBScript), can I and how would I use the configuration file? Ideally, I would rather not hard code certain items.