RE: java.util.MissingResourceException error ... please help!

2001-09-03 Thread Helena Hjertén
MIssingResourceException comes form the code that handles ResourceBundles, a feature for making your code work with several different languages. The exception below shows that your code is looking for a file (text file) with the format key-value, key-value... (there the key matches part of

RE: Gotta Be Something Simple

2001-08-30 Thread Helena Hjertén
Call your servlet from a form action=servlet/packagename.servletname NOT servlets/packagename.servletname unless you specifically defined any additional servlet mappings in your server.xml under the conf directory (http://webbroot/weppapplication/servlet is the default invoker). If your servlet

RE: It worked - Can someone explain why?

2001-08-30 Thread Helena Hjertén
Hi Charles, All classfiles are placed in a directory structure that matches the package name. For example: A class called JavaClass.class in a package called com.anything.project must be placed in a directory structure com/anything/project under a directory that is loaded by the class loader (in