Re: common file upload in a t5 page

2011-11-25 Thread angelochen
till use tapestry support by injecting > MultipartRequestDecoder in your page ( see Upload component for usage) > > > -- View this message in context: http://tapestry.1045711.n5.nabble.com/common-file-upload-in-a-t5-page-tp5022246p5022818.html Sent from the Tapestry -

Re: common file upload in a t5 page

2011-11-25 Thread Taha Hafeez Siddiqi
is dynamically generated, so it can not be bound to a Tapestry > form. > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/common-file-upload-in-a-t5-page-tp5022246p5022498.html > Sent from the Tapestry - User mailing list

Re: common file upload in a t5 page

2011-11-25 Thread Thiago H. de Paula Figueiredo
On Fri, 25 Nov 2011 08:47:46 -0200, angelochen wrote: that form is dynamically generated, so it can not be bound to a Tapestry form. Ok! Instead of trying to implement it as a page, which seems to be not working, have you tried writing it as a dispatcher or a request filter? -- Thiago H

Re: common file upload in a t5 page

2011-11-25 Thread angelochen
that form is dynamically generated, so it can not be bound to a Tapestry form. -- View this message in context: http://tapestry.1045711.n5.nabble.com/common-file-upload-in-a-t5-page-tp5022246p5022498.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: common file upload in a t5 page

2011-11-25 Thread Thiago H. de Paula Figueiredo
On Fri, 25 Nov 2011 06:48:16 -0200, angelochen wrote: Hi, Hi! following is part of code used in a T5 page, I use it to accept a file upload from a regular html form, but after submit, the items parse from serverRequest is always zero, any idea? thanks. Can't you use the Upload component

common file upload in a t5 page

2011-11-25 Thread angelochen
ileUpload.isMultipartContent(servletRequest); if (isMultipart) parse_items(); } } -- View this message in context: http://tapestry.1045711.n5.nabble.com/common-file-upload-in-a-t5-page-tp5022246p5022246.html Sent from the Tapestry - User mailin