Re: Disable file uploads

2017-04-13 Thread Lukasz Lenart
2017-04-13 17:43 GMT+02:00 Adam Brin : > One step is to modify the struts.xml to create a custom stack that doesn’t > include the file-upload interceptor. Parsing of multipart request happens early, in Dispatcher so to be 100% sure you must implement a NoOpMultipartParser or define your own Disp

Re: Issue with struts tags

2017-04-13 Thread Lukasz Lenart
but still cleaning up temp folder is a good idea 2017-04-13 20:27 GMT+02:00 Sharmila Thota : > I am using Weblogic no tomcat. Thanks though! > > -Original Message- > From: Paweł Wielgus [mailto:poulw...@gmail.com] > Sent: Thursday, April 13, 2017 2:19 PM > To: Struts Users Mailing List >

Re: Issue with struts tags

2017-04-13 Thread Lukasz Lenart
2017-04-13 16:51 GMT+02:00 sharmila thota : > I updated to 2.5.10.1 jars, and see the following compile errors on console: > > Error(6,6): The tag handler class was not found > "org.apache.struts2.views.jsp.ui.HiddenTag". Did you change DTD in struts.xml to match Struts 2.5? Regards -- Łukasz +

RE: Issue with struts tags

2017-04-13 Thread Sharmila Thota
I am using Weblogic no tomcat. Thanks though! -Original Message- From: Paweł Wielgus [mailto:poulw...@gmail.com] Sent: Thursday, April 13, 2017 2:19 PM To: Struts Users Mailing List Subject: RE: Issue with struts tags Just a wild guess, try to delete tomcat/work directory. If you use tom

RE: Issue with struts tags

2017-04-13 Thread Paweł Wielgus
Just a wild guess, try to delete tomcat/work directory. If you use tomcat of course. 13.04.2017 17:49 "Sharmila Thota" napisał(a): > Please some one help with this issue. > > -Original Message- > From: sharmila thota [mailto:t.sharm...@gmail.com] > Sent: Thursday, April 13, 2017 10:51 A

RE: Issue with struts tags

2017-04-13 Thread Sharmila Thota
Please some one help with this issue. -Original Message- From: sharmila thota [mailto:t.sharm...@gmail.com] Sent: Thursday, April 13, 2017 10:51 AM To: user@struts.apache.org Subject: Issue with struts tags I updated to 2.5.10.1 jars, and see the following compile errors on console: Erro

Re: Disable file uploads

2017-04-13 Thread Adam Brin
One step is to modify the struts.xml to create a custom stack that doesn’t include the file-upload interceptor. -- _ Adam Brin Director of Technology, Digital Antiquity 480.965.1278 > On Apr 13, 2017, at 8:42 AM, Greg Lindholm wrote: > >

Disable file uploads

2017-04-13 Thread Greg Lindholm
I have a Struts2 app that does not support any sort for file upload. Is there any steps I could/should take to ensure file uploads are disabled? Greg

Issue with struts tags

2017-04-13 Thread sharmila thota
I updated to 2.5.10.1 jars, and see the following compile errors on console: Error(6,6): The tag handler class was not found "org.apache.struts2.views.jsp.ui.HiddenTag". Error(7,5): The tag handler class was not found "org.apache.struts2.views.jsp.IfTag". Error(8,12): The tag handler class was not

Re: Struts losing parameters

2017-04-13 Thread Lukasz Lenart
There is a hardcode limit to grow a collection but it looks like it wasn't documented - feel free to open a ticket in JIRA. https://github.com/apache/struts/blob/master/core/src/main/java/com/opensymphony/xwork2/ognl/accessor/XWorkListPropertyAccessor.java#L50 https://issues.apache.org/jira/browse

Struts losing parameters

2017-04-13 Thread Jackson, Allan
We’re having a problem where struts (2.5.10.1) is losing parameters that were passed to an action from a form. Our form is submitting values for a list of checkboxes like this: selected[0]: true selected[1]: true selected[2]: false selected[3]: true ... selected[499]: false selected[500]: true