Simulating HttpSession

2003-09-11 Thread Altuğ B. Altıntaş
Hi, How can i simulate HttpSession. Back side classes uses HttpSession but testing them without Tomcat seems imposible, any idea ? Regards. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

finding context's jar file

2005-04-14 Thread "Altuğ B. Altıntaş"
I need to find which jar files are being used in one context, for example below code can give me some information about sun.boot.class.path <% String classpath = System.getProperty("sun.boot.class.path"); out.println(" " + classpath); %> Is there anything like that : <% String clas

Re: finding context's jar file

2005-04-15 Thread &quot;Altuğ B. Altıntaş"
I found the answer String classpath = (String) request.getSession() .getServletContext().getAttribute( "org.apache.catalina.jsp_classpath"); Regards. AltuÄ B. AltÄntaÅ wrote: I need to find which jar files are being used in one context, for example