Hi
In the server side, in the class FuncionImpl.java i use this code:
try{
FileInputStream f = new FileInputStream(fichero);
p = new Properties();
p.load(f);
f.close();
DRIVER = p.getProperty("DRIVER");
CONNECTION_URL = p.getProperty("CONEXION");
DB_USER = p.getProperty("DB_USER");
DB_PASSWORD=p.getProperty("DB_PASSWORD");
}
catch(Exception e){
System.out.println(e.toString());
}
and it is ok in hosted mode, but if i compile the application and hold
in apache tomcat it is not ok. Why?
Thank you
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---