[Resin-interest] Caucho servlet-mapping url-pattern

2009-01-06 Thread Tanya Huang
Hello All, I combed the mailing list archive and read the Caucho documentation but still no answer for this issue, so here it is: I need to match a url pattern to forward to resin. The interesting part is the pattern contains foreign characters. I used the UTF-8 url encoded pattern, but the patt

Re: [Resin-interest] Caucho servlet-mapping url-pattern

2009-01-06 Thread Knut Forkalsrud
I think the old URL spec (I forget the RFC number ) didn't specify any character set. Apparently the new one (RFC 3986) does. But there has been a bug in Resin which has since been fixed. See . Make sure you run version 3.1.2 or later. -Knut On Tue, Ja

Re: [Resin-interest] Caucho servlet-mapping url-pattern

2009-01-06 Thread Tanya Huang
Hi Knut, Thanks for the lightening fast response! This really helps clarify the issue. We're running resin 2. Time to upgrade :) thanks, Tanya On Tue, 2009-01-06 at 11:35 -0800, Knut Forkalsrud wrote: > I think the old URL spec (I forget the RFC number ) didn't specify any > character set. > Ap

Re: [Resin-interest] Caucho servlet-mapping url-pattern

2009-01-06 Thread Knut Forkalsrud
With Resin 2.1 you may want to check out . For spelling out the mapping in web.xml I think you want to spell it out in text rather than the %xx url syntax. To avoid any text file encoding problems you may want to use XML e

[Resin-interest] re sin 3.2.1 comet and keepalive question

2009-01-06 Thread bvu
Hi, We upgraded to resin 3.2.1 and start testing comet with keepalive enabled. We set keepalive-timeout to 45 seconds in the resin.xml. When we ran our comet test for an hour, we notice that resin close the connection every 10 minutes. Hence, the connection only keep alive for 10 minutes. We us

[Resin-interest] re sin 3.2.1 comet and keepalive question

2009-01-06 Thread bvu
Hi, We upgraded to resin 3.2.1 and start testing comet with keepalive enabled. We set keepalive-timeout to 45 seconds in the resin.xml. When we ran our comet test for an hour, we notice that resin close the connection every 10 minutes. Hence, the connection only keep alive for 10 minutes. We us

[Resin-interest] re sin 3.2.1 comet and keepalive time question

2009-01-06 Thread bvu
Hi, We upgraded to resin 3.2.1 and start testing comet with keepalive enabled. We set keepalive-timeout to 45 seconds in the resin.xml. When we ran our comet test for an hour, we notice that resin close the connection every 10 minutes. Hence, the connection only keep alive for 10 minutes. We us

Re: [Resin-interest] Caucho servlet-mapping url-pattern

2009-01-06 Thread Tanya Huang
Good points, thanks Knut :) Tanya On Tue, 2009-01-06 at 12:11 -0800, Knut Forkalsrud wrote: > With Resin 2.1 you may want to check out > . > For spelling out the mapping in web.xml I think you want to spell it > out in te