You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Philippe Vijghen <Ph...@forem.be> on 2000/06/30 09:05:27 UTC

FW: xalan extensions

I received this e-mail related to my thread.
It sounds I am not the only to face the issue.

	Philippe

> -----Original Message-----
> From: xxxx
> Sent: vendredi 30 juin 2000 07:19
> To: phv@acse.be
> Subject: xalan extensions 
> 
> 
> Philippe: 
> 
> Thanks for your question to the xalan-dev list. I've spent
> the last five hours trying to solve this issue; finding your letter
> gave at lease some sort of solution: I can now go ahead by putting my
> .jars under /jre/lib/ext as you mention.
> 
> The error has to be in /xpath/ExtensionFunctionHandler.java, I think.
> 
> Strange when equivalent code, like this, 
> 
> import java.lang.*;
> 
> public class TestJava {
>     
>     public static void main(String argv[]) {
>         try {
>             Object object = Class.forName(argv[0]);
>         }
>         catch (ClassNotFoundException e) {
>             System.out.println("Woah: " + e);
>         }
>     }
> }
> 
> can locate the classes, but xalan cannot!
> 
> Yours,