System.out.println statements not captured in catalina.out

2014-01-02 Thread Tapajyoti Roybarman
Hi, I need to record all debug statements (System.out.println("xyz")) from my application in catalina.out log. When I start Tomcat it creates the log file and only records statements till the server startup. But after that, none of the System.out.println() statements present in my JSPs get rec

Precompiling JSPs while deploying the application in Tomcat

2013-12-10 Thread Tapajyoti Roybarman
Hi Team, Is there any Tomcat setting through which all the JSPs available in my package will get compiled while I deploy the application. Normally a JSP gets compiled while it is being requested and gets collected inside Work folder. I want that all the JSPs in my package should get compiled wh

Re: Need Information regarding Apache Webserver static file configuration

2013-12-09 Thread Tapajyoti Roybarman
Hi Andre, Finally it worked!!! Thanks a ton. Below is the setting that I used. ProxyPassMatch ^/.*\.(gif|jpg|css|png)$! http://localhost:8080/ ProxyPassMatch ^/(.*/servlet/.*)$ http://localhost:8080/$1 ProxyPassMatch ^/(.*\.jsp)$ http://localhost:8080/$1 Now, One final question.

Re: Need Information regarding Apache Webserver static file configuration

2013-12-06 Thread Tapajyoti Roybarman
Hi Andre, Finally it worked!!! Thanks a ton. Below is the setting that I used. ProxyPassMatch ^/.*\.(gif|jpg|css|png)$! http://localhost:8080/ ProxyPassMatch ^/(.*/servlet/.*)$ http://localhost:8080/$1 ProxyPassMatch ^/(.*\.jsp)$ http://localhost:8080/$1 Now, One final question.

Re: Need Information regarding Apache Webserver static file configuration

2013-12-05 Thread Tapajyoti Roybarman
Hi Andre, I apologize for not following the mailing rule. Actually this is the first time that I am taking the help of such a forum. Before I begin asking you anything I want to thank you for such a detailed explanation. To begin with, answer to your question - "why do you want to serve these

Re: Need Information regarding Apache Webserver static file configuration

2013-12-04 Thread Tapajyoti Roybarman
regarding Apache Webserver static file configuration Tapajyoti Roybarman wrote: > Hi, > > Could you please let me know that how can I serve static content like > image files, css files through Apache Webserver instead of Tomcat? That is the normal thing that an Apache httpd we

Need Information regarding Apache Webserver static file configuration

2013-12-04 Thread Tapajyoti Roybarman
Hi, Could you please let me know that how can I serve static content like image files, css files through Apache Webserver instead of Tomcat? Please let me know about all the required configurations in detail. I am connecting Apache webserver and Tomcat using mod_proxy_http module. Also, please