RE: XML Generation efficiency

2002-10-07 Thread SidY
Hi, If you REALLY want an efficient and fast way to create an XML document, then just use: sprintf(buffer,"",parameters)!! or fprintf(fptr,",parameters) to print to a stream. Sid -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, 7 October 2002 6

RE: XML-document checksum

2002-06-13 Thread SidY
Howdy, Use a digital siganture in your XML...encode some know string (known to you only into it) so users cannot edit and generate a new signature, or go whole hog and use encryption. Sid -Original Message- From: Ing. Hans Pesata [mailto:[EMAIL PROTECTED]] Sent: Friday, 14 June 2002 1

RE: XML output

2002-05-06 Thread SidY
Howdy, This might sound ridiculous but for one major application I wrote a class to provide my basic XML generation needs, my primary storage is a vector and I just put formatted strings into it. When it comes time to send the XML message I call some support methods from the client class(which

RE: Is DOM tree thread safe for parallel reads?

2002-04-18 Thread SidY
I have been sucessfully using the DOM and SAX API's in Xerces 1.6 in multiple threads with no problems in production ready code, however, each thread has been processing it's own document. Its kind of obvious that you would not use multiple threads to process the same document (maybe as a helper

RE: adv of xerces?

2002-03-13 Thread SidY
Can you modify MSXML... ?... No! Sid -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 13 March 2002 9:07 PM To: [EMAIL PROTECTED] Subject: Re: adv of xerces? >>What are the advantages of using Xercesc over MSXML 4.0?:p> > > > Xerces-C is open

RE: Parsing from a string

2002-01-17 Thread SidY
Dave, When I click on "memparse" link I get file not found Sid -Original Message- From: David N Bertoni/CAM/Lotus [mailto:[EMAIL PROTECTED]] Sent: Friday, 18 January 2002 9:19 AM To: [EMAIL PROTECTED] Subject: RE: Parsing from a string It's already in the "manual": http://

RE: Parsing from a string

2002-01-17 Thread SidY
You know, it's this kind of practical useful information that should be in the Xerces Documentation manual. Samples of each of the parsing mechanisms... if there is a demand for this type/kind of information (and I believe there is) then does anyone want to collate it into a document ??? Is it

RE: Single threaded / multithreaded

2002-01-03 Thread SidY
Hi, I am using Xerces v1.6 quite successfully in multithreaded environment.. So that means they work in both. Sid -Original Message- From: Ashish Sharma [mailto:[EMAIL PROTECTED]] Sent: Friday, 4 January 2002 8:01 AM To: [EMAIL PROTECTED] Cc: Vincent Yang Subject: Single threaded / mu

DOM Document error - ignore previous email

2001-12-27 Thread SidY
Hello guys, Please ignore my last email to do with the DOM_Document error.. I have now solved it. Sid Young QML Pathology QLD, Australia - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

DOM Document assignment crashing

2001-12-26 Thread SidY
Hi all, Below is a method from a class that I am calling to parse a file and assign a DOM document after it has been parsed. The program has started to crash at the point identified below as "// fails HERE!" I have tried this with both v1.5 and 1.6 XERCES Distributions. Any suggestions are

RE: Xerces and multithreading on Win2K

2001-12-24 Thread SidY
Thanks Tinny, I have just downloaded v1.6 and will compile a new DLL and link it in and see what happens. I have now discovered another bug, this time with the DOM parser. I am not sure if it is my code or XERCES so I need to work it a bit more, but esentially when I call myDOMparser->parse( f

RE: Xerces and multithreading on Win2K

2001-12-22 Thread SidY
Hi, The problem is now fixed but it kept crashing the second time the SAXParser was being created. Sid -Original Message- From: Prior, Chris [mailto:[EMAIL PROTECTED]] Sent: Friday, 21 December 2001 8:17 PM To: '[EMAIL PROTECTED]' Subject: RE: Xerces and multithreading on Win2K Hi

RE: Xerces and multithreading on Win2K

2001-12-20 Thread SidY
THANK YOU I moved the Initialise and Terminate into the main class constructor and destructor and it happily processes multiple XML files in a seperate thread. Sid -Original Message- From: Joachim Achtzehnter [mailto:[EMAIL PROTECTED]] Sent: Friday, 21 December 2001 9:33 AM To:

Xerces and multithreading on Win2K

2001-12-20 Thread SidY
Hi all, I have re-engineered a VC++(6) application to a multithreaded design and now find that calls to xerces functions (v1.5) crash. The thread sits and monitors a directory for XML file and then creates an object (CStateMachine) to process the file (the file is represented as a CDataFile ob

RE: Validating XML.

2001-12-18 Thread SidY
Hi, To validate you need a DTD... Usually you enable validation via a setMethod() of the relevant parser. Sid -Original Message- From: Shantanu Dutta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 18 December 2001 9:12 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Validating XML.