Hi, I have started working on the Tess4J library. Everything works fine on Tomcat Server if run locally. But, the problem arises when I use Glassfish Server. Glassfish server coudln't recognise the tessdata directory. Also, it's not throwing any exceptions. The sample code is written below: File file = new File("sample.jpg"); ITesseract instance = new Tesseract(); instance.setDatapath("/home/vipul/tesseract/tessdata"); String result = instance.doOCR(file); System.out.println("Result is: " + resu...