gcc + Solaris

2001-04-25 Thread John L. Fjellstad
Is it possible to compile xerces-c lib with gcc? We compiled xerces-c 1.3 with gcc on Solaris 2.6, and seeing some strange errors (core dumps in the XmlFormatter). Just wondering if it might be related... - To unsubscribe, e

Re: Xerces-C on VxWorks

2001-04-25 Thread Johannes Gutleber
Hi Kevin! On Wednesday, April 25, 2001, at 10:50 PM, Kevin Livingston wrote: > If anyone has any experience with performing such a port (Xerces to > VxWorks or really just porting Xerces in general) I would be happy if > they would share any information with me. I can be mailed directly if >

Re: Unsupported encoding causes segmentation fault (AIX 4.3)

2001-04-25 Thread David_N_Bertoni
Hmm, I believe we test for this case, but can you submit a bug report on Bugzilla with a minimal stylesheet and input xml that reproduces the problem? We probably can't do much about it if it doesn't happen with our current compiler. http://nagoya.apache.org/bugzilla/index.html Thanks! Dav

Re: Xerces-C on VxWorks

2001-04-25 Thread Martin Kalen
Kevin, the Xerces-C website has the essential information for doing a port. Check out the following link: http://xml.apache.org/xerces-c/build-misc.html#faq-4 The instructions there are quite straightforward and the code design neatly isolates all platform- and compiler specific code into the

Re: using invalid name with Xerces-c

2001-04-25 Thread peiyongz
Hi, there, You may incoporate the following code segment into DOMPrint.cpp after parser->parse(gXmlFile); ... parser->startDocument();// set DOM error checking off try { DOM_Document doc2 = parser->getDocument(); DOM_Element root

Xerces-C on VxWorks

2001-04-25 Thread Kevin Livingston
Hello, My name is Kevin Livingston, I am new to the list, and to Xerces in general, but I am working hard at it. I am currently involved in a project where I need to do XML parsing/editing etc. on VxWorks. I know a little about the Xerces implementation and we (my co-workers and I) have used

Unsupported encoding causes segmentation fault (AIX 4.3)

2001-04-25 Thread Anthony Zawacki
I am developing an application using xalan, and have run into a problem (possible bug) in Xalan. I found the following example on the internet, probably for Microsoft's XSLT engine. The encoding is set to ISO8859-1. When I use XT to perform the transformation, it returns an error that the encod

Re: Xerces for AIX 4.3 help request

2001-04-25 Thread Anthony Zawacki
Hello Natalya, We are using xerces and xalan under AIX 4.3. I would expect that you are using a different compiler (and different name mangling) than what was used in the distribution. We are using Visual Age 5.0 and had to recompile both xerces and xalan before we were able to use the librarie

Xerces for AIX 4.3 help request

2001-04-25 Thread Dikovitskaya, Natalya
> I need to link with a xerces library on AIX 4.3.4. I downloaded the > Xalan-C_1_1-aix.tar.gz file from the web site and tried to link with > libxerces-c1_4.a. It didn't seem to have any effect. I tried to look at the > contents of that file using 'ar -t' and got the following error message: > >

RE: Losing ID's on importNode()

2001-04-25 Thread Evert Haasdijk
Hi all, I've modified DocumentImpl::importNode() to update the importing document's map fNodeIDMap when importing nodes with ID attributes. The only problem occurs if the importing document's DTD doesn't define the imported attribute as an ID. Is there any way to check against that? Here's the co

[Bug 1500] New - notation.getSystemId() always returns null string

2001-04-25 Thread bugzilla
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1500 *** shadow/1500 Wed Apr 25 07:35:50 2001 --- shadow/1500.tmp.905 Wed Apr 25 07:35:50 2001 *** *** 0 --- 1,25 + ++ + | notation.getSystemId() alw

RE: How to use DOM_XMLDecl ?

2001-04-25 Thread Jesse Pelton
You'll need to make a series of calls like the following: DOM_DOMImplementation DOMImpl; DOM_DocumentType DocType; DOM_Document Doc; DocType = DOMImpl.createDocumentType (...); Doc = DOMImpl.createDocument (...); DOM_XMLDecl XMLDecl = Doc.createXMLDecl (...); Doc.insertBefore (XMLD

How to use DOM_XMLDecl ?

2001-04-25 Thread bertrai
I'm using Xerces-c with Visual C++ 6.0. How can I add a DOM_XMLDecl to my document ? When I create a DOM_XMLDecl node, its return a null pointer so I can't add it to my document with appendChild. Thanks for answerring - To u