RE: DOMString class

2001-12-06 Thread Doug Brower
The FAQ http://xml.apache.org/xerces-c/faq-parse.html#faq-6 is some help here. Quoting: DOMStrings allow multiple concurrent readers. All DOMString const methods are thread safe, and can be concurrently entered by multiple threads. Non-const DOMString methods, such as appendData(), are not thread

RE: DOMString class

2001-12-06 Thread Doug Brower
n create a temporary quite simply: DOMString myStr("foo"); The string will get cleaned up automatically when myStr goes out of scope. Doug Brower > I have a question about the DOMString class. I am writing a > JNI-based library to access Xerces-J DOMs from C++. In looking for a

RE: How would an application interact with Xerces-c++ XML functions

2001-09-18 Thread Doug Brower
> Hi, I am new at using XML. I involved in a project to exchange insurance > information between agencies and a central insurance organization. XML > will be used for transfer the data. > > I am not sure how Xerces-C++ would parse an XML file. I would assume that > there would be a functions readi

RE: Support ?

2001-09-18 Thread Doug Brower
Nitin N, Xerces is open-source software developed under the umbrella of the Apache Software Foundation. Technical support and product assistance is provided by the volunteer contributors to this mailing list. Frequently, when you post messages here some of the same people who wrote the code will r

RE: About License!!

2001-08-20 Thread Doug Brower
The general answer to your question is, "Yes." For details, though, read the license agreement that comes with the Xerces distribution carefully. -Original Message-From: wayne [mailto:[EMAIL PROTECTED]]Sent: Sunday, August 19, 2001 11:13 PMTo: [EMAIL PROTECTED]Subject: About

RE: UTF-16, UCS-4 encodings

2001-08-17 Thread Doug Brower
Siehnai, Does your document header specify the encoding? Something like: would be expected by the xml processor if your file is in fact UTF-16 encoded. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

RE: Who is the maintainer?

2001-08-17 Thread Doug Brower
"Murray Cumming" wrote: > ... I believe that the Xerces-C mailing list has become significantly > less responsive over the past year. That's my impression, too, which emphasizes how much we've come to rely on a handful of people (like Andy Heninger, Dean Roddey, Tinny Ng, Joseph Kesselman, and Da

RE: XML Write

2001-08-16 Thread Doug Brower
>Is there any API in Xerces C++ to write from DOM to an external (ASCII) file >to create an XML document? Looking for something similar to XMLWriter in JDOM. Take a look at http://xml.apache.org/xerces-c/domprint.html for an example. -

RE: query-1

2001-07-10 Thread Doug Brower
My advise is to start with the sample applications like DOMPrint and play with those. Once you get oriented somewhat, the documenation will be easier to absorb. -Original Message- From: Rengan Mysore [mailto:[EMAIL PROTECTED]] Sent: Monday, July 09, 2001 5:49 AM To: [EMAIL PROTECTED] Subj

RE: simple question.

2001-04-27 Thread Doug Brower
Hello Alfredo: Here's how you can get the name of the DTD, that is, the name immediately following the DOCTYPE keyword in an XML source document: DOMString GetDoctypeName( const DOM_Document& doc ) { DOM_DocumentType doctype = doc.getDoctype(); if( doctype.isNull() )