active questions tagged struts2 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T14:31:01Z http://stackoverflow.com/feeds/tag/struts2 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1928340/passing-ognl-expression-from-tiles-attribute-to-siterator-struts2 0 Passing OGNL expression from Tiles attribute to <s:iterator> (Struts2) jilt3d 2009-12-18T13:56:23Z 2009-12-18T13:56:23Z <p>Hi, everyone! :)</p> <p>I am trying to pass an OGNL expression from Tiles framework (2.0.4) to the <code>value</code> attribute of <code>&lt;s:iterator&gt;</code> tag like this:</p> <p><strong><em>tiles.xml</em></strong></p> <pre><code>&lt;definition name="test" template="/test.jsp"&gt; &lt;put-attribute name="collectionName" value="apples"/&gt; &lt;/definition&gt; </code></pre> <p><strong><em>test.jsp</em></strong></p> <pre><code>&lt;tiles:importAttribute toName="collectionName" name="collectionName" ignore="true"/&gt; &lt;s:iterator value="{#attr['collectionName']}"&gt; &lt;s:property value="type"/&gt; &lt;/s:iterator&gt; </code></pre> <p>In my action class there is a property <code>apples</code> of type <code>List&lt;Apple&gt;</code>, which <code>Apple</code> (JavaBean) has a <code>type</code> property.</p> <p>But the iterator tag doesn't loop anything. Is it possible to pass that way an OGNL expression to a <code>&lt;s:iterator&gt;</code> tag? Thanks!</p> http://stackoverflow.com/questions/793291/difference-between-struts-1-x-and-struts-2-x 3 difference between Struts 1.x and Struts 2.x Ashvin Ranpariya 2009-04-27T12:33:40Z 2009-12-18T08:34:04Z <p>i want to know difference between Struts 1.x and Struts 2.x</p> http://stackoverflow.com/questions/320049/struts-2-tiles-velocity-interoperability 1 Struts 2 + tiles + velocity interoperability? Hanswors 2008-11-26T08:24:23Z 2009-12-17T22:31:25Z <p>Has anyone been able to get velocity + tiles working with struts 2?</p> <p>I am having some problem finding examples or tutorials online and from what I have gathered from mailing lists it seems it might not even be possible at all (but the mails were quite old).</p> http://stackoverflow.com/questions/1612765/struts2-adding-vo-objects-in-a-list-in-action-class-iterating-list-in-jsp-gettin 0 struts2: adding VO objects in a list in action class-iterating list in jsp-getting list object in anothe action class vivmal 2009-10-23T11:12:33Z 2009-12-17T20:39:14Z <p>In my struts 2 application I am iterating list of VO objects in my jsp as follow - </p> <pre><code>&lt;s:iterator value="listOfVoObjects"&gt; &lt;tr&gt; &lt;td&gt;&lt;s:property value="itemId" /&gt;&lt;/td&gt; &lt;td&gt;&lt;s:property value="itemName" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/s:iterator&gt; </code></pre> <p>Now I want to get this “listOfVoObjects” in my action class when user will click some button say 'freeze' and to do this I defined it in hidden in the same jsp page like -</p> <pre><code>&lt;s:hidden name = “listOfVoObjects”/&gt; </code></pre> <p>and get it in action class as a list object using setter-getter . It running but giving list by adding double square bracket like -</p> <p>[[originator.vo.BeforeSavingReq4OriginatorVO@15fc793, originator.vo.BeforeSavingReq4OriginatorVO@127bd04, originator.vo.BeforeSavingReq4OriginatorVO@83969e]]</p> <p>That’s why I getting problem to iterate it using iterate() method in my action class.</p> <p>Please help to remove this double square bracket. Desired output is -</p> <p>[originator.vo.BeforeSavingReq4OriginatorVO@15fc793, originator.vo.BeforeSavingReq4OriginatorVO@127bd04, originator.vo.BeforeSavingReq4OriginatorVO@83969e]</p> <p>or let me know other solution if possible.</p> http://stackoverflow.com/questions/806873/which-is-the-best-ajax-framework-for-java-web-development 5 Which is the best ajax framework for java web development ? hib 2009-04-30T13:23:36Z 2009-12-17T17:55:25Z <p>I am using struts2 for my java web application .</p> <p>Now I want to use ajax for my client side user interface can anyone suggest me which is the best one to learn and implement ajax framework . </p> <p>I have seen </p> <ul> <li><strong>jmaki</strong> , <strong>dojo</strong> , <strong>jQuery</strong></li> </ul> <p>and heard about <strong>vroom</strong> for netbeans IDE </p> <p>thanks in advance .</p> http://stackoverflow.com/questions/1922394/disable-struts-2-1-dynamic-attributes 0 Disable Struts 2.1 Dynamic Attributes David 2009-12-17T15:12:00Z 2009-12-17T15:12:00Z <p>Is there any configuration option which can be used to disable the dynamic attributes feature in Struts 2.1? I use an older webserver which does not support dynamic attributes. Ideally I'm hoping for an alternative DTD or a configuration option in struts.xml</p> http://stackoverflow.com/questions/1914554/different-ways-to-use-properties-file-in-j2ee-app 1 Different ways to use properties file in j2ee app Omnipresent 2009-12-16T13:05:47Z 2009-12-16T16:40:19Z <p>I have a j2ee app using Struts2. I have a gloabl properties file which is declared in <code>struts.properties</code> which resides in <code>WEB-INF/classes</code>. It has the following setting:</p> <pre><code>struts.custom.i18n.resources=mypropertyfile </code></pre> <p><code>mypropertyfile</code> also resides in <code>WEB-INF/classes</code></p> <p>Say for example it contains the following:</p> <pre><code>pdf.test.title=PDF Test </code></pre> <p>then on jsp I use the following to make use of the property file</p> <pre><code>&lt;s:text name="pdf.test.title"/&gt; </code></pre> <p>This setup was working on Sun App server 8.2 but is not working on GlassFish App Server (I see <code>pdf.test.title</code> on the browser rather than <code>PDF Test</code>). I do not have access to GlassFish App server to try and tweak the setting to make it work. So I want to make changes to the code and see if that will help. </p> <p><strong>My question is:</strong></p> <p>What are some other ways to use properties file in a J2EE app? (using Struts2 or not). I'm also open to ways suggested to make changes on glassfish to make this work?</p> <p>Build/version #'s</p> <p>GlassFish = 9.1_02 (build b04-fcs)</p> <p>Struts2 = 2.0.6</p> <p>JRE6</p> http://stackoverflow.com/questions/1914904/pdf-in-iframe-in-jsp-on-tomcat-also-struts2 0 pdf in iframe in jsp on tomcat, also Struts2 Shaded 2009-12-16T14:15:33Z 2009-12-16T15:26:08Z <p>Hello Everyone,</p> <p>I'm having some issues getting my pdf file to display in my jsp page. I have the pdf saved on my tomcat server with a file location as follows c:/tomcat 6.0/webapps/appname/reports/saved/filename.pdf I am trying to open that file (preferably not using the c: location) and displaying it in an iframe in my jsp file using the following tag...</p> <pre><code>&lt;iframe src="../appname/reports/saved/filename.pdf"&gt;&lt;/iframe&gt; </code></pre> <p>I'm going to worry about sizing later :)</p> <p>but I'm getting that the requested resource is not available.</p> <p>I'm pretty sure that this is something stupid that I'm just not seeing and I'd really appreciate any help I can get.</p> <p>Thanks,</p> <p>Shaded</p> http://stackoverflow.com/questions/675477/last-few-html-tags-not-rendering 0 Last few html tags not rendering? Josh Bones 2009-03-23T22:31:27Z 2009-12-15T15:56:37Z <p>An interesting issue which I've googled and can find absolutely no reference too, perhaps because I'm too vague on the cause myself.</p> <p>I have a simple jsp page that is run from a struts 2 action. It' fairly javascript heavy, but its an internal app on my company's intranet so thats not a great problem.</p> <p>All seems normal so far, right? but interestingly, the last few tags on this page fail to render. This is true for all browsers I've tried it in (IE, FF, Chrome).</p> <p>What I mean by not rendering is that they simply don't exist when you view the source! whats worse, in IE, half a tag declaration is actually printed as text at the bottom of the page. All very odd.</p> <p>But what makes it even stranger, if I put a few <code>&lt;br /&gt;</code> tags after the <code>&lt;/html&gt;</code> tag, then all browsers render down past the <code>&lt;/html&gt;</code> tag, but still cut off the last few <code>&lt;br /&gt;</code>'s.</p> <p>Has anyone ever heard of anything like this? I don't even know where to start troubleshooting! I know my description is vague but that's only because I'm a bit vague on it myself.</p> http://stackoverflow.com/questions/1908188/struts2-and-dojo-double-publish 0 Struts2 and Dojo (double?) publish Trick 2009-12-15T15:27:08Z 2009-12-15T15:27:08Z <p>I am publishing with dojo topics:</p> <pre><code>dojo.event.topic.publish("publishThisTarget"); </code></pre> <p>And in JSP I have listenTopics:</p> <pre><code>&lt;s:url var="url2publish" action="MyAction" namespace="/public" /&gt; &lt;sx:div showLoadingText="false" indicator="ajaxIndicator" id="content" href="%{url2publish}" theme="ajax" listenTopics="publishThisTarget" preload="false" afterNotifyTopics="/ajaxAfter"&gt; &lt;/sx:div&gt; </code></pre> <p>The problem is, that my action is published twice and I have no clue why. </p> http://stackoverflow.com/questions/1841953/struts2-back-button-and-linking 0 Struts2 back button and linking Trick 2009-12-03T18:35:47Z 2009-12-15T15:19:57Z <p>Hello!</p> <p>I am using Struts 2.1.6 with Dojo plugin, whole app has ajax links (sx:a). </p> <p>Did anybody succeed to implement back button functionality and linking to certain content? </p> <p>Does anybody have any experience how to implement? I am planning to implement (if there is no good solution already) something like so:</p> <ul> <li>changing address bar link (adding parameters) with js which I can then read and get proper content and then publish it with notifyTopics.</li> </ul> <p>Or should I just change whole app to use jQuery plugin? Do jQuery has good solutions for back button and linking on ajax pages?</p> http://stackoverflow.com/questions/1902477/properties-file-not-working-with-struts2-and-glassfish 0 Properties file not working with Struts2 and Glassfish Omnipresent 2009-12-14T18:04:23Z 2009-12-14T18:04:23Z <p>I have a properties file in my application which is built using S2. The properties files resides in <code>WEB-INF/classes</code> and are mentioned in <code>struts.properties</code> as:</p> <pre><code>struts.custom.i18n.resources=myproperty1,myproperty2 </code></pre> <p>to use the properties i just do the following in my JSP's</p> <pre><code>&lt;s:text name="my.property.title"/&gt; </code></pre> <p>this setup works fine on the old App server we were using (Sun AppServer 8.2). However, this setup does not work on GlassFish V2 server. </p> <p>Has anyone come across this issue?</p> <p>What are some other options that I can try? I am willing to try new options as long as my code in JSP's remains mostly untouched. </p> http://stackoverflow.com/questions/1641271/struts-2-select-tag-filled-by-list-property 0 Struts 2 select tag filled by list property Jothi 2009-10-29T02:16:16Z 2009-12-12T01:11:22Z <p>Hi,</p> <p>I am new to struts 2. I am facing problem in filling Select tag with list property. The values are supplied from action class.Please provide me sample sode for this scenario.</p> <p>My action class</p> <pre><code>public class TripDetailsAdd extends ActionSupport { @Override public String execute() throws Exception { return SUCCESS; } public String populate() { VehicleDAO vehicleDAO = new VehicleDAO(); this.lstVehicles.addAll(vehicleDAO.getAllVehicles()); return "populate"; } private String vehicleId; private Collection lstVehicles = new ArrayList&lt;VehiclesVO&gt;(); } </code></pre> <p>Jsp page content:</p> <pre><code>&lt;%@ taglib prefix="s" uri="/struts-tags"%&gt; &lt;%@ taglib prefix="sform" uri="/struts-dojo-tags"%&gt; &lt;%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;%@page import="com.vms.business.dao.VehicleDAO"%&gt; &lt;%@page import="java.util.Collection"%&gt;&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt; &lt;title&gt;Trip Details&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;s:form action="tripDetailsAdd" method="POST" &gt; &lt;s:hidden name="expenseTypeId"&gt;&lt;/s:hidden&gt; &lt;table width="100%" height="96%" cellpadding="0" cellspacing="0"&gt; &lt;tr&gt; &lt;td valign="top"&gt;&lt;!-- Menu Starts --&gt; &lt;jsp:include page="/pages/menu.jsp"&gt;&lt;/jsp:include&gt; &lt;!-- Menu End --&gt; &lt;table width="95%" align="center"&gt; &lt;tr&gt; &lt;td&gt; &lt;table width="100%" border="0" cellpadding="0" cellspacing="0"&gt; &lt;tr&gt; &lt;td class="highlight"&gt;Trip Details Add&lt;/td&gt; &lt;td&gt;&lt;s:actionerror /&gt;&lt;s:actionmessage /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="header3shadow" colspan="2"&gt;&lt;img height="2" border="0" width="100%"&gt;&lt;/img&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;div style="overflow: auto; height: expression((document.body.clientHeight -80) +px ');"&gt; &lt;table width="60%" cellspacing="0" cellpadding="0" border='0'&gt; &lt;tr&gt; &lt;td class="FieldTitle" valign="top"&gt; &lt;table width="100%" cellspacing="4" cellpadding="0" border='0'&gt; &lt;s:select headerKey="0" headerValue="Select One" required="*" label="Vehicle No." labelSeparator=":" list="lstVehicles" listKey="vehicleId" listValue="regNo"&gt;&lt;/s:select&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;table width="100%" cellspacing="4" cellpadding="0" border='0'&gt; &lt;s:textfield labelposition="left" requiredposition="right" name="totalIncome" label="Total Income" cssStyle="FieldTitle" labelSeparator=":"&gt;&lt;/s:textfield&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table cellpadding="0" width="60%" cellspacing="0" border="0"&gt; &lt;tr&gt; &lt;td align="right"&gt;&lt;s:submit label="Add" value="Add"&gt;&lt;/s:submit&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;table border="0" cellspacing="0" cellpadding="0"&gt; &lt;tr&gt; &lt;td&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/s:form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Mapping </p> <pre><code>&lt;action name="*TripDetailsAdd" method="{1}" class="com.vms.trip.presentation.TripDetailsAdd"&gt; &lt;result name="success" type="redirect"&gt;showTripDetailsList &lt;/result&gt; &lt;result name="populate"&gt;/pages/tripdetails/TripDetailsAdd.jsp &lt;/result&gt; &lt;result name="error"&gt;/pages/tripdetails/TripDetailsAdd.jsp &lt;/result&gt; &lt;result name="input"&gt;/pages/tripdetails/TripDetailsAdd.jsp &lt;/result&gt; &lt;/action&gt; </code></pre> <p>In this if i add Validation file or If any error occurs in page drop down is not loading.Please help me..</p> http://stackoverflow.com/questions/1887341/validation-hashmap-radiobutton-struts2 0 Validation HashMap->Radiobutton. Struts2. Luigi 1982 2009-12-11T11:06:08Z 2009-12-11T12:42:15Z <p>Hi at all</p> <p>I have another problem! :) </p> <p>I have a hashmap linked on jsp with a radiobutton. When I check a radio, my hashmap is populated with the param that I spec on the tag. Now I want to validate the check on radiobutton. How can I make this? Is possible with the annotations? </p> <p>I have just found a solution, using an another list. But I'm sure that exist another way, too simple and clean. With the annotations.. Exist? </p> http://stackoverflow.com/questions/751781/disable-logging-for-struts2-validation 0 Disable logging for struts2 validation milostrivun 2009-04-15T13:49:15Z 2009-12-11T12:29:12Z <p>I want to disable logging for struts2 validation,whenever a struts action called containing validation I get 'junk' in my log, smth like this : "[Apr 15 14:42:41] ERROR (CommonsLogger.java:24) - Validation error for domain:blahblah.".</p> <p>I'm already using log4j and it's logging just fine but I don't want to this 'junk' filling my log.</p> <p>If some code is nedded I will get it but at this moment I don't know what to present.</p> <p>To be precise this 'junk' logs are logging the validation messages in struts2 (e.g 'Please enter your name'),maybe this will help someone help me. :)</p> http://stackoverflow.com/questions/1883426/default-redirect-using-struts2 1 Default Redirect using Struts2 rhigdon 2009-12-10T19:37:50Z 2009-12-11T09:47:18Z <p>Currently when you hit the root context of my application Struts2 throws an error:</p> <p>ex. <a href="http://localhost:8080/" rel="nofollow">http://localhost:8080/</a></p> <p>returns</p> <blockquote> <p>HTTP ERROR 404</p> <p>Problem accessing /. Reason:</p> <pre><code>There is no Action mapped for namespace / and action name . </code></pre> </blockquote> <p>Is there a way to do a default redirect in Struts2?</p> http://stackoverflow.com/questions/374099/struts2-parameters-between-actions 0 Struts2 parameters between actions GIANCARLO 2008-12-17T09:45:41Z 2009-12-10T21:05:41Z <p>I have to pass some parameter from an action to another action,for example to keep trace of an event. </p> <p>What is the best way to do that? </p> <p>I would not use session parameters. Thanks</p> http://stackoverflow.com/questions/1880585/how-to-configure-maxfilesize-in-struts-2-for-file-upload 0 How to configure maxFileSize in Struts 2 for File Upload forumjd 2009-12-10T12:14:05Z 2009-12-10T12:14:05Z <p>Hi All,</p> <p>I have written an application using Struts2 for File Upload and want to override the default maxFileSize of 2MB. This is what I have in my strus.xml file:</p> <p> 2000000000 image/jpeg,image/gif,image/png dojo..<em>,^struts..</em> input,back,cancel,browse input,back,cancel,browse </p> <pre><code> &lt;action name="upload" class="uk.co.jdw.fileUpload.actions.FileUploadAction"&gt; &lt;interceptor-ref name="fileUploadStack" /&gt; &lt;result name="input"&gt;pages/fileUpload.jsp&lt;/result&gt; &lt;result&gt;pages/fileUploadSuccess.jsp&lt;/result&gt; &lt;/action&gt; </code></pre> <p><hr></p> <p>and this is what I have put in struts.properties file (in WEB-INF/class folder) :</p> <p>struts.multipart.maxSize=50000000000</p> <p>So, as per the information what I found online, I'm keeping the parser maxSize greater than fileUpload Interceptor maximumSize.</p> <p><hr></p> <p>Besides these two, I also have maxSize configured in a separate properties file set to 2000000000, and read that properties file in the validate() method in my action class, and display some configured error messages on the form page.</p> <p>Even with all these settings, when I try uploading a file of around 3 MB, it throws some internal error message:</p> <p>"the request was rejected because its size (4054646) exceeds the configured maximum (2097152)"..</p> <p>Could anyone please suggest if I'm doing anythin wrong or any changes required ?</p> <p>Any comments will be appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1879156/in-struts-2-optiontransferselect-s-moveselectedoptions-doesnt-seem-to-work 0 In struts 2 Optiontransferselect 's moveSelectedOptions doesn't seem to work Chikoo 2009-12-10T07:06:10Z 2009-12-10T07:06:10Z <p>I have a optiontransferselect and the left list box has a couple of values. When I try to move the values to the right .the button doesnt work. There is no error occuring when i click on the moveselect button .The values dont move either.</p> http://stackoverflow.com/questions/1878378/jboss-create-pdf-xls 0 JBOSS create PDF, XLS Ziplin 2009-12-10T02:57:18Z 2009-12-10T03:12:24Z <p>I am writing a JBOSS web app with Struts2 and would like to produce reports in PDF and XLS format. How can I do this? Are there popular packages that can do this for me?</p> http://stackoverflow.com/questions/1871125/problem-with-strutsspringtestcase-and-rest-plugin 0 Problem with StrutsSpringTestCase and rest-plugin Bill Stilwell 2009-12-09T01:43:25Z 2009-12-09T01:43:25Z <p>I'm able to run tests against my rest-plugin classes with StrutsSpringTestCase, but none of the parameters are set on the action. For e.g.:</p> <pre><code>@Test public void testAgegateParams() throws Exception { request.setParameter("year", "2000"); request.setParameter("month", "01"); request.setParameter("day", "1"); ActionProxy proxy = getRestActionProxy("/agegate"); assertNotNull(proxy); AgegateController action = (AgegateController) proxy.getAction(); assertNotNull(action); String result = action.index(); assertEquals("returned result is not index", result, "index"); assertEquals(9, action.getAge()); } </code></pre> <p>I'm getting a failure on the final assertEquals(). Looking into the source of StrutsTestCase, the getActionProxy() has this:</p> <pre><code> ActionProxy proxy = config.getContainer().getInstance(ActionProxyFactory.class).createActionProxy( namespace, name, method, new HashMap&lt;String, Object&gt;(), true, false); </code></pre> <p>But I'm pretty sure what I need is RestActionProxyFactory. If I attempt to duplicate the getActionProxy() method changing only this line to have RestActionProxyFactory.class, the getInstance call returns null.</p> <p>Any ideas on how to get the container to return an instance of RestActionProxyFactory, or otherwise get this kind of test case to work against Rest actions?</p> http://stackoverflow.com/questions/1864572/sitemesh-struts2-velocity-decorators-cannot-access-the-contexts-objects 0 Sitemesh + Struts2 + Velocity: Decorators cannot access the context's objects olivier 2009-12-08T04:24:51Z 2009-12-09T00:37:18Z <p>Hi,</p> <p>I have a struts2 web app using velocity. I am integrating Sitemesh to the project.</p> <p>The decorators are called properly but for some reasons, the objects placed in the context via the toolbox configuration (velocaity related) are not being loaded. </p> <p>Has anyone faced this issue?</p> <p>Thanks a lot</p> http://stackoverflow.com/questions/1865825/struts2-url-with-action 0 Struts2 URL with .action Ganesh 2009-12-08T09:38:03Z 2009-12-08T20:11:58Z <p>I want the URL of the below format</p> <p><a href="http://localhost/users/abc" rel="nofollow">http://localhost/users/abc</a></p> <p>rather than </p> <p><a href="http://localhost/users?name=abc" rel="nofollow">http://localhost/users?name=abc</a></p> <p>How to achieve this in Struts2?</p> http://stackoverflow.com/questions/1733985/setting-the-default-value-in-struts2 1 Setting the default value in Struts2 Aditya R 2009-11-14T11:24:02Z 2009-12-08T17:55:39Z <p>Hi all,</p> <p>I am setting the value(kind of default value) for a drop down select value from action class in a page(given below). When the page loads the value is beig displayed but the other elements of the dropdown list is not displayed. here is the code. </p> <pre><code>Inside the action class if(getTypeId() == null){ String typeId = request.getParameter("typeId"); setTypeId(typeId); } </code></pre> <p>Inside the jsp page</p> <pre><code> &lt;tr&gt; &lt;s:select label="To" headerKey="-1" headerValue="--Please Select--" name="typeId" list="typesofteam" /&gt; &lt;/tr&gt; </code></pre> <p>What I am trying to do is create a single page for sending as well as saving the mail as draft. The code works fine for composing the message ie I am able to access the selected item from the action class. But I don't know how to set the drop down element from the action class. The above method just sets the value but the other elements in the list is not displayed.</p> <p>I will be very grateful for any help on this.</p> <p>Thanks, Aditya</p> http://stackoverflow.com/questions/1867119/storing-data-when-an-jsp-call-no-submit-an-action 1 Storing data when an jsp call (no submit) an action. Luigi 1982 2009-12-08T13:54:42Z 2009-12-08T15:39:03Z <p>Hi at all...</p> <p>I need some help about a little question. I make a pagination by db for my survey application. I divided my list of questions in six page. Before the pagination, when the user submit the vote, the action check a hashmap and return error on key where the resp is not present. </p> <p>Now, with the pagination, I call the pages by with the param (number of page) on the request. </p> <p>Is evident that now my hashmap of answers go to action null. </p> <p>Now.. how can I send the partial list of answers (answers for page) without a submit ?</p> <p>Hope I was clear...</p> <p>p.s. I use Strut 2 Framework</p> http://stackoverflow.com/questions/1777714/struts2-action-not-calling-properly 0 struts2 action not calling properly Ziplin 2009-11-22T03:14:29Z 2009-12-08T14:53:47Z <p>On default I want my struts2 app to forward to an action:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8" ?&gt; &lt;!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"&gt; &lt;struts&gt; &lt;constant name="struts.enable.DynamicMethodInvocation" value="false" /&gt; &lt;constant name="struts.devMode" value="false" /&gt; &lt;package name="myApp" namespace="/myApp" extends="struts-default"&gt; &lt;action name="Login_*" method="{1}" class="myApp.SessionManager"&gt; &lt;result name="input"&gt;/myApp/Login.jsp&lt;/result&gt; &lt;result type="redirectAction"&gt;Menu&lt;/result&gt; &lt;/action&gt; &lt;/package&gt; &lt;package name="default" namespace="/" extends="struts-default"&gt; &lt;default-action-ref name="index" /&gt; &lt;action name="index"&gt; &lt;result type="redirectAction"&gt; &lt;param name="actionName"&gt;Login_input.action&lt;/param&gt; &lt;param name="namespace"&gt;/myApp&lt;/param&gt; &lt;/result&gt; &lt;/action&gt; &lt;/package&gt; &lt;/struts&gt; </code></pre> <p>I'm looking for the application to call SessionManager.input(), but instead it calls SessionManager.execute().</p> http://stackoverflow.com/questions/848828/how-to-fix-redirect-ognl-error-unable-to-set-param 0 How to fix redirect OGNL error, Unable to set param? Roy Chan 2009-05-11T16:08:52Z 2009-12-07T20:05:09Z <p>I am not sure if this is me or if this is a bug.</p> <p>I got the following error</p> <pre><code>11:52:01,623 ERROR ObjectFactory:27 - Unable to set parameter [dest] in result of type [org.apache.struts2.dispatcher.ServletRedirectResult] Caught OgnlException while setting property 'dest' on type 'org.apache.struts2.dispatcher.ServletRedirectResult'. - Class: ognl.ObjectPropertyAccessor File: ObjectPropertyAccessor.java Method: setProperty Line: 132 - ognl/ObjectPropertyAccessor.java:132:-1 at com.opensymphony.xwork2.ognl.OgnlUtil.internalSetProperty(OgnlUtil.java:392) </code></pre> <p>And my config is pretty minimal</p> <pre><code>&lt;package name="esupport" namespace="/esupport" extends="struts-default"&gt; &lt;action name="old-esupport" class="com.my.MyRedirectAction"&gt; &lt;result type="redirect"&gt; &lt;param name="location"&gt;http://some.server.com/init.asp&lt;/param&gt; &lt;param name="dest"&gt;${dest}&lt;/param&gt; &lt;/result&gt; &lt;/action&gt; &lt;/package&gt; </code></pre> <p>And my class has a pair of get/set method. And that's it. Nothing Fancy</p> <p>I have found <a href="http://markmail.org/message/qij4ys4xfzklo7u3#query:Caught%20OgnlException%20while%20setting%20property%20on%20type%20%27org.apache.struts2.dispatcher.ServletRedirectResult%27%2Bpage:1%2Bmid:c3vpmj7x3ydyzbx2%2Bstate:results" rel="nofollow">this</a> thread in the forum. But it doesn't solve my problem</p> <p>I am using </p> <p>Struts 2.1.16 Spring 2 Spring Security + CAS</p> <p>(The funny behavior is it sends me to the CAS server after the error, but I guess it will be corrected after the redirect issue got fixed)</p> http://stackoverflow.com/questions/1862202/configuration-manager-shouldnt-be-null-error 0 Configuration manager shouldn't be null error Omnipresent 2009-12-07T19:11:02Z 2009-12-07T19:11:02Z <p>we have a WAR that has S2 code in it and the WAR is deployed on Glassfish. We are noticing <code>the configuration manager shouldn't be null</code> error when we deploy the code and try to bring use the application (in browser). The error does not happen when the Application server is restarted after the deployment.<br> Log:</p> <pre><code>[#|2009-12-04T12:55:47.215-0500|SEVERE|sun-appserver2.1|org.apache.catalina.core.ApplicationFilterConfig|_ThreadID=48;_ThreadName=RMI TCP Connection(5846)-127.0.0.1;_RequestID=d8d812b6-c1e1-4b56-a707-68e071ffb9e9;|ApplicationFilterConfig.doAsPrivilege java.lang.IllegalStateException: The configuration manager shouldn't be null at org.apache.struts2.dispatcher.Dispatcher.getContainer(Dispatcher.java:849) at org.apache.struts2.dispatcher.Dispatcher.cleanup(Dispatcher.java:256) at org.apache.struts2.dispatcher.FilterDispatcher.destroy(FilterDispatcher.java:221) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) </code></pre> <p>I researched this issue a bit and <a href="https://issues.apache.org/struts/browse/WW-2523" rel="nofollow">found</a> that this is an error with S2. Even though, bug is fixed (last comment) that fix does not work for us. Maybe because glassfish server is not mentioned in the ticket. </p> <p>Has anyone faced similar issues?...or has a fix?</p> http://stackoverflow.com/questions/1855390/requestdispatcher-with-struts2 0 RequestDispatcher with Struts2 Dickson 2009-12-06T13:28:04Z 2009-12-07T01:44:32Z <p>Currently I fail to <code>getRequestDispatcher</code> from Struts2 as below:</p> <pre><code>RequestDispatcher rd = httpReq.getRequestDispatcher("/category.htm"); </code></pre> <p>Error was show as below:</p> <pre><code>The requested resource (/xxxx/category.htm) is not available. </code></pre> <p>but it working well when <code>http:/xxxx/yyyy/category.htm?id=21</code> execute does anyone have idea?</p> http://stackoverflow.com/questions/1211903/struts2-set-values-in-the-bean-class-onclick-checkbox-of-each-row-in-table 0 Struts2: Set values in the bean class onclick checkbox of each row in table vivmal 2009-07-31T10:49:46Z 2009-12-06T20:00:02Z <p>Hi all, In my struts2 application I have an iterator and a list with objects like -</p> <pre><code>&lt;s:iterator value="listOfObjects"&gt; &lt;tr&gt; &lt;td&gt;&lt;s:property value="item" /&gt;&lt;/td&gt; &lt;td&gt;&lt;s:property value="category" /&gt;&lt;/td&gt; &lt;td&gt;&lt;s:property value="quantity" /&gt;&lt;/td&gt; &lt;td&gt;&lt;s:property value="brand" /&gt;&lt;/td&gt; &lt;td&gt;&lt;s:checkbox name="deleteRow" onclick="submit()"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/s:iterator&gt; </code></pre> <p>The above creates a table with a checkbox in the end column of each row. Now, Onclick any checkbox I want to set the values of corresponding row (only) in my bean class. I tried a lot but I am getting values of each row rather that values of only that particuler row whose checkbox user has clicked. Is it possible. If yes then please help. Thanks in advance.</p>