[Resin-interest] resin speed

2006-11-23 Thread Akila Amarathunga
Hi All, I'm quiet new to Resin... At the moment I'm testing with Resin one of our application but I find it takes some time to deliver pages. i use resin 3.0.21 as standalone with jdk 1.5 and mysql on RH linux. I really appreciate if any one could tell me on what Resin deliver speed depend on...

Re: [Resin-interest] Apache Error: failed to map segment from shared object: Permission Denied

2006-11-26 Thread Akila Amarathunga
Hi Ron, I think its better if you check the file permission in modules directory ... bus as far as i know modules should own by root with 755.. or you can recompile the resin.. using only --with-apxs option.. ./configure --with-apxs=/usr/sbin/apxs make make install apxs will handle the module

Re: [Resin-interest] Servlet question.

2006-11-27 Thread Akila Amarathunga
Hi George, If you are using Apache with resin ... i believe u can do this by using mod_rewrite apache module... Please read the mod_rewrite doc on apache... or read "Definitive guide to rewrite" by Rich Bowen Good Luck, Akila On Mon, 2006-11-27 at 13:09 +0200, George Moschovitis wrote: > woul

Re: [Resin-interest] resin speed

2006-11-27 Thread Akila Amarathunga
> corrected by tuning memory, increasing threads, or increasing the > maximum sessions. > > Keith > > Akila Amarathunga wrote: > > Hi All, > > > > I'm quiet new to Resin... At the moment I'm testing with Resin one of > > our application but I find it

Re: [Resin-interest] resin speed

2006-11-28 Thread Akila Amarathunga
Hi Markus, Thank you very much for the comments.. earlier I didn't know about JProfiler.. I'll look into it.. Thanks again. Regards, Akila On Tue, 2006-11-28 at 10:37 +0100, Markus Ken Baron-Moriyama wrote: > ve a load of about 40-50 page requests per second, and Resin > handles this load. When

Re: [Resin-interest] Caching of Static Resources

2006-11-30 Thread Akila Amarathunga
Hi Richard, I didn't follow the full thread of yours... but for my understanding I think you need a method to cache.. I use apache to use the caching work for resin.. so if you are using apache in front of resin then better to use the mod_expire and mod_header apache modules... it helped me serve

Re: [Resin-interest] Caching of Static Resources

2006-11-30 Thread Akila Amarathunga
he files being sent to allow the browser > to cache them. > 2) Adds the files to an in memory cache on the server to reduce disk usage. > > > Regards, > Richard. > > Akila Amarathunga wrote: > > Hi Richard, > > > > I didn't follow the full thread o

[Resin-interest] Resin java exception

2006-12-29 Thread Akila Amarathunga
Hi All, I have RH system with apache 2.0 and resin 3.0. All the requests to Resin goes through apache using mod_caucho. When I do simultaneous searches i get a java exception call like below java.lang.OutOfMemoryError: Java heap space Complete stack: wicket.WicketRuntimeException: Method onForm

Re: [Resin-interest] Resin java exception

2006-12-29 Thread Akila Amarathunga
Thanks, > > Adam Fletcher > Director, Information Technology > PowerSteering Software, Inc. > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Akila > Amarathunga > Sent: Friday, December 29, 2006 9:13 AM > To: General Discuss

[Resin-interest] resin stop responding

2006-12-31 Thread Akila Amarathunga
Hi All, I have resin-pro-3.0.21 with apache. Sometimes it gives http 5XX error saying server not available. I checked the service and its up. But after service restart all goes back to normal. Same thing happens after few hrs. Please let me know if anyone experienced problem like this... Thanks,

[Resin-interest] resin jvm problem

2007-01-04 Thread Akila Amarathunga
Hi All, I have resin 3..0.21 install in a RH el4 and use apache as a frontend. My problem with the default setting resin works ok but it gives an 'outofmemory' error when application usage is high. So I added following in my httpd.sh, args="-J-Xms64m -J-Xmx512m -J-verbose:gc -Xloggc:gc.log" Then

Re: [Resin-interest] resin jvm problem

2007-01-05 Thread Akila Amarathunga
> PowerSteering Software, Inc. > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Akila > Amarathunga > Sent: Friday, January 05, 2007 12:13 AM > To: General Discussion for the Resin application server > Subject: [Resin-interest

[Resin-interest] resin with wicket

2007-01-09 Thread Akila Amarathunga
Hi guys, I use wicket based application with resin... but it seems to be pages timeout after sometime.. Does any one know the default time out period for wicket ? I know its 30 mins in resin... but the pages expire more quickly than that. Please let me know if anyone face same kind of prob... T

[Resin-interest] resin session timeout

2007-01-11 Thread Akila Amarathunga
Hi Guys, Is it possible to session-timeout in resin conf globally where all application get same time out period.. If we can how to do it Thanks, Akila ___ resin-interest mailing list resin-interest@caucho.com http://maillist.caucho.com/mailman/li

Re: [Resin-interest] resin session timeout

2007-01-12 Thread Akila Amarathunga
define a block: > > > 4096 > 20 > false > > > See <http://caucho.com/resin-3.1/doc/session-tags.xtp> for a list of > all the possible session configuration tags. > > Rob > > > On Jan 11, 2007, at 22:17 , Akila Amarathunga

Re: [Resin-interest] Resin... ?????

2007-01-14 Thread Akila Amarathunga
Hi Knut, JVM sets the -Xss to 1 Megabytes.. It has open 1028 files (REG) at the time of giving the error.. At the moment my app open lots of Jar files which uses 10 mb of space... java27042 xxx844rREG 9,1 1189992 11814189//WEB-INF/lib/wicket-1.2.1.jar Am I geeting

Re: [Resin-interest] Resin... ?????

2007-01-22 Thread Akila Amarathunga
Hi Knut, Scott, Gary, Thanks for all the valuable input.. Finally I figured out it was the application that was giving all those problems. We did modifications to the code and now its working fine. Thanks, Akila ___ resin-interest mailing list resin-i

Re: [Resin-interest] Too many open files

2007-03-18 Thread Akila Amarathunga
Hi, Adjust the number of open files using "ulimit -n" and change the stack size using "ulimit -s"... default stack size is 10 mb but I think 2 mb is more than enough.. Also I think you have the following in your web.xml under your applications WEB-INF... configuration D

[Resin-interest] resin php issue

2007-04-04 Thread Akila Amarathunga
Hi All, I have problem using php pages inside my application. I really appreciate if any one can help with it. Below is my configuration. Application Folder - /webappps/test-app web-xml path - /webappps/test-app/WEB-INF/web.xml web.xml has below mention entry

Re: [Resin-interest] Running two resin instances in different IPs

2007-04-19 Thread Akila Amarathunga
Hi, I think it cos of the service... try to run resin-pro-3.1.snap with diff name or something like that.. haven't try it by myself but better to give a try.. Thanks, Akila On Tue, 2007-04-17 at 16:46 +0530, Anitha wrote: > Hello, > I am trying to run two resin servers; resin-pro 3.1.0 and