[Resin-interest] Anyone remote debug with Resin 3.x and IntelliJ?

2007-06-18 Thread Ryan Vanderwerf
I recently switched from Windows to Ubuntu 7.04 (fiesty fawn) 32 bit and I can't seem to get remote debugging to work with Resin 3.x in IntelliJ 6 or 7.0M1. Resin 2.x works fine. Basically what happens is when I get to a breakpoint, my IDE doesn't suspend - it just keeps going. I can remotely

Re: [Resin-interest] Anyone remote debug with Resin 3.x and IntelliJ?

2007-06-18 Thread Ryan Vanderwerf
Scott Ferguson wrote: You'll want to use a jvm-arg (in the server block) instead of the -X The initial process is not the same as the actual Resin process, and since it's Resin that you want to debug, not the startup program, you need to update the jvm-arg. -- Scott Thanks

Re: [Resin-interest] code too large for try statement error!

2007-09-10 Thread Ryan Vanderwerf
On Mon, 2007-09-10 at 09:40 -0700, Mike Wynholds wrote: If you have a really big JSP file, and you get this problem, you can try breaking the JSP file up in to several smaller .jsp or .tag files, and creating a hierarchy of files. Under Resin 3.1.2, after switching from JDK 1.5 to 1.6 (Linux)

[Resin-interest] automatic URL decoding resin 2-3

2007-10-30 Thread Ryan Vanderwerf
Hi, I am in between switching from version 2.1.12 to Resin to 3.1.3, and there is one difference that causes us problems. If we encode a URL using java.net.URLEncoder, on Resin 2 it doesn't automatically decode it, and we have to call the URLDecoder. However it seems on Resin 3, it automatically

Re: [Resin-interest] Re sin And Groovy

2008-10-14 Thread Ryan Vanderwerf
I do, but I compile all my groovy code into classes with Ant and embed them in our .war file deployment (We're mostly Java). I haven't tried to run groovy scripts directly like you mention - I believe I did get a demo of grails going at one point, but it was probably 3.1.3. Ryan - Original

[Resin-interest] reverse proxy support like ProxyPass in apache?

2009-02-18 Thread Ryan Vanderwerf
Does anyknow know if Resin 3.1 has any kind of reverse proxy support similar to the ProxyPass options in Apache? We are exploring whether Resin could be the font-end web server for our application instead of Apache - mostly due to issues we are having with mod_caucho communications. Ryan --

[Resin-interest] Fwd: regexp and security-contraints?

2009-04-17 Thread Ryan Vanderwerf
I'm trying this on 3.1.8 but not having any luck: security-constraint role-name='viewer url-pattern include-pattern/*/include-pattern exclude-pattern/usr/something.jsp/exclude-pattern /url-pattern /security-constraint The above does not work. This works: security-constraint url-pattern='/*'