Re: Setting object from param tag fails in Struts 2.2.1

2011-01-05 Thread Pro1712
It works with the latest build (#252)! Do you see any problems using this version in a production environment? -- View this message in context: http://old.nabble.com/Setting-object-from-param-tag-fails-in-Struts-2.2.1-tp30216692p30593987.html Sent from the Struts - User mailing list archive at

Re: Setting object from param tag fails in Struts 2.2.1

2011-01-04 Thread Pro1712
So should I stay with 2.1.8.1 and wait for 2.2.2? When will this version be released? Maurizio Cucchiara wrote: > > As far as I know this behavior was fixed with the patch sent by Lukasz > (see [1] and also [2]). > I can't figure out what happened, as far I can see in subversion logs > [3] the

Re: Setting object from param tag fails in Struts 2.2.1

2010-12-23 Thread Pro1712
Hi! I'm updating from Struts 2.1.8.1 to 2.2.1.1. I use this action: ActionLinksAction has this method: public void setActionLinks(final LinkedHashMap actionLinks) { actionLinks_ = actionLinks; } This should be filled from the context. The page from which th

[S2] ClientAbortException in StreamResult

2009-07-01 Thread Pro1712
Hello! I've got a Action to download documents stored in a BLOB ind an oracle-db: inputStream public String downloadDocument() { inputStream_ = downloadFromDB(...); return success; } public InputStream getInputStream() { return inputSt

Re: Update to Struts 2.1.7

2009-06-29 Thread Pro1712
I've got a method "input" in the action. settint "struts.enable.DynamicMethodInvocation = true" solevd the problem. -- View this message in context: http://www.nabble.com/Update-to-Struts-2.1.7-tp24166101p24250172.html Sent from the Struts - User mailing list archive at Nabble.com. --

Re: Update to Struts 2.1.7

2009-06-24 Thread Pro1712
You are right! 'name="*"' is not necessary but it also does not cause any problems... I will remove it! But that's not my problem! What I forgot to mention in my first post is that I use dynamic method invocation and pass the param e.g. "method:input" to the action. Sorry for this... struts.ena

Re: Update to Struts 2.1.7

2009-06-23 Thread Pro1712
Thanks for your quick answer! There is no test1-validation.xml. test1 does not have a "validate" method ". I have implemented the "execute" method to see if it is called because "input" does not get called any more... I also implemented "validateExecute" method for testing. And it get's called a

Update to Struts 2.1.7

2009-06-23 Thread Pro1712
Hello! I try to update from Struts 2.1.6 to 2.1.7. I've got simple actions like this: /pages/Test1.jsp In Struts 2.1.6 'input' was called when invoking the action. In Struts 2.1.7 'execute' is called. Why is ecexute called now? What is the default action that is called? How can I change

Problem with events

2008-10-08 Thread Pro1712
Hi! Im using Struts 2.1.2. Here is my code: Javascript: dojo.event.topic.subscribe("/beforeIntern", function(event, widget) {alert('before ' + widget);}); dojo.event.topic.subscribe("/afterIntern", function(data, request, widget) {alert('after ' + widget);}); JSP: When I initially lo

Struts2 & Tiles2

2008-05-13 Thread Pro1712
Hallo, I'm new to struts so this may be a simple question for experts... I started developing a classical webapp: Header and Menu on top, navigation on the left side and details on the right side. When the user selects an item in the navigation, the detail is displayed on the right side. Depend