I had to do something like that myself. Here's a little method that creates
a folderpath for each unique session.
public File getTempDir(HttpSession hsess)
{
String path = hsess.getServletContext().getRealPath("/"); // "/"
context root of the application
return new File(path, h
There are various posts, but among them I can't find an answer. I hope there
is one.
I am Trying to do a Weblogic EJB t3 lookup from a web app running in Tomcat
5.5. After deploying WL 10.3 jars in Tomcat's common/lib area, I can
authenticate with WL's security Realm, but when I do an
Initial