Subjects
Home
VOTE Move XML Commons to Xerces
Commented: (XERCESJ 589) Bug with pattern restriction on long strings
: Xerces J 2 8 1 Release on Wednesday, September 13th
: Xerces J 2 9 0 Release on Wednesday, November 22nd
Commented: (XERCESJ 1066) Restriction+choice+substitutionGroup error
Commented: (XERCESJ 1178) Error getting prefix for an attribute with no n
Updated: (XERCESJ 1244) XMLSchemaValidator does not contribute element 's
Some consideration about the xerces DOM implementation
Updated: (XERCESJ 1066) Restriction+choice+substitutionGroup error
Commented: (XERCESJ 1227) Poor performance / OutOfMemoryError for sequenc
retain exception stack traces
Updated: (XERCESJ 1193) NPE or hang when parsing using the "continue afte
Future of NekoHTML
Commented: (XERCESJ 1203) NPE in XMLDTDProcessor
DOM Level 3 APIs for Xalan J and a new Xalan release (2 7 1)
: xml commons external 1 3 04 Release on Wednesday, November 22nd
Commented: (XERCESJ 1247) Incorrect location information on SAX when usin
XInclude exceptions how to mirror Xerces J functionality into Xerces C++?
First proposal on SoC project "Add support for the StAX (JSR 173) cursor API
: xml commons resolver 1 2 Release on Wednesday, November 22nd
Typo in RangeToken java Please check
Validator features
java lang ClassCastException when adopting Node
using the org apache xerces impl xs identity package
Updated: (XERCESJ 1257) buffer overflow in UTF8Reader for characters out
Problem with ref attributes and schema validation
Updated: (XERCESJ 122) XMLSchemaValidator does not contribute element 's d
Performance problem under load Xerces with Weblogic 9 x
remove ignored memory allocation
Commented: (XERCESJ 1177) SAXXMLStreamReader doesn 't always report namesp
Commented: (XERCESJ 977) Null pointer exception during DOM parsing
Commented: (XERCESJ 1197) Code cleanup for org apache xml serialize
Commented: (XERCESJ 1201) Initial contribution for StAX Event API
Updated: (XERCESJ 1061) Regex "$ " and "^ " characters treated as special c
Commented: (XERCESJ 1199) SAXXMLStreamReader should attempt to register a
Commented: (XERCESJ 1061) Regex "$ " and "^ " characters treated as special
Updated: (XERCESJ 589) Bug with pattern restriction on long strings
StackOverflow
xerces Range unnecessarily not garbage collectable if not detached
Updated: (XERCESJ 1178) Error getting prefix for an attribute with no nam
Bug in xs:redefine
Commented: (XERCESJ 1204) Can not set XMLEntityResolver for LSParser
Updated: (XERCESJ 1253) Prototype for SoC2007 project "Add support for th
Updated: (XERCESJ 1259) Add SteamFilter Function to SoC2007 project "Add
Assigned: (XERCESJ 444) SAXException thrown by EntityResolver is reported
Google Summer of Code 2007
Xerces J and XInclude relative path issue
Assigned: (XERCESJ 206) Stack overflow when using a schema validation
Commented: (XERCESJ 1215) Restrictions involving two levels of substituti
Closed: (XERCESJ 1203) NPE in XMLDTDProcessor
non overriding equals methoda
Resolved: (XERCESJ 1079) invalid value returned for TOTALDIGITS facet in
Xerces AS3 port
Updated: (XERCESJ 325) Regular Expression; Pattern "| " clause order de
Updated: (XERCESJ 1196) Javadoc generation fails on Java SE 5 0
Closed: (XERCESJ 1202) DTD validation on XIncluded documents when the sch
Created: (XERCESJ 1124) Nonspecific schema error message
a bug in xerces
Updated: (XERCESJ 1201) Initial contribution for StAX Event API
Closed: (XERCESJ 1254) Empty uris in targetNamespace attribute not report
Links
Home
Oracle database error code
 
Search:  
Power your search with and, or, +, -, or "some phrase" operators.
Xerces
Page 69 of 76 Previous 10   61   62   63   64   65   66   67   68   69   70   Next 10  

building DOM tree using DTD

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 dtd get the info I need (elements attributes values (required

Invalid anyURI type - A Bug Or Intended to Be

But this will cause some problems if the schema file is located in a directory which contains a white space such as on Windows. Based on "Uniform Resource Identifiers (URI) Generic Syntax " http //ww

Invalid anyURI type

In the past I have been trying to set the external-schemaLocation Property and I understand there have been several bugs reported. I am not sure if the particular problem that I am having is a bug in

xerces-j v2.3.0

Hi I am using DOM L3 API 's implemented in xerces-j v2.3.0 for one of my project. But whenever I invoke Document interface getConfig() method or normalizeDocument() method (which are of DOM l

Proper use of getElementById in Xerces 1.4.4

Hi I 'm trying to sign the body of a SOAP message and to do this I would like to make use of the org.w3c.dom.Document.getElementById(String id) method. I am able to perform a validating parse on th

UTF-8 Encoding

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 UTF-8 character by the parser. The parser gives

: Xerces-J 2.4.0 now available

Hi all The Xerces-J team is very happy to announce that version 2.4.0 of Xerces-J is now available. Although in the last release the Xerces Native Interface (XNI) core was declared to be gold thi

NoClassDefFoundError on XMLParser

I keep getting runtime errors with NoClassDefFoundError for the XMLParser. We don 't directly instantiate or use the XMLParser but we do use the DOMParser which extends it. I do have the 2.3.0 Xerces

UTF-8 encoding question

I had a problem with encoding. My files are in different languages. They are having accented greek and all other characters as it appears on the source. My originals files are in RTF format. I want

Using PSVI

Hi I 'm trying to use PSVI to get info about possible content for a WSDL type. I 'm playing with GoogleAPI and I have <xsd complexType name "DirectoryCategoryArray " > <xsd complexConten

normalizeDocument calls printStackTrace

We are using CoreDocumentImpl.normalizeDocument() as our method to revalidate a document after changes. One interesting aspect of the implementation is that there is a direct call to printStackTrac

DO NOT REPLY [Bug 6864] - What is a DOMParser?

> http //xml.apache.org/xerces2-j/javadocs/xerces2/index.html > DOMParser is located in org.apache.xerces.parsers package. I too was searching unsuccessfully for the DOMParser JavaDocs. I so far the

exception during parsing

I use the following code to parse an xml file public boolean parse(final InputStream configuation) { DOMParser parser new DOMParser() ParserErrorHandler errHandler new ParserErrorH

Parsing a large XML file.

I have a big XML file of size about 1GB. I want to validate that file against a XML Schema and log errors. Should i use SAX or DOM Parser to do this? Please note i want just to call the parser.parse()

attribute location

Is there a way to find the location (line and more importantly column) of an attribute using the dom parser? for example if we have a node such as <an_element an_attribute "the attributes value " >

DTDs

Hi In looking at the DocumentTypeImpl API (1.4.4) I see that the class represents the Document Type declaration but not an actual DTD (thus does not appear to support the addition of elements attr

PSVI: schemaNormalizedValue and datatype normalization

Hi My question concerns the behaviour of DOM level 3 core function normalizeDocument with configuration settings "datatype-normalization "true and "validate " true. The function getSchemaNormalize

Whitespace in top-level of DOM document

I am using Xerces 2.3.0 org.apache.xerces.parsers.DOMParser to machine-edit an XML file and save it. I would like to preserve as much of the original formatting as possible (for human readability).

Re: java.lang.ClassCastException: org.apache.xerces.impl.dv.xs.ListDV$ListData

I just realized my original message did not actually nail one detail so I added some code to my catch phrase to test whether the then-current context class loader is the very same object as the cla

java.lang.ClassCastException: org.apache.xerces.impl.dv.xs.ListDV$ListData
fro

I have an application that explicitly manages ClassLoaders and is intended to work with a wide range of versions of Xerces (including even some versions 1.* which is why I 'm still using the old API

reusing parsers

In using a org.apache.xerces.parsers.DOMParser if you have a fixed configuration and feature/property settings is anything much gained by skipping repeated calls to the constructor and instead reus

Parsing CDATA sections

When parsing XML documents with large CDATA sections I notice that it takes an extremely long time. (IE 1 mb XML doc takes 4 minutes) With our latest software release we upgraded to Xerces 2.2.0 fr

Xerces-2 DOMParser bottleneck

I 'm running a servlet under tomcat that DOM parses a couple of xml docs grabs relevant nodes and serializes the new doc into xhtml output. I have found a bottleneck (or deadlock?) when the servlet is

build falis for xerces2-j while creating dom3-jars

I hava a question. I have been trying to access dom3 funtionality by extracting the source code of xerces2 from CVS and building it with target jars-dom3 it creates the dom3-xerces jars and dom3-api

Whitespaces

Hi all Is there a known way to ignore whitespace when loading an xml document through DocumentBuilderFactoryImpl? For those familiar with .NET/C# it 's possible to toggle the PreserveWhitespace fla

cannot compile my simple example

Hi! I want to parse an XML file for it 's elements and attributes (I�d like to use the DOM parser). Unfortunately I get errors when compiling my simple program DomParse.cpp. The makefile seems ok to m

bug

hi iam try to validate a xml file <?xml version "1.0 "? > <config > <parameter name "Encryption_Redirect_Url " > <value > <![CDATA[some cdata contrent]] </value > </parameter > <parameter name

Code that throws the NullPointer

Thanks Panos for the recommendation. I have a Java class that manipulates the XMLDocument that I am using in a series of Java servlets. Below is a part of the code specifically the method that is

Updates to SOAP 1.1 envelope and encoding schemas

FYI. I am not sure if this one is related but the new SOAP schema has been updated to probably fix the error that Xerces 2.3.0 is reporting. See previous threads on this list with the subject "Bug

Desperate help needed: normalize() throwing NullPointerException

Posting some of the code that throws the exception would help. --- Kirsten Barber <kirs10@(protected) > wrote
Page 69 of 76 Previous 10   61   62   63   64   65   66   67   68   69   70   Next 10