xerces-j-user.xml.apache.org
(
List home) (
Recent threads) (
48 other Apache XML lists)
Subscription Options
- RSS or Atom: Read-only subscription using a browser or aggregator. This is the recommended way if you don't need to send messages to the list. You can learn more about feed syndication and clients here.
- Conventional: All messages are delivered to your mail address, and you can reply. To subscribe, send an email to the list's subscribe (we seem to have lost it) address with "subscribe" in the subject line.
- This list contains about 9,514 messages, beginning Mar 2001
- This list doesn't seem to be active
xerces-j-user.xml.apache.org
April 2003 - page 1
Shekhar Karani — 104917614201 Apr 2003*
Hi I am using the xerces 2.2.1 to parse XML documents. One of the XML documents has a hex character B6. This character is being treated as an invalid ...
Anthony Saucet — 104917866101 Apr 2003*
I'm student, new in Dom using. I'd like to create an xml file using a DTD, but don't know how to start with dom api. How can parse a dt...
Paul Sorenson — 104919809601 Apr 2003
I have xml files which are uncompressed into a temporary directory. These files reference an xml schema file which extends a second schema file. To va...
Anthony Saucet — 104920988401 Apr 2003*
I've seen in the samples, it's possible to cache/preparse a DTD. I don't understand the purpose of this. Is that for retrieving the ele...
Tim Cronin — 104921209001 Apr 2003
you could also useorg.xml.sax.EntityResolversee the javadocs for details -Original Message- From: Rahul Srivastava [mailto:] Sent: Tuesday, April 01, ...
Andy Taylor — 104921514801 Apr 2003*
Hi, I'm writing an application which allows users to upload XML files to an online J2EE application, which then inserts their data into a databas...
Brian Ales — 104930843402 Apr 2003
Hi I need some help in a hurry - I'm trying to validate a schema (just as an XML document) that imports a namespace, and I'm only having par...
Peter Vanopulos — 104933762503 Apr 2003
Hi All, I am using Xerces-J version 2.2.1 and having a weird issue with the removeChild() method: Document doc = ..... populated with xml...First I st...
Lemmin, Harald — 104936165203 Apr 2003
I had never any problem with such a basic operation. Test if the remove statement was ever reached in your code:... Node deletedNode = e2.getParentNod...
Lemmin, Harald — 104943295704 Apr 2003*
Brian,http://www.w3.org/TR/2001/REC-xmlschema-1-200... <http://www.w3.org/TR/2001/REC-xmlschema-1-200...> states that {any attributes with non-s...
Rajiv Shivane — 104944691204 Apr 2003*
Hello all, I need an XML parser which can recover from malformed xml errors and continue parsing. I was trying to see if there is a feature in the par...
Alex Colomb — 104967171006 Apr 2003
I'm sorry if this has been asked before, but both the archives and its mirror are down. I'm having trouble with Xerces and the parsers that ...
Tim Cronin — 104967323006 Apr 2003
http://xml.apache.org/xalan-j/faq.html#faq-N1... <http://xml.apache.org/xalan-j/faq.html#faq-N1...> this applies to both xerces and xalan -Origi...
Sandy Gao — 104972310207 Apr 2003
You can have your own copy of S4S, and modify all attribute wildcards so that they have "strict" processContents. Cheers, Sandy Gao Software...
Sandy Gao — 104980145508 Apr 2003*
But how would the parser know the input is not <icon > <small-icon>stillTypingMygif <large-icon>/tmp/large.gif</large-icon> ...
Suresh Babu Koya — 104980571408 Apr 2003*
I have parsed the following XML containing a character with hex value(0xb). After parsing the parser throws the following exception: org.xml.sax.SAXPa...
Chris Cuilla — 104981655408 Apr 2003
I am using Xerces 2.3.0 to parse a document that is validated by an XML Schema. My document looks like this: <jx:Model xmlns:xsi="http://www.w...
Kommineni, Sateesh (IndSys) — 104981701408 Apr 2003
Hi, I am trying to parse an XML File which has a single Name space . But when i try to get the Value of the Text Node i am getting an empty string. My...
Chris Cuilla — 104981794008 Apr 2003*
[ NOTE: Minor revisions to previous post. I am now using Xerces 2.4.0. ] I am using Xerces 2.4.0 to parse a document that is validated by an XML Schem...
Greg McCreath — 104982583408 Apr 2003*
Hi All,I having a bit of bother with my first go at validating a schema in xerces.My input document has no namespaces and I want to validate it agains...
Greg McCreath — 104983109608 Apr 2003
Ahhhhhh ..... Thank you Jeff, my apologies. I must have been looking TOO hard! Thanks again. Greg. -Original Message- From: Jeff Greif [mailto:] Sent:...
Frank Jakop — 104997476610 Apr 2003
Hello, I have the following problem: I have a parsed DOM-tree and a matching parsed XSModel. When I insert a new node to the tree, I let the user edit...
Jeff Greif — 104998394910 Apr 2003
See http://www.w3.org/TR/2003/WD-DOM-Level-3-Val-... and http://xml.apache.org/xerces2-j/faq-dom.html#... Jeff - Original Message - From: "Frank ...
Jens Skripczynski — 105003757011 Apr 2003*
Hi, I'm using the xerces parser inside xalan or saxon. I want to use xml catalogs, to access DTD offline with their URL. It seems, that xerces is...
Brice Ruth — 105007053011 Apr 2003*
I'm using JAXP w/ JDK 1.4 (which I believe has an older version of Xalan/Xerces integrated) to construct a DOM and output this DOM to an XML file...
Frank Jakop — 105007195111 Apr 2003
Thanks for the two links,but the contents of the first one seems to be not implemented in current xerces version. There is no package org.w3c.dom.vali...
Ahearn, Denis — 105034794314 Apr 2003*
Hello, Is there a way to have the XMLReader.parse() method stop if the XML file being parsed is invalid with respect to an associated XML schema (XSD)...
Eric_Schwarzenbach — 105034940214 Apr 2003
Err... System.exit() terminates the whole JVM, so not "elegant enough for your tastes" is quite the understatement. ;^) I think the usual (i...
Ahearn, Denis — 105034965914 Apr 2003
I tried the 2nd solution, to throw an exception from the ErrorHandler methods, and it works. It seems like what I am trying to do is a pretty basic th...
Anthony Saucet — 105040036715 Apr 2003*
I'm making an interface to build xml files. I want these files corresponding to a DTD structure. I've heard it's not possible to valida...
Andy Taylor — 105040443415 Apr 2003*
Hi, I'm writing a server-side application which allows users to upload XML files via HTTP, then parses them and stores the data in a database. I...
Warren, David — 105041253015 Apr 2003*
Hi, I've been scratching my head trying to figure out why the following code fragment generates 8 attributes even though only 7 are set. The extr...
Carla Spruit — 105041463215 Apr 2003*
Hi, My question refers to the use of DOMConfiguration parameter 'schema-location' of DOMBuilder. The DOM3 sample shows how the 'persona...
Carla Spruit — 105041700315 Apr 2003
Hi Elliotte, The (Dom Level 3) DOMConfiguration parameter 'schema-location' is a string containing a list of URIs that represents the schema...
Andy Taylor — 105041886215 Apr 2003*
Hi Elliotte, If someone put something like the following into an XML document: <myNamespace:myElement xmlns:myNamespace="whatever" xsi:sc...
Warren, David — 105041943815 Apr 2003
<Doh> Forgot to add that I'm still seeing the extra attribute. David...
Greg McCreath — 105042213615 Apr 2003*
Hi Elliotte, The docs at http://xml.apache.org/xerces2-j/javadocs/dom3... /DOMConfiguration.html say it *is* possible to use a list of URLs there but ...
Greg McCreath — 105042264815 Apr 2003
It looks like that doesn't it. However, when coupled with an EntityResolver, the parser is certainly looking for MySchema.xsd to be resolved. _my...
Subha Sunder — 105042507815 Apr 2003
Hi, does anyone know if xerces 1.4.3 supported/runs on AIX 5.1,5.2 and HP 11i ? Thanks...
Andy Taylor — 105042555515 Apr 2003*
Hi Joseph, Wouldn't this mean I would have to write my own version of the validate function? Andy* * * It's fast, it's easy and it...
Carla Spruit — 105042557015 Apr 2003
Hi, When I use DOMConfiguration "schema-location" to parse a document with only one schema with target namespace http://www.example.com/Repo...
Warren, David — 105044828515 Apr 2003*
Hi Joe, Thanks for the response and the suggestion to re-read the Namespaces spec (which I have).I'm a bit confused when you refer to a serialize...
Eric_Schwarzenbach — 105045381216 Apr 2003
Has anyone come up with a good way to use Xerces with java.nio file locking? In particular I'm trying to get it to work with SAX parsing. So okay...
Christian Lebaudy — 105048154216 Apr 2003*
Hello, i am having trouble to parse a very simple document that has a <!DOCTYPE section with an http link over the internet. I do not want to acces...
Andy Taylor — 105049712516 Apr 2003*
Hi Jeff, I understand this, but I would like to stop the validation process (which, I believe, will run through the entire document resolving entities...
Joseph Kesselman — 105049803116 Apr 2003
That's correct, since -- as far as I know -- implied namespace declarations will not be automagically created until you serialize (or until you r...
Sandy Gao — 105050115516 Apr 2003
Hi Rajiv,For the input: <icon > <small-icon>stillTypingMygif <large-icon>/tmp/large.gif</large-icon> </icon> By the time...
Sandy Gao — 105050164516 Apr 2003*
Well, be happy if you are using Xerces. Be careful otherwise. >From the schema structure spec: "Schema Representation Constraint: Schema Docum...
Alex_Fuller — 105050711316 Apr 2003
Hi All, It doesn't look like the Xerces error messages have been internationalized. Is there any on-going effort to do so? I'd offer to help...
Andy Taylor — 105051293116 Apr 2003
Ah, I see what you mean now. I'll sort out an EntityResolver right away... Many thanks to Simon, Jeff and everyone else for your help on this one...
Next page