Re: Hpw to import different packages

2000-12-21 Thread Thomas, Omar
Federico, You can import multiply packages.. The problem you are having is java.sql.* and java.util.* both have Date() classes. So you must specify the fully qualified name. like %= new java.util.Date() % or %= new java.sql.Date() % I hope this helps you out. Omar Thomas -Original

Re: com.oreilly.servlet problem

2000-12-21 Thread Thomas, Omar
fau k, when you want a package to be read into the Java CLASSPATH variable ..you must add the root of the files to the CLASSPATH. for example if you put the class files at c:\classes\com\oreilly\servlet; in the classpath you must add 'c:\classes' .. if you are putting the classfiles at