RE: jre jar or xalan jar

2003-08-15 Thread Jeff Rodgers
see http://java.sun.com/j2se/1.4.1/docs/guide/standards/ This describes the override mechanism for included external lib in the jre. This is a pain because it may mean you need a separate jre for a given application's requirements. Jeff -Original Message- From: Lingzhi Zhang [mailto:[EM

RE: How do i find the xerces version number from a xercesImpl.jar file ?

2003-06-27 Thread Jeff Rodgers
Specifically: C:\Development\xalan-j_2_5_D1\bin>java -cp xercesImpl.jar org.apache.xerces.impl.Version Xerces-J 2.3.0 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Caching Schemas

2003-04-21 Thread Jeff Rodgers
If the problem is that the included schemas are not resolved with the entity resolver, then the following may fix your problem. This code works whether the schemas are in the filesystem or in a jar. They just need to be in the classpath. The key I found is the setSystemId() call. This allowed xe