Re: reload not working

2006-11-28 Thread Galam
Well. why can't your move your application outside the tomcat folder? For example, On 11/28/06, pir8ped <[EMAIL PROTECTED]> wrote: Hi, I have an app working OK in Tomcat 5.5.9, but I can't get it to reload. I get errors such as: D:\workspace\starfriend\build.xml:319: Failed to copy D

Re: can Tomcat forward the request to another Http Server?

2006-11-28 Thread Galam
You can use the jakarta commons-HttpClient to re-submit the requests to JMXHttpAdaptor http://jakarta.apache.org/commons/httpclient/ On 11/15/06, Liu Frank <[EMAIL PROTECTED]> wrote: Hi All, Now I am suffering a problem: I use Apache as the Web Server and Tomcat as the JSP/Servlet Server

Re: getSession() creates new session every time when using IE6

2006-07-04 Thread Galam
ssion() return new session every time) http://localhost:8080/app01/hello.jsp (okay). I think for some reason, the hostname in the URL has to match the name of the host specified in the section of the server.xml. Otherwise, IE6 won't be able to set the cookie correctly. Galam. On 7

getSession() creates new session every time when using IE6

2006-07-04 Thread Galam
html1-transitional.dtd";> <[EMAIL PROTECTED] import="javax.servlet.http.*" %> Test Current Time = <%=new java.util.Date()%> <% HttpSession ms = request.getSession(false); %> session isNew = <%=ms.isNew() %>, ID = <%=ms.getId() %> -- Can anyone give it a try? Thanks! Galam.