sazilla wrote: > I want to access to XPCOM component > registered by a Mozilla installed application (Thunderbird), from an > external application:
Well, looks like you want to test how your component is working with existing installed XULRunner application (Thunderbird). I would claim embedding won't be the best solution here. My xpunit test framework is designed for exactly the same purpose -- to test XPCOM components. The framework is described here [1], its latest source code (GPLv2) is here, and some examples of tests for components [3], and user interface integration [4]. To use the framework for your component, it will need to be backported to 1.8.1.x branch (it is on 1.9.0.x currently). Feel free to contact me directly, if you are going to work on that. 1. http://xpunit.mozdev.org/ 2. http://repo.or.cz/w/abstract.git?a=tree;f=xpunit 3. http://repo.or.cz/w/abstract.git?a=tree;f=storage/base/test 4. http://repo.or.cz/w/abstract.git?a=tree;f=app/test -- Sergey Yanovich _______________________________________________ dev-embedding mailing list [email protected] https://lists.mozilla.org/listinfo/dev-embedding
