j2ee thread: NoDefClassFoundError
Hi Keith
You are not saying which class is what you want, I'll explain better:
"org.xml.sax" is only a package name, this package contains classes
that are which you can instanciate, ie:
If class you want to instanciate is "SAXParser" you should write this:
Class.forName("org.xml.sax.SAXParser").newInstance;
^^package^^.^^CLASS^^
Usefull?? I hope
|





