Click to See Complete Forum and Search --> : sharing xml


vkotagiri
October 17th, 2001, 01:53 PM
Hi all,
I need to share the xml object between two process on windows machine.
Can some one help me pl.
Thanx in advance

Fumiseki
December 5th, 2001, 08:37 PM
y not try to declare the object in global? or just declare locally within a class and obtain the pointer for that class?

NMTop40
December 6th, 2001, 07:14 AM
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).