Probably I miss something very basic but I haven't found the solution on stack overflow / google / etc.
I need to write a COM server in C++ Builder (XE7), 64bit if this makes any difference. As a first step, I can create an in-proc COM server, it compliles, works, and it is properly registered. But I need an out-of-proc COM server, and I am lost in the transition. (Need: external requirement to use out-of-proc COM, I cannot change it.)
What I understood from the documentation ( http://docwiki.embarcadero.com/RADStudio/Seattle/en/COM_Servers ) is that: most likely I should set the 'threading model' properly, and probably some other modification is needed ( http://docwiki.embarcadero.com/RADStudio/Seattle/en/COM_Object_Wizard), but whatever I try, I just don't get an EXE from it.
I could really appreciate a pointer to an example, or a few words where are the essential differences, or which dialog should I study more, etc.