parse coredump on unixware7.1.1

2002-02-28 Thread TaoFengmei
After installing xerces-c-src1_6_0,i run the example program DOMCount .The parameter is a XML file name. then i find DOMCount coredump. Thanks, 11% gdb DOMCount GNU gdb 5.0 Copyright 2000 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you ar

DO NOT REPLY [Bug 6445] - Caldera (SCO) OpenServer Port

2002-02-28 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

why DOMCount will coredump in xerces-c-src1_6_0,it work on xerces-c-src1_4_0.

2002-02-28 Thread TaoFengmei
After install xerces-c-src1_6_0,i run the example program DOMCount .The parameter is a XML file name. then i find DOMCount coredump.it works on xerces-c-src1_4_0,Now we can't use it? 11% gdb DOMCount GNU gdb 5.0 Copyright 2000 Free Software Foundation, Inc. GDB is free software, covered by the

Re: Xerces-C on FreeBSD 4.5

2002-02-28 Thread John Utz
this is great work! i am happy to help as much as i can, esp since you stepped thru it On Fri, 1 Mar 2002, Christian Kruse wrote: > Hi, > > On Thu, 28 Feb 2002 12:40:49 -0800 (PST) > John Utz <[EMAIL PROTECTED]> wrote: > > > OK, we see here that the 'this' pointer and the urlText string ar

Re: Xerces-C on FreeBSD 4.5

2002-02-28 Thread Christian Kruse
Hi, On Thu, 28 Feb 2002 12:40:49 -0800 (PST) John Utz <[EMAIL PROTECTED]> wrote: > OK, we see here that the 'this' pointer and the urlText string are NULL! i > assume that the this is supposed to point to the XMLURL instance but i > dont really know. I think the error is in parsers/SAXParser.cp

DO NOT REPLY [Bug 2717] - Unterminated INCLUDE section causes infinite loop with setExitOnFirstFatalError(false)

2002-02-28 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

parser error I don't get

2002-02-28 Thread Hundtofte, Christopher Sean
Anyone have an idea why I'm getting 'Fatal Error at file "XML Data input", line 4, column 1 Message: Expected equal sign'? with this xml: http://www.w3.org/2000/10/XMLSchema"; xmlns:rml.bdl="uri://rosetta.lehman.com/basicsDescription" xmlns:rml.mdl="uri://gemqa/~chundtof/marketDescription

Re: Solaris + gcc problems (BUG)

2002-02-28 Thread Kent Vander Velden
Ok, looks like a bug. In UnixHTTPURLInputStream.cpp, the following if (queryAsCharStar != 0) { fBuffer[strlen(fBuffer)] = chQuestion; strcat(fBuffer, queryAsCharStar); } should be if (queryAsCharStar != 0) { size_t n = strlen(fBuffer); f

Re: Solaris + gcc problems (this should be so simple...)

2002-02-28 Thread Kent Vander Velden
Ok, I have managed to find that the exception is of type XMLException and the message is: Could not read from the socket. Error={0} I am trying to trace down in UnixHTTPURLInputStream.cpp where and why this is happening. Couple of questions: * Is there an another way to find out

Re: Solaris + gcc problems (this should be so simple...)

2002-02-28 Thread Mark Martin
Uncaught exception? The default behaviour for an uncaught exception is to call abort() Mark >From: Kent Vander Velden <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED], [EMAIL PROTECTED] >Subject: Re: Solaris + gcc problems (this should be so simple...) >Date: Thu, 28 Fe

Re: Solaris + gcc problems (this should be so simple...)

2002-02-28 Thread David N Bertoni/Cambridge/IBM
An exception is being thrown, which you're not catching, so the program aborts. The samples and documentation are full of examples showing how to catch exceptions. Likely, one of your URLs is not correct (or Xerces doesn't think it's correct). Dave

Re: Xerces-C on FreeBSD 4.5

2002-02-28 Thread John Utz
ok both this mail and the previous mail show the same pathology. it's instructional! On Thu, 28 Feb 2002, Christian Kruse wrote: > Hoi, > > On Thu, 28 Feb 2002 12:15:39 -0800 (PST) > John Utz <[EMAIL PROTECTED]> wrote: > > > Could i suggest a further test? > > Please :-) > > > try SEnumval

Re: Solaris + gcc problems (this should be so simple...)

2002-02-28 Thread Kent Vander Velden
Hi. I have included backtrace showing the problem that I am having. I hope that someone can suggest a solution to this problem. Thanks xml_test2|Thu2:23pm} gdb ./test GDB is free software and you are welcome to distribute copies of it under certain conditions; type "show copying" to se

Re: Xerces-C on FreeBSD 4.5

2002-02-28 Thread Christian Kruse
Hoi, On Thu, 28 Feb 2002 12:15:39 -0800 (PST) John Utz <[EMAIL PROTECTED]> wrote: > Could i suggest a further test? Please :-) > try SEnumval or SAXPrint or DOMPrint and see what you get. #0 0x282541c7 in XMLURL::parse (this=0x0, urlText=0x0) at XMLURL.cpp:852 852 while (*srcPtr) (gd

Re: Xerces-C on FreeBSD 4.5

2002-02-28 Thread Christian Kruse
Hoi, On Thu, 28 Feb 2002 11:26:49 -0800 (PST) John Utz <[EMAIL PROTECTED]> wrote: > and then look at the results, it will say which line in which function > caused the core dump I recompiled Xerces with ./runConfigure -d. The gdb-result was: #0 0x282541c7 in XMLURL::parse (this=0x0, urlT

Re: Xerces-C on FreeBSD 4.5

2002-02-28 Thread John Utz
Could i suggest a further test? try SEnumval or SAXPrint or DOMPrint and see what you get. i am betting that you wont get any output that comes from the actual elementsthose where the ones that i was trying. if it coredumps, and dumps in the same place, that would be enlightening. if it di

Re: Xerces-C on FreeBSD 4.5

2002-02-28 Thread Christian Kruse
Hoi, On Thu, 28 Feb 2002 11:26:49 -0800 (PST) John Utz <[EMAIL PROTECTED]> wrote: > well, if you got it to actually parse, u are ahead of me! > > On Thu, 28 Feb 2002, Christian Kruse wrote: > >> [...] > the warnings are not a problem, imho. they are a 'security warning'. I thougt so, too :-)

Re: Xerces-C on FreeBSD 4.5

2002-02-28 Thread John Utz
well, if you got it to actually parse, u are ahead of me! On Thu, 28 Feb 2002, Christian Kruse wrote: > Hi, > > I tried to compiler Xerces-C on my FreeBSD 4.5 system. It worked with ICU -ticu > and -tIconvFBSD, but when compiling the examples I get the following warnings: > > /usr/lib/libc_r.s

Xerces-C on FreeBSD 4.5

2002-02-28 Thread Christian Kruse
Hi, I tried to compiler Xerces-C on my FreeBSD 4.5 system. It worked with ICU -ticu and -tIconvFBSD, but when compiling the examples I get the following warnings: /usr/lib/libc_r.so.4: WARNING! setkey(3) not present in the system! /usr/lib/libc_r.so.4: warning: this program uses gets(), which i

Getting parts of SAXException message values

2002-02-28 Thread Michael Swanson
Hi, In overriding the SAX2ReadHandler::error() I can access the error message by using getMessage() which might look like: Datatype error: Type:InvalidDatatypeValueException, Message:The unary operation node had a binary node type. I'm interested in getting individual parts of that message wi

DO NOT REPLY [Bug 6672] - SAXValidator results in an access violation when validating against schema with empty element that has default value

2002-02-28 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 6445] - Caldera (SCO) OpenServer Port

2002-02-28 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 6759] New: - Memory leaks with the XMLScanner.

2002-02-28 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

platform specific error codes

2002-02-28 Thread Haase, Donald P
Just wondering if there are platform specific error codes. I'm building on IRIX, and have an error code that I don't know how to track. Don - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

RE: DOM to String Conversion

2002-02-28 Thread Ravi_Jain
use DOMSerializer Ravi Jain > -- > From: Arun Ramdas[SMTP:[EMAIL PROTECTED]] > Reply To: [EMAIL PROTECTED] > Sent: Wednesday, February 27, 2002 5:10 > To: [EMAIL PROTECTED] > Subject: DOM to String Conversion > > Is there any API provided by Xerces-c, to conve