Re: [Resin-interest] No sessions in Resin 4

2009-06-17 Thread Mattias Jiderhamn
Scott Ferguson wrote (2009-06-05 18:11): > > On Jun 3, 2009, at 10:59 PM, Mattias Jiderhamn wrote: > >> Done a bit more debugging and I have arrived at >> com.caucho.server.distcache.FileCacheManager.put() which does nothing >> but return null!? >> Should persistent-store type="file" work at all...

Re: [Resin-interest] Updating Hessian in Resin 4.0 deployments

2009-06-17 Thread Mattias Jiderhamn
Hessian was extracted to a separate hessian.jar in the Resin dist a while back, which made it possible to upgrade Hessian without changing Resin version. For some reason hessian was moved back into resin.jar. /Mattias Scott Ferguson wrote (2009-06-18 00:16): > On Jun 17, 2009, at 2:10 PM, Rick Ma

Re: [Resin-interest] Does dependency-check-interval affect jspchanges?

2009-06-17 Thread Rob Lockstone
I'd recommend setting the global dependency-check-interval and the jsp one and not worry about the inheritance aspect. That's what we do and it works fine. What you have below should do what you want. The only change I'd make is to use 60s instead of just 60. I'm not sure if resin assumes

Re: [Resin-interest] Updating Hessian in Resin 4.0 deployments

2009-06-17 Thread Rick Mann
On Jun 17, 2009, at 15:16:19, Scott Ferguson wrote: > You should be able to just download the source and use ant. I think > we cleared up the dependencies (with the exception of 'ant dist'). Oh hey! Look at that! It seemed to work. I'll try actually running it later ;-) -- Rick

Re: [Resin-interest] Ignore query-parameters in Resin's rewrite-dispatch

2009-06-17 Thread Rob Lockstone
I don't think the query parameters are "reachable" by the rewrite engine. Not sure though. But in any event, why can't new.jsp just ignore them? Rob On Jun 17, 2009, at 13:33, Steffen Busch wrote: Is it possible with Resin 3.1 to ignore query parameters in case of a redirect using the buil

Re: [Resin-interest] Bug when Injecting beans in different scope with bytecode java.lang.VerifyError

2009-06-17 Thread Scott Ferguson
On Jun 17, 2009, at 5:40 AM, wesley wrote: > Dear Ferg, > > I found a annoying bug describing below: Thanks. I've filed a bug report. It's probably just some counting we got wrong in the bytecode enhancement. -- Scott > > > Environment: > Resin 4.0.0 > JDK: Sun JDK 1.6.0_14 x64 or JRockit

Re: [Resin-interest] Updating Hessian in Resin 4.0 deployments

2009-06-17 Thread Scott Ferguson
On Jun 17, 2009, at 2:10 PM, Rick Mann wrote: > > On Jun 17, 2009, at 13:58:29, Scott Ferguson wrote: > >> >> On Jun 17, 2009, at 1:48 PM, Rick Mann wrote: >> >>> If I download/build a separate Hessian library and drop it into my >>> WEB- >>> INF/lib directory, will it get used instead of the one

Re: [Resin-interest] Updating Hessian in Resin 4.0 deployments

2009-06-17 Thread Rick Mann
On Jun 17, 2009, at 13:58:29, Scott Ferguson wrote: > > On Jun 17, 2009, at 1:48 PM, Rick Mann wrote: > >> If I download/build a separate Hessian library and drop it into my >> WEB- >> INF/lib directory, will it get used instead of the one built-in to >> Resin? > > No, you need to put the replace

Re: [Resin-interest] Updating Hessian in Resin 4.0 deployments

2009-06-17 Thread Scott Ferguson
On Jun 17, 2009, at 1:48 PM, Rick Mann wrote: > If I download/build a separate Hessian library and drop it into my > WEB- > INF/lib directory, will it get used instead of the one built-in to > Resin? No, you need to put the replacement in the CLASSPATH (so it's loaded before the resin.jar).

[Resin-interest] Updating Hessian in Resin 4.0 deployments

2009-06-17 Thread Rick Mann
If I download/build a separate Hessian library and drop it into my WEB- INF/lib directory, will it get used instead of the one built-in to Resin? TIA, -- Rick ___ resin-interest mailing list resin-interest@caucho.com http://maillist.caucho.com/mai

[Resin-interest] Ignore query-parameters in Resin's rewrite-dispatch

2009-06-17 Thread Steffen Busch
Is it possible with Resin 3.1 to ignore query parameters in case of a redirect using the built-in rewrite-dispatch capabilities? For example requests to "/old.jsp?p1=val1" should be redirected to "/new.jsp", discarding the query parameters such as "?p1=val1" I have tried this but the

Re: [Resin-interest] lighttpd and nginx

2009-06-17 Thread Scott Ferguson
On Jun 17, 2009, at 6:14 AM, Ronan Lucio wrote: > Hi Scott, > > Scott Ferguson escreveu: >> If you're looking at nginx for performance, you should benchmark >> Resin >> as a load-balancer as well, especially if you're using proxy caching. >> For 4.0, the performance numbers were fairly close (n

Re: [Resin-interest] lighttpd and nginx

2009-06-17 Thread Ronan Lucio
Hi Scott, Scott Ferguson escreveu: > If you're looking at nginx for performance, you should benchmark Resin > as a load-balancer as well, especially if you're using proxy caching. > For 4.0, the performance numbers were fairly close (nginx slightly > faster). Do you think Resin-4.0 is reliabl

[Resin-interest] Bug when Injecting beans in different scope with bytecode java.lang.VerifyError

2009-06-17 Thread wesley
Dear Ferg, I found a annoying bug describing below: Environment: Resin 4.0.0 JDK: Sun JDK 1.6.0_14 x64 or JRockit 1.6.0_11 x64 test.TestServlet === package test; import javax.servlet.*; import javax.servlet.http.HttpServlet; import javax.servlet.htt

Re: [Resin-interest] lighttpd and nginx

2009-06-17 Thread Ronan Lucio
Hi Steffen, For all I have understood it refers to Resin's-4.0, which is still beta. Anyway to use it with 3.1? Thanks, Ronan Steffen Busch escreveu: I don't know about lighttpd, but there was a blog post recently regarding nginx, check this: http://blog.caucho.com/?p=173 Regards, Steffen 2

Re: [Resin-interest] Does dependency-check-interval affect jspchanges?

2009-06-17 Thread Jens Dueholm Christensen
Scott Ferguson wrote: JSP is handled separately and has its own check interval. The concepts are similar, of course, but the actual needs are different enough that it made more sense to configure them separately. Thanks Scott However, as Rob Lockstone points out regarding the jsp ver