Re: quick simple searches on domnode

2004-05-19 Thread Justin
PP/Jabber protocol is an xml document streamed over tcp, so there are constant updates to the DOMDocument. thnx, Justin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

quick simple searches on domnode

2004-05-18 Thread Justin
e DOM for each query. Is there some way to take advantage of the internal dom structure of xerces to make this query as quick and painless as possible? Thnx, Justin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

RE: Disabling C++ Namespace

2003-12-24 Thread Justin Kirby
rcesc; #else #define USE_XERCESC #define xerces_ns #endif #endif With this, I can use any 2.x version of xerces-c Hope that helps Justin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: help Xerces c++ implementation

2003-12-05 Thread Justin Kirby
w.openaether.org/src/source/oajabber/iojabber.cpp How it is used: http://www.openaether.org/src/source/oajabber/jabrecvthrd.cpp#L47 Hope that helps Justin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

startElement with multiple namespaces

2003-10-28 Thread Justin Kirby
namespace. Is there anyway to obtain this information? Justin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: WRONG_DOCUMENT_ERR when appending a DOMDocument to DOMNode

2002-10-02 Thread Justin Kirby
All you have to do is create a docfragment and append the document to that. Then add the docfragment to the root of the other document... DOMDocument *one = . DOMDocument *two = . DOMDocumentFragment *frag = two->createDocumentFragment(); frag->appendChild(two->getDocumentElement()); DO

Re: Help with getting the next sibling

2002-09-30 Thread Justin Kirby
Xerces, by default, and I know of no way to turn this off if you don't have a dtd, inserts whitespace into the DOM tree as text nodes. So it looks to me that you have a file with the contents: 0.025 I would recommend adjusting the contents to not have any whitespace. e.g.: 0.025 Or the othe