CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: sharing xml

  1. #1
    Join Date
    Aug 2001
    Posts
    5

    sharing xml

    Hi all,
    I need to share the xml object between two process on windows machine.
    Can some one help me pl.
    Thanx in advance


  2. #2
    Join Date
    Jul 2001
    Location
    Malaysia
    Posts
    53

    Re: sharing xml

    y not try to declare the object in global? or just declare locally within a class and obtain the pointer for that class?


  3. #3
    Join Date
    Oct 2000
    Location
    London, England
    Posts
    4,773

    Re: sharing xml

    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).



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured