RE: Serialize and unserialize DOMDocument over socket

2002-10-03 Thread Gareth Reakes
> > -Original Message- > From: Gareth Reakes [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 02, 2002 9:26 AM > To: [EMAIL PROTECTED] > Subject: RE: Serialize and unserialize DOMDocument over socket > > > Hi, > If you just pass in 0 for

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Bagepalli, Kiran
me. Can someone through light on this please. Thanks Kiran -Original Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 9:26 AM To: [EMAIL PROTECTED] Subject: RE: Serialize and unserialize DOMDocument over socket Hi,

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Dave Hoffer
Thank you. I have tried this and it WORKS. -dh -Original Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 12:26 PM To: [EMAIL PROTECTED] Subject: RE: Serialize and unserialize DOMDocument over socket Hi, If you just pass in 0 for the

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Dave Hoffer
Hi, Thanks I will try that. -dh -Original Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 12:26 PM To: [EMAIL PROTECTED] Subject: RE: Serialize and unserialize DOMDocument over socket Hi, If you just pass in 0 for the uri bit of the

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Gareth Reakes
Original Message- > From: Gareth Reakes [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 02, 2002 11:50 AM > To: [EMAIL PROTECTED] > Subject: RE: Serialize and unserialize DOMDocument over socket > > > Hi, > I completely forgot about this problem as I re

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Dave Hoffer
for your help. -dh -Original Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 11:50 AM To: [EMAIL PROTECTED] Subject: RE: Serialize and unserialize DOMDocument over socket Hi, I completely forgot about this problem as I replaced your ns

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Gareth Reakes
NS( WSZ_NAMESPACE_URI, >WSZ_TYPE); > rootElem->appendChild(typeElem); > > DOMText*typeVal = m_pDomDocument->createTextNode( WSZ_MSG_POWERUP ); > typeElem->appendChild(typeVal); > > return true; > } > > -Original Message----- >

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Dave Hoffer
Text*typeVal = m_pDomDocument->createTextNode( WSZ_MSG_POWERUP ); typeElem->appendChild(typeVal); return true; } -Original Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 11:12 AM To: [EMAIL PROTECTED] Subject: RE: Serialize and un

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Gareth Reakes
> rootElem->appendChild(typeElem); > > DOMText*typeVal = m_pDomDocument->createTextNode( WSZ_MSG_POWERUP ); > typeElem->appendChild(typeVal); > > return true; > } > > -dh > > > > -----Original Message- > From: G

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Dave Hoffer
ginal Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 11:04 AM To: [EMAIL PROTECTED] Subject: RE: Serialize and unserialize DOMDocument over socket Hi, post you document creation stuff (the stuff in FillDoc) and Ill have a look. Gareth On Wed,

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Gareth Reakes
> > Again thanks for your help! > > -dh > > > > -Original Message- > From: Gareth Reakes [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 02, 2002 8:30 AM > To: [EMAIL PROTECTED] > Subject: RE: Serialize and unserialize DOMDocument over socket &

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Dave Hoffer
tarted with and the Document I recreate would be the >same(equivalent). My DOMDocument is contained in a IMessage object. The IMessage >class has an operator== like... > > bool IMessage::operator==(const IMessage& rhs ) const > { > if( m_pDomDocument) > { >

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Dave Hoffer
Hi, thank you. I will try what you have told me. thank you very much. -dh -Original Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 8:30 AM To: [EMAIL PROTECTED] Subject: RE: Serialize and unserialize DOMDocument over socket Hi, The

RE: Serialize and unserialize DOMDocument over socket

2002-10-02 Thread Gareth Reakes
>same(equivalent). My DOMDocument is contained in a IMessage object. The IMessage >class has an operator== like... > > bool IMessage::operator==(const IMessage& rhs ) const > { > if( m_pDomDocument) > { > if( !rhs.m_pDomDocumen

RE: Serialize and unserialize DOMDocument over socket

2002-10-01 Thread Dave Hoffer
m: Gareth Reakes [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 4:01 AM To: [EMAIL PROTECTED] Subject: Re: Serialize and unserialize DOMDocument over socket Hi, post your code and Ill take a look. Gareth On Mon, 30 Sep 2002, David Hoffer wrote: > I am trying to

Re: Serialize and unserialize DOMDocument over socket

2002-10-01 Thread Gareth Reakes
Hi, post your code and Ill take a look. Gareth On Mon, 30 Sep 2002, David Hoffer wrote: > I am trying to create rather simple DOM documents and send them over > sockets, I then repackage the socket stream, on the receiving end, into DOM > documents. > > I would expect the documents t