[Resin-interest] gzip accept header is being lost when resin 3.0.23 is behind an apache proxy

2007-06-27 Thread Justen Stepka
Recently we have enabled support for GZip in our application's SOAP client. Our SOAP messages can sometimes get quite large, so looking up information such as all members of a group, or series of groups benefit from the gzip support. http://xfire.codehaus.org/GZip+Support Everything seems to pla

Re: [Resin-interest] importing java.io, java.util packages in JSPs

2007-06-27 Thread Bill Au
We actually bite the bullet and fixed all our JSPs when we migrated from WebLogic to Resin. The version of WebLogic we were using allow us to do things like: <%@ page import=" java.util.*; import java.net.URL, java.io.* " %> which is clearly not JSP spec compliant. We decided to make a

Re: [Resin-interest] How to set default/global response encoding?

2007-06-27 Thread Hans Loeblich
I already have it declared in header include files, but it doesn't do anything. I did some searching and found this nugget (from http://www.oreillynet.com/pub/a/oreilly/java/news/jsptips_1100.html tip #2): "The default buffer size is 8KB, more than enough for a typical page, and you can incr

Re: [Resin-interest] importing java.io, java.util packages in JSPs

2007-06-27 Thread Serge Knystautas
Karthik Gajjala wrote: > do the same?. Something better than painfully editing the JSP files to > add these imports J Add a prelude in your JSP configuration that defines whatever imports you are used to having automatically done for you. -- Serge Knystautas Lokitech >> software . strategy . d

[Resin-interest] importing java.io, java.util packages in JSPs

2007-06-27 Thread Karthik Gajjala
Hi, While migrating from Weblogic to Resin, I have noticed that Resin requires us to explicitly import the basic Java language packages like io, util. This makes sense as a software developer. We have 100's of JSPs developed by our Web Developers who did not do this and Weblogic used to do this

Re: [Resin-interest] SSL support in Resin

2007-06-27 Thread Matt Pangaro
You can also use JSSE for SSL with the GPL version of Resin, although this obviously won't perform as well as the OpenSSL version. There have been a number of mailings on that in this list, and I believe people have said that they thought it performed well enough for many uses. For Resin 3.0.x:

Re: [Resin-interest] SSL support in Resin

2007-06-27 Thread Gregory Stewart
Why don't you just ask Caucho for an eval license for Pro version? Greg On 6/27/07, Karthik Gajjala <[EMAIL PROTECTED]> wrote: We are currently evaluating Resin and TomCat in our company which is currently using Weblogic as application server. I am trying to setup the SSL support in Resin an

Re: [Resin-interest] How to set default/global response encoding?

2007-06-27 Thread Yong Bakos
Hans, don't declare it manually in every jsp -- just once in your header portion of your view/jsp templates, which would typically be included in each individual jsp. On Jun 27, 2007, at 8:59 AM, Hans Loeblich wrote: I need to know if there is any way to make UTF-8 my default charset encod

Re: [Resin-interest] How to set default/global response encoding?

2007-06-27 Thread Scott Ferguson
On Jun 27, 2007, at 7:59 AM, Hans Loeblich wrote: > I need to know if there is any way to make UTF-8 my default charset > encoding. Do I really have to set the page contentType at the top of > every jsp? It currently defaults to ISO-8559-1 if I do not explicitly > set it. With 3.1.1, you can u

[Resin-interest] SSL support in Resin

2007-06-27 Thread Karthik Gajjala
We are currently evaluating Resin and TomCat in our company which is currently using Weblogic as application server. I am trying to setup the SSL support in Resin and found that it is available in only professional version (error message on the screen when starting Resin). Is there a way to use SS

[Resin-interest] How to set default/global response encoding?

2007-06-27 Thread Hans Loeblich
I need to know if there is any way to make UTF-8 my default charset encoding. Do I really have to set the page contentType at the top of every jsp? It currently defaults to ISO-8559-1 if I do not explicitly set it. Thank you, Hans Loeblich ___ res