I am using the 2.4.5 distribution and I'd like to set up $temp to another folder than the system uses. In my web application I use a servlet to configure some values:
public void init(ServletConfig config) throws ServletException
{
super.init(config);
System.setProperty("objectdb.home",config.getInitParameter("OBJECT_DB_HOME")); // sets $objectdb
System.setProperty("objectdb.conf", config.getInitParameter("OBJECT_DB_CONFIG"));
}
Well, my question is: what would be the name of the property?
Thank you,
Sandu