RE: Problem with JNI, Tomcat 4.0.1 and FreeBSD

2002-02-14 Thread Manish Bhatnagar
Where are you putting your mylib.so library? It should be in $CATALINA_HOME\lib. -Original Message- From: Mario Fernandez [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 1:40 AM To: [EMAIL PROTECTED] Subject: Problem with JNI, Tomcat 4.0.1 and FreeBSD Hi

RE: Problem with JNI, Tomcat 4.0.1 and FreeBSD

2002-02-15 Thread Manish Bhatnagar
like this, but always with Tomcat 3.2.3. In Tomcat 4.0.1, should I do something special in any configuration file?? -Mensaje original- De: Manish Bhatnagar [mailto:[EMAIL PROTECTED]] Enviado el: Friday, February 15, 2002 5:29 AM Para: Tomcat Users List Asunto: RE: Problem with JNI

RE: Problem with JNI, Tomcat 4.0.1 and FreeBSD

2002-02-15 Thread Manish Bhatnagar
is: The page cannot be displayed. I think this is because Tomcat is crashing, but I donĀ“t know why. -Mensaje original- De: Manish Bhatnagar [mailto:[EMAIL PROTECTED]] Enviado el: Friday, February 15, 2002 10:45 AM Para: Tomcat Users List Asunto: RE: Problem with JNI, Tomcat 4.0.1

RE: Problem with JNI, Tomcat 4.0.1 and FreeBSD

2002-02-15 Thread Manish Bhatnagar
); #ifdef __cplusplus } #endif #endif -Mensaje original- De: Manish Bhatnagar [mailto:[EMAIL PROTECTED]] Enviado el: Friday, February 15, 2002 10:58 AM Para: Tomcat Users List Asunto: RE: Problem with JNI, Tomcat 4.0.1 and FreeBSD I guess that is the message displayed when

RE: Jetty .vs. tomcat

2002-03-01 Thread Manish Bhatnagar
By any chance are you using JNI in your webapp? -Original Message- From: Steve Wong [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 3:10 PM To: Tomcat Users List Subject: RE: Jetty .vs. tomcat Hi mingfai, I am trying other application servers because I have some

RE: Tomcat Memory usage(Urgent!)

2002-03-08 Thread Manish Bhatnagar
We faced this problem some time back. The memory usage seemed to increase to the point where no other application could be started. Many times we had to restart the NT machine itself. We did a thorough code-review and fixed the leaks. But even after that the Tomcat memory usage kept on

Excessive high usage of memory by Tomcat on NT

2002-01-21 Thread Manish Bhatnagar
Hello all: We are facing the problem of excessive memory usage by our servlets (that call JNI functions). The memory usage seems to touch 50+ MB in 2000 Server but it drops down to 30 MB soon. But, this does not happen in NT. The memory keeps on increasing and there is a point in time when Tomcat

RE: Excessive high usage of memory by Tomcat on NT

2002-01-23 Thread Manish Bhatnagar
as a service? -Original Message- From: Manish Bhatnagar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 22, 2002 12:18 AM To: Tomcat Subject: Excessive high usage of memory by Tomcat on NT Hello all: We are facing the problem of excessive memory usage by our servlets (that call JNI

Re: Where to Place Bean files

2001-06-06 Thread Manish Bhatnagar
Hello all! I am facing the same problem. I created a bean that I am using in a JSP. The JSPs are in F:\jakarta-tomcat-3.2.1\jakarta-tomcat-3.2.1\webapps\manish\jsp I tried putting the Bean in the same directory where my JSP is present. It doesn't work. Also I placed it in

Re: Where to Place Bean files

2001-06-06 Thread Manish Bhatnagar
Thanks to all of you. The problem is solved. Manish - Original Message - From: Boris Niyazov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 06, 2001 8:27 PM Subject: Re: Where to Place Bean files Beans should reside in WEB-INF/classes, so in you case (assuming the bean

RE: c++ dll

2001-07-05 Thread Manish Bhatnagar
Hi Arik! Where did you place the dll in Tomcat? Try placing it in TOMCAT_HOME/lib. ..mb.. -Original Message- From: Arik Levin [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 4:46 PM To: [EMAIL PROTECTED] Subject: c++ dll Hi. I have some c++ dll,

IOException while downloading a file

2001-07-11 Thread Manish Bhatnagar
IOException in: R( /mycontext + /myproject/15/verify/0/abc.exe + null) Connection reset by peer: socket write error Any idea why does it happen? Tia, Manish Bhatnagar

RE: IOException while downloading a file

2001-07-12 Thread Manish Bhatnagar
Thanks very much, Marcus, for your explanation. Manish -Original Message- From: Deacon Marcus [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 11:04 AM To: [EMAIL PROTECTED] Subject: RE: IOException while downloading a file Hi, -Original Message- From: Manish Bhatnagar

Re: Cache problem with IE

2001-03-14 Thread Manish Bhatnagar
Try the following code: httpservletresponse.setHeader("Expires","0");httpservletresponse.setHeader("Cache-Control", "no-cache");httpservletresponse.setHeader("Cache-Control", "no-store");httpservletresponse.setHeader("Pragma", "no-cache"); It's working fine for me. IE5, NN4.7 on Win 98,