Menu is not working for since Tomcat 7.0.42

2014-01-09 Thread Chinmoy Chakraborty
Hello, We have a web application which has menus and sub menus which are basically divs. On clicking on menu we are showing the sub menus. This happens through AJAX request. The application was working fine till Tomcat 7.0.41. But since 7.0.42 it stopped working. We are using jdk 7. We did not c

Re: Resource not available in Tomcat 7.0.29

2012-10-11 Thread Chinmoy Chakraborty
Thanks a lot Chris. I found the problem. It was my problem. I was putting wrong '/' (forward slash) before the mentioned page. Everything works as expected now. Chinmoy On Fri, Oct 12, 2012 at 10:29 AM, Chinmoy Chakraborty wrote: > Chris, > > Thanks a lot for your reply...

Re: Resource not available in Tomcat 7.0.29

2012-10-11 Thread Chinmoy Chakraborty
Chris, Thanks a lot for your reply...here are my answers for your questions.. On Thu, Oct 11, 2012 at 8:34 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Chinmoy, > > On 10/11/12 10:55 AM, Chinmoy Cha

Resource not available in Tomcat 7.0.29

2012-10-11 Thread Chinmoy Chakraborty
Hi All, I am using Tomcat 7.0.29 and I have an application which uses JSF 1.2. All my .htm requests are mapped to faces Servlet. On login it allows to me go x.htm and renders the page nicely but when I press BACK button of the browser internally it calls "*window.location.href = "/x.htm*"; and it

Re: Facing Memory leak - 64 bit Tomcat 6.0.35 with windows 2008 R2(64 bit JVM 1.6.0_33)

2012-09-04 Thread Chinmoy Chakraborty
What's the maximum heap size allocated to the JVM in both cases? you can try increasing the same where you are getting OME. you can set the heap size like this: -Xms 512m -Xmx 1024m Chinmoy On Wed, Sep 5, 2012 at 12:20 PM, Shailendra Singh wrote: > Hi, > > We are using 64 bit Tomcat 6.0.35 wi

Re: Is it possible to rename a jsp file in tomcat?

2010-12-15 Thread Chinmoy Chakraborty
Thanks for your reply...my requirement is i want to disable and enable a jsp repeatedly (whether accessed or not) depending on certain custom flag. how i can achieve this in tomcat? On Wed, Dec 15, 2010 at 7:14 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > F

Is it possible to rename a jsp file in tomcat?

2010-12-15 Thread Chinmoy Chakraborty
Hello, Is it possible to rename a jsp file in tomcat? I noticed I can rename from 'abc.jsp.out' to 'abc.jsp' but it does not allow renaming from 'abc.jsp' to 'abc.jsp.out' after I access the jsp. I guess once the jsp is accessed tomcat creates the jsp class and then onwards it maintains one to one

Issue while stopping Tomcat 6.0.24 using java 1.6.0_18

2010-03-08 Thread Chinmoy Chakraborty
Hi All, In our web app we use JSF1.1 (Sun's RI) . Now when our app is deployed in tomcat 6.0.24 using java version "1.6.0_18" and we start tomcat and then subsequently stop tomcat we are getting the following errors in catalina.log INFO: Stopping service Catalina Mar 8, 2010 7:02:04 PM org.a

Re: Is it possible to delete a jar file from ../WEB-INF/lib when Tomcat is running?

2010-03-08 Thread Chinmoy Chakraborty
Thanks everyone for help. Chinmoy On Thu, Mar 4, 2010 at 6:43 PM, Michael Powe wrote: > On Thu, Mar 04, 2010 at 06:26:50PM +0530, Chinmoy Chakraborty wrote: > > > Actually I want to update the jar with the latest one inside 'lib'...and > > want to make our app ho

Re: Is it possible to delete a jar file from ../WEB-INF/lib when Tomcat is running?

2010-03-04 Thread Chinmoy Chakraborty
Actually I want to update the jar with the latest one inside 'lib'...and want to make our app hot-updatable. what would be a good idea for that? On Thu, Mar 4, 2010 at 5:23 PM, Pid wrote: > On 04/03/2010 10:53, Chinmoy Chakraborty wrote: > >> Hi All, >> >> I

Is it possible to delete a jar file from ../WEB-INF/lib when Tomcat is running?

2010-03-04 Thread Chinmoy Chakraborty
Hi All, Is it possible to delete a jar file from ../WEB-INF/lib when Tomcat is running? I tried to delete the jar from 'lib' after putting following entry in catalina.policy: grant codeBase "file:${catalina.home}/webapps/abcd/WEB-INF/lib" { permission java.io.FilePermission "read, write, delete";

Re: How to use custom classloader to load my own app classes in tomcat?

2010-01-21 Thread Chinmoy Chakraborty
f my app? can you please elaborate your point [2] i.e. Write code in web app to use your custom classloader? could you please give me an example? hope i have made clear about what i want to achieve. Chinmoy On Thu, Jan 21, 2010 at 5:58 PM, Peter Crowther wrote: > 2010/1/21 Chinmoy Chak

How to use custom classloader to load my own app classes in tomcat?

2010-01-21 Thread Chinmoy Chakraborty
Hi All, How I can use my own custom classloader to load my own app classes inside webapp? Please share some ideas. Chinmoy

Re: Newbie Question

2009-11-30 Thread Chinmoy Chakraborty
Thanks a lot for your reply guyz...I will give it a shot... Thanks, Chinmoy On Fri, Nov 27, 2009 at 5:41 PM, Mark Thomas wrote: > Chinmoy Chakraborty wrote: > > Hi All, > > > > I am trying to understand basic architecture of tomcat server and also > > started

Newbie Question

2009-11-26 Thread Chinmoy Chakraborty
Hi All, I am trying to understand basic architecture of tomcat server and also started to look into the code. What should me my starting point (also source code wise) to understand basic workflow of tomcat server? Chinmoy