It's most likely a CLASSPATH issue, and so the answer is specific to the individual servlet container you're using and the ClassLoaders it incorporates. You might examine the documentation for your web server/servlet container to see what it says about class access by servlets. If the classes you've written are not themselves defined inside a package -- i.e., they're in the default package -- this can be a particularly tricky situation to deal with; best to define all your classes in packages of their own.
OTOH, it could also be an access issue. Jess can only work with the public interfaces of classes -- i.e., it can't create instances of non-public classes, or call non-public methods; that's just how reflection works. I think Hissam wrote: [Charset iso-8859-1 unsupported, filtering to ASCII...] > Hi, > I develop an aplication with many applets communicating with a servlet. > After decoding messages, the servlet call an instance of Rete to batch a > file that uses some commands calling external classes writed by me. The > problem is that these classes are not recognized. What must I do to resolve > this problem ? > Thank you. > --------------------------------------------------------- Ernest Friedman-Hill Distributed Systems Research Phone: (925) 294-2154 Sandia National Labs FAX: (925) 294-2234 Org. 8920, MS 9012 [EMAIL PROTECTED] PO Box 969 http://herzberg.ca.sandia.gov Livermore, CA 94550 -------------------------------------------------------------------- To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]' in the BODY of a message to [EMAIL PROTECTED], NOT to the list (use your own address!) List problems? Notify [EMAIL PROTECTED] --------------------------------------------------------------------
