Direct access to nodes on a DOM tree

2001-11-27 Thread Gerardo Fdez.
Hi! My app needs access to so different and unsorted nodes of a DOM Tree, i'm trying to get a way to keep info from each node (DOM_Node) to access them directly whenever i need in my program saving this info in an array or struct by example. I'm new to Xerces and DOM and a bit confused about xer

Re: Plan for Xerces-C++ 1.6

2001-11-27 Thread Jason E. Stewart
"Tinny Ng" <[EMAIL PROTECTED]> writes: > > Remember that this will require a cvs change. We need to rename the src directory > > to xercesc. Some cvs experts gave some advice about that at the time. > > > > Since CVS cannot rename, the cleanest way is to create everything as new directory > and

Re: Plan for Xerces-C++ 1.6

2001-11-27 Thread Tinny Ng
Murray Cumming wrote: > Remember that this will require a cvs change. We need to rename the src directory > to xercesc. Some cvs experts gave some advice about that at the time. > Since CVS cannot rename, the cleanest way is to create everything as new directory and new files, and then delete t

DO NOT REPLY [Bug 3004] - default attribute value not created if value is a null string

2001-11-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

ParserTest broken

2001-11-27 Thread ahuber3
Hi, The ParserTest test case is broken since (at least) 1.5.2. Could this be fixed for 1.6? TIA, Andreas Huber - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

DO NOT REPLY [Bug 2014] - "user breakpoint called" when deleting char strings created from transcode method off of DOMString

2001-11-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 3361] - "String pool id was not legal" error in Attributes::getURI()

2001-11-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

RE: Using Xerces to parse an xml document that uses a Schema with Microsoft Namespaces

2001-11-27 Thread Murphy, James
Yur outa luck. XercesC implements the W3C May 2001 Schema recommendation as divined form the namespace. Microsoft's XML parsers were in use well before this date and well before XML Schemas were firmed up at all. That's why they defined their own schema-like stuff called XDR - XML Data Reduced.

Using Xerces to parse an xml document that uses a Schema with Microsoft Namespaces

2001-11-27 Thread Neil Sherman
I am currently working on a project that requires my to be able to parse a particular XML document and validate it against a given schema. I have tried using the saxcount example that comes with the Xerces package to validate my XML document against the schema. i.e. saxcount -v=always -n -s -

removing a Node from XML file

2001-11-27 Thread Shashank
Hi ! I parse an XML file and display the Node Element name and its current value and allow User to change this Value. Behind I maintain an Hashtable where I store this name against the Node Object and when "ok" asssign this entered value to that Node. When I try to remove this Node, I get the

Re: Plan for Xerces-C++ 1.6

2001-11-27 Thread Murray Cumming
On Tue, 2001-11-27 at 16:45, Tinny Ng wrote: > Murray / Jason, > > Do you have the sane_include patch against the latest code base ready? No. I'll prepare one for you tomorrow. > I plan to release Xerces 1.6 sometime early December, i.e. end of next week or > so. It is appreciated if you can

DO NOT REPLY [Bug 3444] - initialise/uninitialise platform problem

2001-11-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Xerces 1.5.2 for SCO Openserver

2001-11-27 Thread Jorge Pozo Ramirez
Greetings. I've just managed to compile a succesfull port of Xerces 1.5.2 on a SCO OpenServer 5.0.4 machine. I used a SCO tweaked version of GNU C++ (available as Skunkware at caldera FTP site), known as gcc-2.95.2pl1 I also have OSRCompat Package for UnixWare 7.1.1 installed. I attach a diff

Re: Plan for Xerces-C++ 1.6

2001-11-27 Thread Jason E. Stewart
"Tinny Ng" <[EMAIL PROTECTED]> writes: > Do you have the sane_include patch against the latest code base > ready? > > I plan to release Xerces 1.6 sometime early December, i.e. end of next week or > so. It is appreciated if you can have a patch for your proposal some time > this week. Please

DO NOT REPLY [Bug 4475] - Undefined symbol

2001-11-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: Plan for Xerces-C++ 1.6

2001-11-27 Thread Tinny Ng
Murray / Jason, Do you have the sane_include patch against the latest code base ready? I plan to release Xerces 1.6 sometime early December, i.e. end of next week or so. It is appreciated if you can have a patch for your proposal some time this week. Please provide migration information as we

How do I create xml-declaration for a dom document ?

2001-11-27 Thread Michael Klug
I'm using xerces 1.5.2. I want to create dynamicly dom documents for messages. I know already the member function DOM_Document::createXMLDecl, but how do I bring this declaration at the start of an xml document ? regards Michael -

RE: DOMSerializer

2001-11-27 Thread Jan Hummel
The sample I looked for is something like this: ... #include ... char* CXMLAgent::Dom2XML(DOM_Node& toWrite) { ostringstream mystream; DOMSerializerFormatTarget* target = new DOMSerializerFormatTarget(mystream); DOMSerializer* serializer = new DOMSerializer(); se