Thanks for the input.  Will certainly make this change and it'll
be availabe in the next release.  

        -bob

> The problem is in XPathReaderFactory.createReader, the line :
> 
>         String className = System.getProperty( DRIVER_PROPERTY );
> 
> should be :
> 
>         String className = null;
>         try {
>             className = System.getProperty( DRIVER_PROPERTY );
>         } catch (SecurityException e) {
>         }
> 
> If someone could modify this...


_______________________________________________
Jaxen-interest mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jaxen-interest

Reply via email to