[Resin-interest] RESIN migration 3.022 from 2.1.17 issue - JSTL TAGS

2007-02-20 Thread Karthik_rcs
Hello Team, We have been using Resin 2.1.17 version. Now we face some issues in jstl tags when we try migrating to 3 version. for Instance In a jsp, we are trying to display a nested bean information. A.B.iD ( A is bean containing another Bean B, B has property iD) The above works perfectly in res

[Resin-interest] Resin and Spring 2.0

2007-02-20 Thread Matt Raible
I'm using Cargo (http://cargo.codehaus.org) to download Resin, install it and test my application. However, in order to make Resin 3.x work properly with Spring 2.0, I need to add the following to resin.conf: It it possible to specify these properties somewhere else besides resin.conf? I

Re: [Resin-interest] contentType='x-application/xslt' - meaning hijacked?

2007-02-20 Thread John Steel
try { System.out.println ("Within ContentType filter ... "); chain.doFilter (request, response); ((HttpServletResponse) response).addHeader("ContentTypeFilter", "PROCESSED"); response.setContentType("text/html"); } catch (Exception e) { e.printStackTrace

Re: [Resin-interest] contentType='x-application/xslt' - meaning hijacked?

2007-02-20 Thread Pablo Saavedra
Usually you define the filters first, and then the mappings, but I don't think you'll get any problem. That should work ok. Regards. On 20/02/07, John Steel <[EMAIL PROTECTED]> wrote: Pablo Saavedra wrote: > The filter order is defined by the filter-mapping element in the > web.xml. Make sure

Re: [Resin-interest] contentType='x-application/xslt' - meaning hijacked?

2007-02-20 Thread John Steel
Pablo Saavedra wrote: > The filter order is defined by the filter-mapping element in the > web.xml. Make sure that your filter-mapping is after the xslt filter's. > > Regards. > Thanks - its like this, is this ok? -- -- http://www.phonewebcam.com [EMAIL PRO

Re: [Resin-interest] contentType='x-application/xslt' - meaning hijacked?

2007-02-20 Thread Pablo Saavedra
The filter order is defined by the filter-mapping element in the web.xml. Make sure that your filter-mapping is after the xslt filter's. Regards. On 20/02/07, John Steel <[EMAIL PROTECTED]> wrote: Anoop K Achuthan wrote: > Hi John, >You can write a Response Filter which sets the Content

Re: [Resin-interest] contentType='x-application/xslt' - meaning hijacked?

2007-02-20 Thread John Steel
Anoop K Achuthan wrote: > Hi John, >You can write a Response Filter which sets the Content type of your > choise. > The filter could be added as the last filter in the chain to make sure > that no other > filter is changing it's content type. > > Thanks - I get it. However, it didn't do