how to access the raw text that generated a sax event

2002-04-22 Thread ted sandler
Hello. I am trying to find a way to access the raw document-text that triggered a sax-event. For example, if my document handler's "start-element" method gets called, is there a way to get the original character string (i.e. non-parsed) that generated the "start-element" event? The reason why I

Antwort: Errors Linking Statically with xerces using VC++

2002-04-22 Thread Thomas . Rothfuss
Hello Aniruddha, In the mailing list (" http://marc.theaimsgroup.com/?l=xerces-c-dev&m=101651731301840&w=2";) there's an example dsp zip file. You may try this. Check the preprocessor definitions in the project settings, may be the XERCES_HAS_LIB (new switch in VCPPDefs.hpp) is missing, e.g.:

a basic question on XML parser (expat based)

2002-04-22 Thread River
Hi, High hands, I wonder my XML parser based on "expat" can parse a txt file, does that mean it can parse standard input from http port? Or say, I can just include this function in the CGI component right away? I ask this because I do not have any xml-http client to test it. Thanks for any com

Errors Linking Statically with xerces using VC++

2002-04-22 Thread Aniruddha Shevade
Title: Errors Linking Statically with xerces using VC++ Hello  Following the mail arcvhies , I created a static xerces lib. When I try to link my application to it, I get a lot of Error messages and warnings such as Linking... XercesStaticLibD.lib(Win32PlatformUtils.obj) : error LNK2005: "vo

DO NOT REPLY [Bug 8381] - XMLScanner performance fixes

2002-04-22 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 8381] New: - XMLScanner performance fixes

2002-04-22 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: How to parse char strings using DOMParser::parse()

2002-04-22 Thread Don Mastrovito
Carlo, Sorry, all my work is on Windows. Don At 08:56 AM 4/22/2002 -0700, you wrote: >Thanks for the suggestion. I followed the MemParse example and still >getting a segmentation fault during the parser->parse() call. Have you or >anybody else ran into a similar problem on aix 4.3? > >Carlo >

where get a client to test xml based cgi?

2002-04-22 Thread River
Hi, I just write a simple cgi to parser xml input data under apache server, but I have no way to test it. Any where I can get a client to see if my cgi code can parse xml-http input data? Thanks River _ Do You Yahoo!? Get your free @y

Re: How to parse char strings using DOMParser::parse()

2002-04-22 Thread Don Mastrovito
Carlo, This code snippet demonstrates basic string and file parsing. const bool LoadFromStream = true;// Set to false for file i/o const std::string MyFileName ("C:\TEMP\TEST.XML"); const std::string MyStream ("My Data"); char *BufferID = NULL; MemBufInputSour