Re: [Sharing] How to setup a Global XSS Filter in Tapestry 5

2012-08-17 Thread Alex Kotchnev
ed it in order to allow people to use Rich Text that > includes images. > > Hope this will be usefull to someone :) > > ALso if you have any feedback, feel free to share. > > Martin > > > > > -- > View this message in context: > http://tapestry.1045711.n5.nabb

[Sharing] How to setup a Global XSS Filter in Tapestry 5

2012-08-17 Thread kheldar666
you have any feedback, feel free to share. Martin -- View this message in context: http://tapestry.1045711.n5.nabble.com/Sharing-How-to-setup-a-Global-XSS-Filter-in-Tapestry-5-tp5715533.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Filter in tapestry

2011-03-23 Thread Thiago H. de Paula Figueiredo
On Wed, 23 Mar 2011 19:33:57 -0300, Fernando Benjamin wrote: Hello Thiago, Hi! The problem here is that the request Parameter in is not an implementation of the HttpServletRequest! It isn't, but you can grap the requests HttpServletRequest: add a constructor to your RequestFilter th

Re: Filter in tapestry

2011-03-23 Thread Fernando Benjamin
Hello Thiago, I have implemented a Requestfilter as you wrote here before! But I still encounter major issues when retrieving the file as an Array of of Bytes, since thats how we can put it on a Blob(googles Binary Large Object). The problem here is that the request Parameter in is not an impleme

Re: Filter in tapestry

2011-03-12 Thread Thiago H. de Paula Figueiredo
On Sat, 12 Mar 2011 15:29:21 -0300, Fernando Benjamin wrote: Fellow tapestry developers, Hi! I need to upload an image to a certain url, but I can't use any Normal file upload mechanism because I am running Tapestry5 on GAE! So you want to write an application that receives a file uplo

Filter in tapestry

2011-03-12 Thread Fernando Benjamin
Fellow tapestry developers, I need to upload an image to a certain url, but I can't use any Normal file upload mechanism because I am running Tapestry5 on GAE! So I decided to resolve this with a Servlet and an url-filter mapping the request to the Servlet(in web.xml)! When the user posts the form

Re: Authorization Filter in Tapestry ?

2007-01-19 Thread andyhot
ivedoc/module/tapestry.request.html Did you contribute your filter to the WebRequestServicer Pipeline ? sunilmanu wrote: Hello Everyone, I want to implement an Authorization Filter in Tapestry that simply checks for the Logged In USER in Session,. public class AuthorizationFilte

Re: Authorization Filter in Tapestry ?

2007-01-19 Thread sunilmanu
> -- > Andreas Andreou - [EMAIL PROTECTED] - http://andyhot.di.uoa.gr > Tapestry / Tacos developer > Open Source / J2EE Consulting > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional

Re: Authorization Filter in Tapestry ?

2007-01-19 Thread andyhot
Check out the conf.points of tapestry.request http://tapestry.apache.org/tapestry4.1/tapestry-framework/hivedoc/module/tapestry.request.html Did you contribute your filter to the WebRequestServicer Pipeline ? sunilmanu wrote: Hello Everyone, I want to implement an Authorization Filter in

Authorization Filter in Tapestry ?

2007-01-18 Thread sunilmanu
Hello Everyone, I want to implement an Authorization Filter in Tapestry that simply checks for the Logged In USER in Session,. public class AuthorizationFilter implements WebRequestServicerFilter{ public void service(WebRequest request, WebResponse response