I’m stepping into the code when i step into the following the following code:
File file = new File( xmlFile );
if( file == null )
throw new Exception( “Unable to open file” );
SAXBuilder sax = new SAXBuilder();
Its ok until i step over SAXBuilder which is part of the JDOM package.
Now the jdom.jar file is part of the jar list in my project ( added under properties\java build path\libraries ). I even added it to the www root\WEB-INF\lib directory but it still fails?
I’ve used this class hundreds of times and new to myeclipse. So i know i’m doing something wrong.
Thanks