Hi!

2004-04-24 Thread tomcat-user
Norton AntiVirus eliminato1.txt Description: plain/text - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Is it Tomcat problem or my problem?

2004-04-24 Thread UmamaheswarKalluru
What if the client has disabled cookies? In my coding adventures, I've tracked down two Hey my session disappeared! bugs with this technique. I dont understand by what you meant by the above lines. Thank you, Best Regards, Uma

jk2 problem (newbie)

2004-04-24 Thread franck quinard
Hello, I'm trying to integrate tomcat 5 to apache 2.0.48. When I start apache after tomcat, if I try to access jsp-examples, I get this error message: * Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please

Re: contextInitialized called twice during webapp deployment

2004-04-24 Thread Brett Randall
Milt, Thanks for your reply. Having investigated further, I was able to eliminate the possibility that two instances of my servlet were being deployed. Instead, I am now pretty sure that I ran into http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22478 , where Ant Tasks and HTML Manager

deploying webapps from ant

2004-04-24 Thread Keith Hankin
I am trying to deploy my webapps from ant, however my undeploy task does not always work. It quietly informs me that everything is ok, however the webapps subdirectory still exists, with at least some of the files still there. Tomcat appears to be holding onto locks on the files and they

RE: tomcat 5 and cgi-bin

2004-04-24 Thread zhicheng wang
thanks Mark suppose that i can use more than one app? such as init-param param-nameexecutable/param-name param-valueXXXapp/param-value /init-param init-param param-nameexecutable/param-name param-valueYYYapp/param-value init-param ? cheng --- Mark Thomas [EMAIL PROTECTED] wrote:

RE: tomcat 5 and cgi-bin

2004-04-24 Thread Mark Thomas
You can't do this within the same web application. You should be able to do this if you have a separate web application for each CGI executable. You will have to configure the cgi servlet differently in each web application. Mark -Original Message- From: zhicheng wang [mailto:[EMAIL

Hi, it's me

2004-04-24 Thread tomcat-user
Norton AntiVirus eliminato1.txt Description: plain/text - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Tomcat 5.0.19 Bug

2004-04-24 Thread UmamaheswarKalluru
Hi, I was thinking that Tomcat 5.0.19 has improved over its previous versions. But I lately came to know that this release has bug with it. It has lot of problems in maintaining the session objects. I tested my application on Tomcat 5.0.19 and it gave me lot of session problems. e.g expiring

Re: Tomcat 5.0.19 Bug

2004-04-24 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Hi, I was thinking that Tomcat 5.0.19 has improved over its previous versions. But I lately came to know that this release has bug with it. It has lot of problems in maintaining the session objects. I tested my application on Tomcat 5.0.19 and it gave me lot of session

Re: Tomcat 5.0.19 Bug

2004-04-24 Thread UmamaheswarKalluru
I have posted my problems with this Heading Is it Tomcat problem or my problem? I tested the same application on my machine using 4.0.6 and its working good. I installed Tomcat 5.0.19 on other machine to thest the same application and it is having problems with the session. Ofcourse as I

Re: connection Poll

2004-04-24 Thread Masood Reyhanei Hamedani
Yes, I did it with version 4.1.18. What's your question? masood - Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25¢

hey you

2004-04-24 Thread tomcat-user
Norton AntiVirus gelöscht1.txt Description: plain/text - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Information

2004-04-24 Thread info
Norton AntiVirus gelöscht1.txt Description: plain/text - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: deploying webapps from ant

2004-04-24 Thread Jacob Kjome
Are you sure you deploying your app to the webapps directory? Did you do an install or a deploy? In Tomcat5, install has been deprecated and deploy should be used with the localWar attribute if you mean to deploy it to a local directory. In both cases, deploy without localWar will upload

Deploying the manager on another port?

2004-04-24 Thread Steve Krulewitz
Hey all -- I would like to use the manager web application to be able to push updates to my live web application. However, my web application is mounted off the root and any URL is considered valid for the web application, so mounting the manager at /manager or any other URL isn't doable. I

jsp-examples problem.....

2004-04-24 Thread Savitha 'n' Narahari
Hello All:   JDK USED : 1.4.2 TOMCAT USED : 5.0.19 OS used : WINDOWS XP. Machine rebooted, made the change to jsp file.   I have one quick problem that I have no idea why it is happening.  I went to the cal folder under jsp-examples.  I modified the cal1.jsp page.   I changed . . TABLE

Apache2 mod_ssl cert error to Tomcat

2004-04-24 Thread Pete Stokes
Hi. I am trying to get Apache to reverse proxy (thru SSL) to Tomcat5 on a different box. I have a thawte cert, and both Apache / Tomcat work fine with SSL, but when trying to pass an SSL session from Apache to Tomcat, Apache reports: [Sat Apr 24 21:50:09 2004] [error] Certificate

RE: Getting a request in a non English character

2004-04-24 Thread Yair Fine
Hi Mark, Thanks again for you help. In order to help you help me (-' , I will give more details on my goal and my problem: I want to build a servlet which let application clients ( not HUMAN.a client application, thus HTML forms will do no use here) Send HTTP requests to the servlet, which

Re: Is it Tomcat problem or my problem?

2004-04-24 Thread Dennis Dai
Uma, How did you manage the session? Are you using container managed security? From your description, it seems that you manage sessions yourself. If that's the case, make sure you create a new session at login and invalidate session at logout ... Dennis On 4/22/2004 7:16 AM, [EMAIL

Re: Is it Tomcat problem or my problem?

2004-04-24 Thread Dennis Dai
On 4/24/2004 12:02 AM, [EMAIL PROTECTED] wrote: What if the client has disabled cookies? You'll need to use response.encodeURL(someURL) to rewrite the URL, so that JSESSIONID is appended with each link. Dennis - To