Wayne,

Thank you for your suggestion. I put copies of jaxp.jar and parser.jar from
jaxp1.0.1 package (Sun Microsystems) to /usr/java/jre/lib/ext and the file
was compiled.

Does anyone know why and what case we need to have crimson.jar, xlan.jar?

The second Q. (maybe it was corrected for the beta release): why is needed
to use deprecated functions in struts.util.BeanUtils.java:

LinkUserTag.java:191: warning: filter(java.lang.String) in
org.apache.struts.util.BeanUtils has been deprecated
 url.append(BeanUtils.filter(user.getUsername()));
                            ^
LinkUserTag.java:197: warning: filter(java.lang.String) in
org.apache.struts.util.BeanUtils has been deprecated
 results.append(response.encodeURL(BeanUtils.filter(url.toString())));
                                                   ^
Similar output for LinkSubscriptionTag.java.

In struts.util.BeanUtils.java two deprecated functions are used:
ResponseUtils.filter() and PropertyUtils.getProperty().  I have (and maybe
others) a tag "filter" to filtering special characters for HTML
interpreters. Maybe it is possible to use this code instead of the
deprecated function?


Thanks,

Maya

Wayne Ohm wrote:

> Are you sure you have installed an XML parser?  Make sure you download it
> first (http://java.sun.com/xml), and install the jar files (jaxp.jar,
> crimson.jar, xlan.jar) in C:\jdk1.3\jre\lib\ext (for JDK v1.3, for
> example).  This will eliminate the need to modify CLASSPATH.
>
> Maya Muchnik wrote:
>
> > Hi,
> > I have tried to compile struts-example. DatabaseServlet.java is looking
> > for HandlerBase.class and InputSource.class from org.xml.sax. The error
> > messages are:
> >
> > DatabaseServlet.java:273: cannot access org.xml.sax.HandlerBase
> > file org/xml/sax/HandlerBase.class not found
> >  Digester digester = new Digester();
> >                             ^
> > DatabaseServlet.java:287: cannot access org.xml.sax.InputSource
> > file org/xml/sax/InputSource.class not found
> >  digester.parse(bis);
> >                 ^
> >
> > Maybe I have missed this question from others.
> >
> > Maya
> > P.S. Maybe I have the old struts.jar?

Reply via email to