[Resin-interest] Problem with clusterping...

2008-02-14 Thread Alex Sharaz
Just tried to set up a ping config to email myseld as per this example off the web site and get /var/web/conf/resin.conf:169: 'mail-to' is an unknown property of 'com.caucho.server.admin.PingThread'. Example on web page is:- resin xmlns=http://caucho.com/ns/resin;

[Resin-interest] p.s. ping config problem am running 3.1.s080211

2008-02-14 Thread Alex Sharaz
* To view the terms under which this email is distributed, please go to http://www.hull.ac.uk/legal/email_disclaimer.html

Re: [Resin-interest] Resin 3.0.x wrapper.pl never does a kill -9 on child?

2008-02-14 Thread Scott Ferguson
On Feb 14, 2008, at 11:06 AM, Chris Schneider wrote: Hello Resin Buddies, I've been tracking down a problem we're having running Resin 3.0.21 for integration testing (part of a Maven-based build) on our Mac OS X development machines. For some reason, Resin often doesn't shut down

[Resin-interest] 3.0.18-3.0.23 = Increased Network Traffic

2008-02-14 Thread Robert Leland
When we upgraded Resin from 3.0.18 to 3.0.23 last month I see about 3 times as many files being requested in the IIS logs. Specifically 600% more CSS files are being requested 300% more GIF files are being requested 4% fewer struts actions were executed. It appears that files are not

Re: [Resin-interest] 3.0.18-3.0.23 = Increased Network Traffic

2008-02-14 Thread Sam
Date: Thu, Feb 14, 2008 at 04:19:23PM -0500 Subject: [Resin-interest] 3.0.18-3.0.23 = Increased Network Traffic When we upgraded Resin from 3.0.18 to 3.0.23 last month I see about 3 times as many files being requested in the IIS logs. Specifically 600% more CSS files are being requested

Re: [Resin-interest] 3.1.3

2008-02-14 Thread Arthur Naylor
if i use the url-pattern such as in the following ... servlet-mapping url-pattern=/food/ servlet-name=Categories/ servlet-mapping url-pattern=/travel/ servlet-name=Categories/ servlet-mapping url-pattern=/wine/ servlet-name=Categories/ things work fine ... the servlet is called and the

Re: [Resin-interest] 3.1.3

2008-02-14 Thread Knut Forkalsrud
Arthur Naylor wrote: if i use the url-pattern such as in the following ... servlet-mapping url-pattern=/food/ servlet-name=Categories/ servlet-mapping url-pattern=/travel/ servlet-name=Categories/ servlet-mapping url-pattern=/wine/ servlet-name=Categories/ things work fine ... the

[Resin-interest] resin-pro-3.1.s080211 and Drupal 6.0

2008-02-14 Thread Stargazer
The install worked fine and the resulting site is ok too. I noticed this in the logs though: [23:47:43.062] {http--8080-4} java.lang.NoClassDefFoundError: com/caucho/quercus/env/InternStringValue [23:47:43.078] {http--8080-4} java.lang.NoClassDefFoundError:

Re: [Resin-interest] 3.1.3

2008-02-14 Thread Arthur Naylor
servlet-mapping url-regexp=/(food|travel|wine)/ servlet- name=Categories/ does not work either On Feb 14, 2008, at 6:55 PM, Knut Forkalsrud wrote: Arthur Naylor wrote: if i use the url-pattern such as in the following ... servlet-mapping url-pattern=/food/ servlet-name=Categories/

Re: [Resin-interest] 3.1.3

2008-02-14 Thread Knut Forkalsrud
your http request, is it GET /food/, or is there more in the path, such as GET /food/dinner.html. If so, you should have wildcards in the mapping, for example: servlet-mapping url-pattern=/food/* servlet-name=Categories/ servlet-mapping url-regexp=/(food|travel|wine)/.*