Tagged Questions

Xerces is a collection of software libraries for parsing, validating, serializing and manipulating XML

learn more… | top users | synonyms

10
votes
3answers
6k views

Validate an XML File Against Multiple Schema Definitions

I'm trying to validate an XML file against a number of different schemas (apologies for the contrived example): a.xsd b.xsd c.xsd c.xsd in particular imports b.xsd and b.xsd imports a.xsd, ...
8
votes
2answers
351 views

How can I force a SAX parser to use a DTD if one is not specified in the input file?

How can I force a SAX parser (specifically, Xerces in Java) to use a DTD when parsing a document without having any doctype in the input document? Is this even possible? Here are some more details ...
5
votes
1answer
920 views

Xerces error: org.apache.xerces.impl.dv.dtd.DTDDVFactoryImpl

I'm developing a web application using JSF 2.0, NetBeans 6.9.1, GlassFish Server 3.1, mojarra 2.0.3, and JasperReports 3.7.6. Included in my project library is the jar file "xerces-2.8.0.jar". This ...
4
votes
4answers
96 views

How to avoid O(n^2) complexity when grouping records in XSLT?

I'm frequently running into performance issues when I XSL transform large amounts of data into HTML. This data is usually just a couple of very large tables of roughly this form: <table> ...
4
votes
4answers
2k views

xerces serialization in Java 6

In Java 6, the entire xerces XML parser/serializer implementation is now in the Java runtime (rt.jar). The packages have been moved under the com.sun.* namespace, which places them off-limits for ...
4
votes
3answers
2k views

Xerces C++ - Load, read and save, alternatives?

I'm searching for a tutorial to load a XML file, read it, change it and finally save it with C++. I'm using Linux Ubuntu and tried to use Xerces. With Google and much time, I could only load an XML ...
4
votes
5answers
12k views

org.apache.xerces.jaxp.SAXParserFactoryImpl not found when importing Gears API in GWT

I've created a GWT project using Eclipse which was working perfectly (I was able to run it in both Hosted Mode and on Google App Engine) until I tried to import the Gears API for Google Web Toolkit. ...
3
votes
4answers
230 views

Obtain XML entity replacement text from DOM in Xerces

The Javadoc for org.w3c.dom.Entity states: XML does not mandate that a non-validating XML processor read and process entity declarations made in the external subset or declared in parameter ...
3
votes
1answer
352 views

How can I reference an XSD off the CLASSPATH for validating my XML?

As part of my XML transform (using XSL), I'm creating an attribute for the schema location so the the result of the transform can be validated. However, as I'm trying to run this as a self-contained ...
3
votes
1answer
139 views

Xerces2-j XML Schema Attribute / Element Declaration data type

I'm using Apache's Xerces2-j to parse my XSD. I am trying to get the datatype information for the element / attribute declarations in the XSD. Here's an example XSD: <xs:element ...
3
votes
2answers
582 views

libxml2 from java

This question is somewhat related to http://stackoverflow.com/questions/530064/fastest-xml-parser-for-small-simple-documents-in-java but with a few more specifics. I'm working on an application ...
3
votes
2answers
486 views

Creating a DOM that is thread safe for read operations

My application composes a webpage model from a number of xml sources. These sources are being parsed into memory as DOM objects with the normal Xerces parser. Unfortunately, Xerces DOM objects are ...
3
votes
3answers
1k views

XML Parser for Ruby

Looking for something similar to xerces for parsing an xml file in ruby. I saw the native processor REXML and another called hpricot (though I can't find any documentation on hpricot, the links all ...
3
votes
2answers
348 views

Xerces: How to merge duplicate nodes?

My question is this: If I have the following XML: <root> <alpha one="start"> <in>1</in> </alpha> </root> and then I'll add the following path: ...
3
votes
5answers
666 views

é is not correctly parsed

My application will read xml from urlconnection. The xml encoding is ISO-8859-1, it contains é character. I use xerces saxparser to parse received xml content. However, é can not be parsed correctly ...
2
votes
1answer
31 views

how to find offending line when using XmlSlurper

I am parsing a dirty html page with XmlSlurper, and I get the following error: ERROR org.xml.sax.SAXParseException: Element type "scr" must be followed by either attribute specifications, ">" or ...
2
votes
1answer
70 views

When i try to free memory using xerces “visual studio 2010” my project crash

I'm working in a project and I use the xerces library. When I try to delete a pointer my project crashes. Here is the source code: std::ostream& operator<<(std::ostream& target, const ...
2
votes
2answers
108 views

I have UTF-8 - but still get “Invalid byte 1 of 1-byte UTF-8 sequence”

I create a XML String on the fly (NOT reading from a file). Then I use Cocoon 3 to transform it via FOP to a PDF. Somewhere in the middle Xerces runs. When I use the hardcoded stuff everything works. ...
2
votes
1answer
35 views

How avoid dependencies when using Xerces?

I'm trying to integrate xerces 3.1.1 with my program, but it requires libcurl for linux and libicui18n, libicuuc, libicudata, libm for Mac OS X and Solaris. Are there some flags which can be passed to ...
2
votes
1answer
134 views

Why is Apache Xerces/Xalan adding additional carriage returns to my serialized output?

I'm using Apache Xerces 2.11.0 and Apache Xalan 2.7.1 and I'm having problems with additional carriage return characters in the serialized XML. I have this (pseudo) code: String myString = ...; ...
2
votes
2answers
547 views

why org.apache.xerces.parsers.SAXParser does not skip BOM in utf8 encoded xml?

I have an xml with utf8 encoding. And this file contains BOM a beginning of the file. So during parsing I am facing with org.xml.sax.SAXParseException: Content is not allowed in prolog. I can not ...
2
votes
0answers
218 views

How can I prevent Xerces from accessing the Internet for a System ID URI?

I'm validating an XML file using Xerces and haven all the schema files locally in my classpath (using an XML catalog). Validator validator = schema.newValidator(); ...
2
votes
2answers
500 views

No more xercesxmldom unit in Delphi XE?

I'm wondering what happened to the xercesxmldom unit as one of the XML DOM implementations. It seems to have disappeared in Delphi XE. Why? (I searched the docs; couldn't find any relevant info on ...
2
votes
1answer
387 views

Xerces and Xalan-C for windows

Would like to port Xerces and Xalan to latest Microsofy Visual Studio (2010). For Xerces, all I have to do is download from site Xcerces version 3.1.1. But it is not preintegrated with Xalan-C. only ...
2
votes
1answer
256 views

Xerces Library and Qt

I'm trying to setup xerces so that I can use it in Qt Creator for Windows. Does Qt support windows/linux binaries or do I have to compile it using mingw as a target? How one goes about compiling ...
2
votes
1answer
593 views

problems with java installation (xerces) on mac

I'm using MacOsX 10.6.4. Some time ago I run into problems with Eclipse (it wouldn't start anymore - I opened a question here and followed all the suggestion but with no luck). Then I also run into ...
2
votes
1answer
317 views

Xerces-C++ DOM node line/column number location

I'm writing a custom XML validator using Xerces-C++. My current approach loads the document into a DOM, and then checks are performed on it. What I need is a way to access the line/column number of a ...
2
votes
1answer
248 views

Get default value for element from schema using xerces (C++)

Say I have a schema which defines an element as follows: <xsd:element name="Widget" type="tns:WidgetType" /> <xsd:complexType name="WidgetType"> <xsd:sequence> ...
2
votes
1answer
2k views

Problem with NetBeans Web Service Client when xercesImpl.jar is on classpath

I am unable to create a Web Service Client in my NetBeans Web Application when xercesImpl.jar is included as a library. Using NetBeans 6.9 and GlassFish 3.0.1: 1.) Create new Web Application 2.) ...
2
votes
3answers
2k views

writing XML with Xerces 3.0.1 and C++ on windows

i have the following function i wrote to create an XML file using Xerces 3.0.1, if i call this function with a filePath of "foo.xml" or "../foo.xml" it works great, but if i pass in "c:/foo.xml" then ...
2
votes
1answer
373 views

JSP compilation error upon changing XML parser to Xerces

All, I'm working on a java webapp that we deploy in the Resin web app server. I have been doing some XML parsing for a new part of the application, and realized that our app was using Resin classes ...
2
votes
1answer
831 views

Java: How to parse XML comments using org.apache.xerces.parsers.SAXParser?

I managed to parse to comments from an XML file using javax.xml.parsers.SAXParser, but is there a way to parse comments in org.apache.xerces.parsers.SAXParser in Java? A simple example would be ...
2
votes
1answer
713 views

Spring App + Tomcat + XSLT = TransformerFactoryConfigurationError

I am trying to deploy a Spring 3.0 Webapplicatoin to a tomcat5.5 server running on CentOS. Deployment works, but when I try to access the application I get a TransformerFactoryConfigurationError: ...
2
votes
1answer
418 views

XercesDOMParser and XIncludes

I am attempting to get xincludes working in an existing system that uses a XercesDOMParser in xercesc to parse incoming xml from a client. I am working with Apache Xercesc v3.0.1, and the incoming ...
2
votes
2answers
988 views

BIRT 2.5 deployed with Xerces jar in WEB-INF/lib throws NullPointerException

so I am having pretty much exactly the same problem as what someone else has described here: birt-exchange. I have integrated BIRT with my existing web application that requires the xerces jar (mine ...
2
votes
3answers
1k views

Disable logging in Java Xerces (“[Fatal Error] :1:1: Content is not allowed in prolog.”)

My application expects that it will sometimes try to parse invalid XML documents. I currently catch the "SAXParseException: Content is not allowed in prolog." exception, which works fine. However, ...
2
votes
1answer
234 views

simple example to use Xerces XNI?

Is there a simple example somewhere of using Xerces XNI? I'm looking at the sample code and can't make heads or tails of what it's doing, and don't want to just cut & paste into my application. ...
2
votes
2answers
130 views

In java, how do I create my own xml subclassed elements in a DOM returned by 3rd party tools

So I'm using HTMLCleaner which returns a org.w3c.dom compatible DOM. Now, I want to insert my own subclassed Elements (which implement additional functionality outside the dom) into this dom tree. Is ...
2
votes
2answers
1k views

Is it possible to get the current line number when parsing an XML document with Xerces?

I have a java program that parses an XML document using xerces API. My parsing class extends org.apache.xerces.parsers.XMLDocumentParser, overloading the startElement, endElement, characters methods. ...
2
votes
3answers
2k views

Repairing wrong encoding in XML files

One of our providers are sometimes sending XML feeds that are tagged as UTF-8 encoded documents but includes characters that are not included in the UTF-8 charset. This causes the parser to throw an ...
1
vote
2answers
28 views

Parsing XML Schemas and deriving metadata in Java

I have been looking at ways to parse XML Schema files for metadata of types defined in those files and get other information, and build the type hierarchy to be shown to the user. I found a number of ...
1
vote
2answers
58 views

With SAX, is it possible to exit from processing?

I want to read a specific node in an xml document, and I want to do it the fastest way possible and I believe SAX is the answer. I'm using xerces right now, and I understand that the actual parsing ...
1
vote
1answer
51 views

Maven: How do I reconcile this dependency conflict?

I have this Maven dependency ... <dependency> <groupId>javanettasks</groupId> <artifactId>httpunit</artifactId> ...
1
vote
2answers
33 views

Sorting XML data by element?

If one needed to be able to display certain elements that contain some certain data and then sort them based on this data. Which would be a better choice for a XML parser, DOM or SAX? Also can either ...
1
vote
3answers
110 views

How to do this in XSLT without incrementing variables? (Tweaking Xalan to create a global XSLT iterator. Do I have other options?)

I'm trying to think functional, in XSLT terms, as much as possible, but in this case, I really don't see how to do it without tweaking. I have roughly this data structure: <transactions> ...
1
vote
1answer
92 views

Xerces DOM parser incredibly slow?

Currently, I am trying to clean up an HTML file using JTidy, convert it to XHTML and provide the results to a DOM parser. The following code is the result of these efforts: public class ...
1
vote
1answer
51 views

read attributes name in C++ using xerces

void MySAX2Handler::startElement(const XMLCh* const uri, const XMLCh* const localname, const XMLCh* const qname, ...
1
vote
1answer
219 views

Error with XSD validation: “cvc-elt.1: Cannot find the declaration of element 'xs:schema'”

I am trying to use the Maven XML plugin to validate my xml against a schema but I keep having an error saying: cvc-elt.1: Cannot find the declaration of element 'xs:schema'. I guess it has to ...
1
vote
1answer
115 views

Getting an Eclipse C++ environment running with Xalan

I have been working on getting a C++ IDE going on my 64-bit Windows 7 machine. It's been frustrating, mostly because of the incompatibilities of 32 and 64 bit programs using Eclipse IDE for C/C++ ...
1
vote
1answer
75 views

Parser error on Xpand: SAXParserFactoryImpl cannot be cast to SAXParserFactory

I am getting this dialog box when i am building my application with Xpand. "An internal error occurred during: "Analyzing accessible EMF metamodels for project my.generator.project". ...

1 2 3 4