Re: [Resin-interest] Any way to override resin's HttpServletRequest implementation?

2012-02-22 Thread Joe Dane
could you wrap the caucho HttpServletRequest in an HttpServletRequestWrapper, e.g. through a ServletListener? On Wed, Feb 22, 2012 at 12:32 PM, Rachel McConnell wrote: > For various reasons too annoying to detail, it may be useful for us to > change one minor behavior of the HttpServletRequest o

Re: [Resin-interest] Start up problem

2007-08-27 Thread Joe Dane
On Aug 27, 2007, at 11:56 AM, Vic Simkus wrote: >> > Sounds like something else is bound to a port that Resin is trying to > use. Do a netstat and make sure that nothing is using ports 8080 > and 6800. that, or he's trying to use a port < 1024 (e.g. 80) and he's not running as root. there

Re: [Resin-interest] help with thread limits => can't break 480

2007-09-05 Thread Joe Dane
guessing: maybe a system limit, a la "ulimit", or perhaps a kernel configuration parameter? On Sep 5, 2007, at 9:08 AM, Adam Allgaier wrote: > We're running Resin 3.0.20 on Apache 2 on FreeBSD 6, we seem to be > hitting a java thread limit at 480 during peak times. > > Resin config: > >

Re: [Resin-interest] rewriting...

2007-09-08 Thread Joe Dane
Take this, coming from someone who has used mod_rewrite quite a bit and rewrite-dispatch not at all, for what it's worth. There is no way you're going to be able to use resin's rewriting as a replacement for mod_rewrite. mod_rewrite is very nearly a little programming language in itself, wi

Re: [Resin-interest] Classpath problem

2007-09-10 Thread Joe Dane
I will reiterate Daniel's good advice: never put application libraries/classes in the "global" classpath, unless you are absolutely certain you know what you're doing. Even then, you probably should avoid the practice. As to your particular problem, I notice that the error message seems

Re: [Resin-interest] Changing the default page encoding for a JSP pages

2007-10-02 Thread Joe Dane
you can do this in the deployment descriptor, or presumably in the resin config file as well. in the deployment descriptor, it'd look something like *.jsp text/html; charset=UTF-8 that's from memory, but there's certainly something about this in the JSP2.0 spec.

Re: [Resin-interest] Changing the default page encoding / character set for JSP pages

2007-10-03 Thread Joe Dane
ilar to what you specified by will set the > default content type for all JSP pages in a Web app. > > I had also tried the following tags in web.xml: > > > > en_US > UTF-8 > > > > But they didn't work either. > > Joe, any chance y

Re: [Resin-interest] resin security authenticator

2007-10-23 Thread Joe Dane
try here: http://wiki.caucho.com/Resin-web.xml On Oct 19, 2007, at 5:03 AM, Huitang Li wrote: > Hi, > > I need to set security constraint in web.xml. However, I do not > want to > use Resin custom tags for authenticators such as xmlAuthenticator, > while > I can use resin authentication c

Re: [Resin-interest] Is it possible to register an mbean in a webapp classloader

2008-03-26 Thread Joe Dane
This may not help you much, but ... I'm doing something similar (spring-managed mbean) but w/o hibernate, and it works as expected for me. I am, however, using a non-standard third party library (Joda Time) in my MBean, and that seems to be working. How are you exporting the bean? I have

Re: [Resin-interest] Profiling...

2008-04-08 Thread Joe Dane
On Apr 8, 2008, at 10:46 AM, Andrew Fritz wrote: > I found the option in a mail thread. Jprofiler is a commercial product. That option won't work unless you've installed JProfiler. I think you can get an evaluation license, but by all means you should consider forking over the cash to bu