Hi all,
I need to share the xml object between two process on windows machine.
Can some one help me pl.
Thanx in advance
Printable View
Hi all,
I need to share the xml object between two process on windows machine.
Can some one help me pl.
Thanx in advance
y not try to declare the object in global? or just declare locally within a class and obtain the pointer for that class?
are you sharing the XML string or the parsed version? And are you using DOM or SAX?
If you are using DOM then it is a COM object so it can be shared as with other COM objects. If your two processes run in different threads you need to marshall it (see Visual C++ forum).