1
vote
2answers
59 views
Avoid validating WSDL every time the web service is executed
I have a small app running in JBoss that uses web services and every time they are called, it parses the WSDL and tries to fetch from xmlsoap.org [1] in order to validate it (the W …
0
votes
1answer
47 views
Docbook, Images, ANT
Hello! :-)
I'm trying to convert a DocBook XML - File via XSLT to HTML. The XML - File contains an image and this is were i get the following error.
build-html:
[xslt] Trans …
0
votes
1answer
55 views
SAXParseException: ‘Attribute “” bound to namespace “null” was already specified for element “metric”’
At work, we have just migrated an old web-app from struts 1.1 to 1.2.9 (hopefully first steps to moving to 1.3), but we are now having problems with the commons digester. Struts 1. …
0
votes
2answers
324 views
XPath support in Xerces-C
I am supporting a legacy C++ application which uses Xerces-C for XML parsing. I've been spoiled by .Net and am used to using XPath to select nodes from a DOM tree.
Is there any w …
2
votes
1answer
54 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 work …
0
votes
2answers
162 views
getting XML data from Xerces (c++)
I am a latecomer to XML - have to parse an XML file. Our company is using xerces already so I managed to cobble together a sample app (SAX) that displays all the data in a file. …
2
votes
2answers
49 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, Xerc …
0
votes
0answers
21 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 int …
1
vote
2answers
129 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 hpri …
0
votes
0answers
113 views
Xerces C++ 2.8 trying to modify a DOMDocument and getting DOM Exception: An attempt is made to reference a node in a context where it does not exist
Hello, I am new to this site so I apologize in advance.
I am trying to modify an XML document using Xerces C 2.8. I'm somewhat familiar with Xercess though not proficient with it …
0
votes
1answer
86 views
Secure XML Parsers
In typical Java applications, the XML parsers is XALAN/XERCES but they were not written with security in mind. I am curious to know if there are parsers that are more robust when i …
4
votes
2answers
595 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 …
1
vote
2answers
61 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) int …
1
vote
1answer
126 views
Sub-elements and namespaces in XSD
I've been trying to figure out how to use an XML Schema to validate XML files as I load them into an application. I've got that part working, but I can't seem to get the schema to …
2
votes
2answers
782 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 G …
