problem declaring objects...
why i always have to do this in order to solve errors:
java.util.Date origen = new java.util.Date();
java.sql.Date fecha = new java.sql.Date(orige
java.sql.Time hora = new java.sql.Time(origen.getTime());
java.util.Properties props = new java.util.Properties();
instead of this:
Date origen = new Date();
Date fecha = new Date(origen)
Time hora = new Time(origen.getTime());
Properties props = Properties();
the same with all kinds of variables, methods, functions, etc. even if i do this:
import="java.sql.*"
import java.io.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
etc...
:S
if i dont do it errors like this happens:
Generated servlet error:
[javac] C:\Sun\AppServer\domains\domain1\generated\jsp\j2ee-modules\__default-web-module-server\org\apache\jsp\fmail_jsp.java:91: cannot find symbol
[javac] symbol : class MyAuthenticator
[javac] location: class org.apache.jsp.fmail_jsp
[javac] Authenticator auth = new MyAuthenticator();
[javac] ^
[javac] 1 error

