Re: is there an absolute max file upload size?

2009-10-02 Thread Stephen Connolly
Be aware that the servlet spec defines the filesize as an signed 32 bit*, so that unless code is written correctly, there will always be a hard limit of 2GB on upload with size information in advance... since one DOS attack is to upload a file of unlimited size (thereby filling your storage) most g

Re: is there an absolute max file upload size?

2009-10-02 Thread Jim the Standing Bear
thank you for the response, Anuj. However, I am not entirely certain if this property applies. For one thing, I am only using tomahawk, not trinidad, and also I was able to upload files in hundred-megabyte range, just not in GB, so if this property was the cause, I wouldn't even be able to get th

RE: is there an absolute max file upload size?

2009-10-02 Thread Patel, Anuj
Hey Jim, There is a property org.apache.myfaces.trinidad.UPLOAD_MAX_DISK_SPACE that you need to specify in your web.xml. This is the max allowable disk space for your file. If you go beyond that, it will throw an exception from its filter. The default is 512 (5000 KB). Anuj Patel Software E

is there an absolute max file upload size?

2009-10-02 Thread Jim the Standing Bear
Hello, I am wondering if there is an absolute max file upload size that if the file I want to upload exceeds that size, it won't work even if the maxFileUploadSize in web.xml is set much higher? If so, what is it? Because I am trying to upload a 3GB file using the inputFileUpload control, and we

Re: Could not find renderer

2009-10-02 Thread baeschtu baeschtu
Right, I did not following the installation instructions :-) Thanks for the help! 2009/10/2 Richard Yee > You should be using facelets 1.1.14 instead of 1.1.11 > > Sent from my iPhone > > On Oct 2, 2009, at 8:07 AM, baeschtu baeschtu wrote: > > Hello, I'm pretty new to jsf and would like to m

Re: Could not find renderer

2009-10-02 Thread Richard Yee
You should be using facelets 1.1.14 instead of 1.1.11 Sent from my iPhone On Oct 2, 2009, at 8:07 AM, baeschtu baeschtu wrote: Hello, I'm pretty new to jsf and would like to make a small website. I try to make a tabbed menu with tr:navigationPane but I'm stuck with the following error:

Re: Could not find renderer

2009-10-02 Thread Richard Yee
That error is typically caused by myfaces or Trinidad not being configured correctly. Did you follow the installation instructions for myfaces, facelets, and trinidad? Send your web.XML and faces- config.XML files R Sent from my iPhone On Oct 2, 2009, at 8:07 AM, baeschtu baeschtu wrote

Could not find renderer

2009-10-02 Thread baeschtu baeschtu
Hello, I'm pretty new to jsf and would like to make a small website. I try to make a tabbed menu with tr:navigationPane but I'm stuck with the following error: WARNING: Could not find renderer for CoreNavigationPane[UIXFacesBeanImpl, id=j_id8] rendererType = org.apache.myfaces.trinidad.Pane my ve

Re: [Trinidad] No RenderingContext

2009-10-02 Thread WahidB
Problem solved. The definition of the view handler for Facelets com.sun.facelets.FaceletPortletViewHandler should be removed from the faces-config.xml. The FaceletPortletViewHandler can be defined as a context-param in web.xml as followed: org.apache.myfaces.trinidad.ALTERNATE_VIEW_HANDLER

Re: t:dataScroller Go to the first page automatically

2009-10-02 Thread Fabio Stracuzzi
Hi Juan! You can try: In the controller, you define this attribute: private HtmlDataScroller scroller; with set and get methods. In the jsp, you define binding with controller attribute: Then, you set page 0 when refresh table data with: getScroller().getUIData().setFirst(0); Bye Fabio

[Trinidad] No RenderingContext

2009-10-02 Thread Bashirazad, Wahid
Hi. I currently try to get running my JSF-Application as a Portlet on Liferay 5.2.3. The App is implemented with the following frameworks: MyFaces 1.2.7 Facelets 1.1.4 Trinidad 1.2.12 Everytime i try to load the portlet, i get the following Exceptions: [02.10.09 10:40:44:209 CEST] 0

t:dataScroller Go to the first page automatically

2009-10-02 Thread Juan Jesús Cremades Monserrat
Hi! I'm working in a Web Application that needs after make a submit, that the t:dataScroller goes to its first page automatically, exist some engine to do this? Thank you