You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@xerces.apache.org by Edoardo Comar <co...@tecnest.it> on 2000/01/27 11:19:24 UTC

Xerces-J-src.1.0.1.jar

Hi.

I downloaded the Xerces-J-src.1.0.1.jar
and the binary Xerces-J-bin.1.0.1.jar

I don't think to get involved in the cvs builds (for now), so I just like to
point out that to actually be able to recompile the sources (using jbuilder
and jdk1.2.2), I had to :

1)
patch org.apache.xerces.validators.datatype.BinaryValidator

adding the java.util.Enumeration import and at row 92 :
for (Enumeration e = facets.keys(); e.hasMoreElements;) {

for (Enumeration e = facets.keys(); e.hasMoreElements();) {

2)I had to search for org.w3c. sources elsewhere because
all subpackages under package org.w3c.dom;
were missing


bye
Edo