Re: Is it possible to receive uploaded files from non-tapestry pages?

2008-04-24 Thread Dmitry Shyshkin
Hi, Ken May be it possible but will be hard to achieve, because T5 (you use T5, don't you?) use hidden fields with internal information with every form. Without this information form can't be processed. As for your stacktrace: You try to change character encoding for request when it is too late

Re: Is it possible to receive uploaded files from non-tapestry pages?

2008-04-24 Thread Ken
Hi, Dmitry Thanks for your advice. May be it possible but will be hard to achieve, because T5 (you use T5, don't you?) use hidden fields with internal information with every form. Without this information form can't be processed. Yes, I am using 5.0.11. I should to write so. As for your

Re: [T5] Is it possible to receive uploaded files from non-tapestry pages?

2008-04-24 Thread Ken
Hi, again. I tried to using servlet for file uploading. I wrote codes below. Then selected a file and submitted. But output is only like this: Content-Type: multipart/form-data; boundary=... Content-Length: 4699 Command: FileUpload No #-s are displayed. I excuted same code on

Is it possible to receive uploaded files from non-tapestry pages?

2008-04-23 Thread Ken
Hi. I wrote simple HTML like below start.html: form action=/myapp/upload method=post enctype=multipart/form-data input type=file/ input type=submit/ /form and very very simple tapestry codes. Upload.java: public class Upload {} When I press submit button in the HTML file, following