<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-206</id>
	<title>Nabble - Struts - User</title>
	<updated>2009-11-20T21:48:24Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Struts---User-f206.xml;" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Struts---User-f206.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26454024</id>
	<title>Problem using &lt;s: url /&gt; tag</title>
	<published>2009-11-20T21:48:24Z</published>
	<updated>2009-11-20T21:48:24Z</updated>
	<author>
		<name>Shekher</name>
	</author>
	<content type="html">Hi Friends,
&lt;br&gt;&lt;br&gt;I am using the url tag as follows:
&lt;br&gt;&lt;br&gt;&amp;lt;s:url id=*&amp;quot;url&amp;quot;* action=*&amp;quot;InvoiceFrame&amp;quot;*&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;s:param name=*&amp;quot;invoiceType&amp;quot;*&amp;gt;LocalInvoice&amp;lt;/s:param&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;/s:url&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;s:a href=*&amp;quot;%{url}&amp;quot;*&amp;gt;Local Invoice&amp;lt;/s:a&amp;gt;
&lt;br&gt;&lt;br&gt;The problem is the parameter defined in param tag is getting appended in all
&lt;br&gt;others &amp;nbsp;urls on the JSP page so affecting other url's implementation.
&lt;br&gt;&lt;br&gt;Please help me / guide me in resolving this issue.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Shekher.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-using-%3Cs%3A-url--%3E-tag-tp26454024p26454024.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26453989</id>
	<title>RE: Confused about Drop down lists (database generated)</title>
	<published>2009-11-20T21:31:28Z</published>
	<updated>2009-11-20T21:31:28Z</updated>
	<author>
		<name>raghuveerv</name>
	</author>
	<content type="html">You can use org.apache.struts2.util.ListEntry , a default object to hold key
&lt;br&gt;value in Roles list box for JSP page dropdowns.
&lt;br&gt;&lt;br&gt;&amp;lt;s:select label=&amp;quot;Role:&amp;quot; name=&amp;quot;roleId&amp;quot; list=&amp;quot;roles&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Raghuveer Vellanki
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Sommers, Elizabeth [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26453989&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;SommersE@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, November 12, 2009 7:32 PM
&lt;br&gt;To: Struts Users Mailing List
&lt;br&gt;Subject: Confused about Drop down lists (database generated)
&lt;br&gt;&lt;br&gt;All the drop down lists in my application need to be generated from the
&lt;br&gt;database. &amp;nbsp;Some of these lists will be needed for more than one JSP.
&lt;br&gt;So, in order to work with the &amp;lt;s:select&amp;gt; tag I am building an action for
&lt;br&gt;each list.
&lt;br&gt;&lt;br&gt;I know this has to be wrong. &amp;nbsp;Especially because some JSP's will need
&lt;br&gt;multiple drop down lists. &amp;nbsp;What is the best way of doing this in struts
&lt;br&gt;2.1.8? &amp;nbsp;Here is an example create method that I am using and the JSP
&lt;br&gt;that feeds it. &amp;nbsp;Should I be using a better way to get to create from a
&lt;br&gt;JSP? &amp;nbsp;I want to be able to use the roles drop down in multiple JSP's.
&lt;br&gt;&lt;br&gt;public String createUser()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; User user = new User();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; user.setUserName(userName);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; user.setPassword(password);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; user.setFirstName(firstName);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; user.setLastName(lastName);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; user.setPhone(phone);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; user.setEmail(email);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; service.createUser(user);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String userId = service.getUserId(user.getUserName());
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; roleUser = new RoleUser();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; roleUser.setRoleId(roleId);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; roleUser.setUserId(userId);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; service.createRoleUser(roleUser);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; roleUser = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; user = null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return SUCCESS;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&amp;lt;%@ page contentType=&amp;quot;text/html; charset=UTF-8&amp;quot;%&amp;gt;
&lt;br&gt;&amp;lt;%@ taglib prefix=&amp;quot;s&amp;quot; uri=&amp;quot;/struts-tags&amp;quot;%&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot; xml:lang=&amp;quot;en&amp;quot; lang=&amp;quot;en&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;s:head /&amp;gt;
&lt;br&gt;&amp;lt;body&amp;gt;
&lt;br&gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;&amp;lt;html:errors /&amp;gt;&amp;lt;/font&amp;gt;
&lt;br&gt;&amp;lt;s:form action=&amp;quot;createUserAction&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class=&amp;quot;inputs&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:hidden name=&amp;quot;id&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:textfield label=&amp;quot;User Name:&amp;quot; name=&amp;quot;userName&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:password label=&amp;quot;Password:&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name=&amp;quot;password&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:password label=&amp;quot;Repeat Password&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; name=&amp;quot;password2&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:textfield label=&amp;quot;First Name:&amp;quot; name=&amp;quot;firstName&amp;quot;&amp;gt;&amp;lt;/s:textfield&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:textfield label=&amp;quot;Last Name:&amp;quot; name=&amp;quot;lastName&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:textfield label=&amp;quot;Email:&amp;quot; name=&amp;quot;email&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:textfield label=&amp;quot;Phone:&amp;quot; name=&amp;quot;phone&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:select label=&amp;quot;Role:&amp;quot; name=&amp;quot;roleId&amp;quot; list=&amp;quot;roles&amp;quot; listKey=&amp;quot;id&amp;quot;
&lt;br&gt;listValue=&amp;quot;name&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;s:submit&amp;gt;&amp;lt;/s:submit&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;lt;/s:form&amp;gt;
&lt;br&gt;&amp;lt;/body&amp;gt;
&lt;br&gt;&lt;br&gt;Elizabeth Sommers
&lt;br&gt;Build and Release Engineer
&lt;br&gt;Pragmatics, Inc.
&lt;br&gt;703.761.4033
&lt;br&gt;&lt;br&gt;www.pragmatics.com 
&lt;br&gt;&lt;br&gt;Practical. Reliable. Secure.
&lt;br&gt;&lt;br&gt;This e-mail message, including any attachments, is intended only for the
&lt;br&gt;identified recipient(s). It may contain proprietary or otherwise legally
&lt;br&gt;protected information of Pragmatics, Inc. Any unauthorized review, use,
&lt;br&gt;copying, disclosure or distribution is strictly prohibited. If you have
&lt;br&gt;received this communication in error and are not the intended recipient,
&lt;br&gt;please immediately notify the sender of this message by reply e-mail and
&lt;br&gt;delete or otherwise destroy the e-mail, attachments, and any copies.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26453989&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26453989&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Confused-about-Drop-down-lists-%28database-generated%29-tp26319183p26453989.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26452812</id>
	<title>Struts2 Tags Example</title>
	<published>2009-11-20T17:18:33Z</published>
	<updated>2009-11-20T17:18:33Z</updated>
	<author>
		<name>Chris Cranford-2</name>
	</author>
	<content type="html">I am having trouble iterating/manipulating a collection via struts2 tags.
&lt;br&gt;&lt;br&gt;The layout of my entity object is this:
&lt;br&gt;&lt;br&gt;public class Role
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; private String name;
&lt;br&gt;&amp;nbsp; private String description;
&lt;br&gt;&amp;nbsp; private Long id;
&lt;br&gt;&amp;nbsp; private List&amp;lt;RoleFunctionAccess&amp;gt; roleFunctionAccess;
&lt;br&gt;&amp;nbsp; // getter/setters and annotations
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;public class Function
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; private String name;
&lt;br&gt;&amp;nbsp; private String description;
&lt;br&gt;&amp;nbsp; private String url;
&lt;br&gt;&amp;nbsp; private Long id;
&lt;br&gt;&amp;nbsp; // getter/setters and annotations
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;public class RoleFunctionAccess
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; private Long roleId;
&lt;br&gt;&amp;nbsp; private Long functionId;
&lt;br&gt;&amp;nbsp; private Long accessFlags; // bitmask 1-View,2-Add,4-Modify,8-Delete
&lt;br&gt;&amp;nbsp; // getter/setters and annotations
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;The above simply shows the relationship of the entity beans. &amp;nbsp;In the
&lt;br&gt;rendered JSP page am aiming for something like this:
&lt;br&gt;&lt;br&gt;Role: ADMIN
&lt;br&gt;Description: Administrator
&lt;br&gt;&lt;br&gt;Functions:
&lt;br&gt;Admin Users &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [ &amp;nbsp;] View &amp;nbsp;[ &amp;nbsp;] Add &amp;nbsp;[ &amp;nbsp;] Modify &amp;nbsp;[ &amp;nbsp;] Delete
&lt;br&gt;Admin Customers &amp;nbsp; &amp;nbsp; [ &amp;nbsp;] View &amp;nbsp;[ &amp;nbsp;] Add &amp;nbsp;[ &amp;nbsp;] Modify &amp;nbsp;[ &amp;nbsp;] Delete
&lt;br&gt;&lt;br&gt;My action renders the content from a display perspective ok, but it's
&lt;br&gt;getting the checkboxes related to the functions configured properly so
&lt;br&gt;that when the form is submitted that the appropriate
&lt;br&gt;RoleFunctionAccess beans are updated with the correctly bitmasked
&lt;br&gt;accessFlags values.
&lt;br&gt;&lt;br&gt;Can anyone help point me in the right direction?
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452812&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452812&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Struts2-Tags-Example-tp26452812p26452812.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26450090</id>
	<title>Re: s2: Possible bug found - how to report it?</title>
	<published>2009-11-20T12:51:49Z</published>
	<updated>2009-11-20T12:51:49Z</updated>
	<author>
		<name>Greg Lindholm-2</name>
	</author>
	<content type="html">Why don't you show your complete action configuration with all the result
&lt;br&gt;entries (better include and global results as well).
&lt;br&gt;Do you define a result of name=&amp;quot;input&amp;quot; as required for validation failure?
&lt;br&gt;What version of Struts are you using?
&lt;br&gt;&lt;br&gt;On Fri, Nov 20, 2009 at 2:08 PM, ben_979 &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26450090&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;benninesevennine@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Continuing with my validation problems, I think I've discovered a bug in
&lt;br&gt;&amp;gt; how
&lt;br&gt;&amp;gt; struts2 handles the method invocation after validation.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the submit tag:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;s:form action=&amp;quot;ScheduleDetailAction_dontCallMe&amp;quot; validate=&amp;quot;true&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; and in the struts.xml
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;result type=&amp;quot;chain&amp;quot; name=&amp;quot;dontCallMe&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ScheduleDetailAction_callMe
&lt;br&gt;&amp;gt; &amp;lt;/result&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If the form associated with the form tag gets validated succesfully,
&lt;br&gt;&amp;gt; everything works. However, if the validation fails, it tries to call the
&lt;br&gt;&amp;gt; dontCallMeMethod().
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; java.lang.NoSuchMethodException: ScheduleDetailAction.dontCallMeMethod()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; HOWEVER - if I implement dontCallMe(), then everything works, but the
&lt;br&gt;&amp;gt; dontCallMe() method is NEVER called.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This seems to be bug to me?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/s2%3A-Possible-bug-found---how-to-report-it--tp26443925p26443925.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/s2%3A-Possible-bug-found---how-to-report-it--tp26443925p26443925.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Struts - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26450090&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26450090&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/s2%3A-Possible-bug-found---how-to-report-it--tp26443925p26450090.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26443925</id>
	<title>s2: Possible bug found - how to report it?</title>
	<published>2009-11-20T11:08:10Z</published>
	<updated>2009-11-20T11:08:10Z</updated>
	<author>
		<name>ben_979</name>
	</author>
	<content type="html">&lt;br&gt;Continuing with my validation problems, I think I've discovered a bug in how struts2 handles the method invocation after validation.
&lt;br&gt;&lt;br&gt;Here is the submit tag:
&lt;br&gt;&lt;br&gt;&amp;lt;s:form action=&amp;quot;ScheduleDetailAction_dontCallMe&amp;quot; validate=&amp;quot;true&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;and in the struts.xml
&lt;br&gt;&lt;br&gt;&amp;lt;result type=&amp;quot;chain&amp;quot; name=&amp;quot;dontCallMe&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;param name=&quot;actionName&quot;&gt;ScheduleDetailAction_callMe&lt;/param&gt;&lt;br&gt;&amp;lt;/result&amp;gt;
&lt;br&gt;&lt;br&gt;If the form associated with the form tag gets validated succesfully, everything works. However, if the validation fails, it tries to call the dontCallMeMethod().
&lt;br&gt;&lt;br&gt;java.lang.NoSuchMethodException: ScheduleDetailAction.dontCallMeMethod()
&lt;br&gt;&lt;br&gt;&lt;br&gt;HOWEVER - if I implement dontCallMe(), then everything works, but the dontCallMe() method is NEVER called.
&lt;br&gt;&lt;br&gt;This seems to be bug to me?
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/s2%3A-Possible-bug-found---how-to-report-it--tp26443925p26443925.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26444585</id>
	<title>RE: Question about struts templates</title>
	<published>2009-11-20T06:46:57Z</published>
	<updated>2009-11-20T06:46:57Z</updated>
	<author>
		<name>raghuveerv</name>
	</author>
	<content type="html">Alternatively if you want to do only in one page
&lt;br&gt;&lt;br&gt;&amp;lt;s:form action=&amp;quot;helloWorld*&amp;quot; theme=&amp;quot;simple&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Raghuveer Vellanki
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Oscar [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26444585&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oscar.kalderon@...&lt;/a&gt;] 
&lt;br&gt;Sent: Friday, November 20, 2009 5:06 AM
&lt;br&gt;To: Struts Users Mailing List
&lt;br&gt;Subject: Re: Question about struts templates
&lt;br&gt;&lt;br&gt;Thanks for your answer Burton. I didn't know how to do that but for 
&lt;br&gt;others that could have that problem to the way to do this is the next:
&lt;br&gt;&lt;br&gt;Declare a constant in struts.xml like this:
&lt;br&gt;&lt;br&gt;&amp;lt;constant name=&amp;quot;struts.ui.theme&amp;quot; value=&amp;quot;simple&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;Burton Rhodes escribió:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Use the 'simple' theme. It just prints the HTML tag.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 11/19/09, Oscar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26444585&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oscar.kalderon@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hi to all, i have a problem with struts 2 templates. The problem is that
&lt;br&gt;&amp;gt;&amp;gt; when i put a s:submit in my jsp for example, it automatically creates a
&lt;br&gt;&amp;gt;&amp;gt; div containing the submit and a new column in the table, and i don't
&lt;br&gt;&amp;gt;&amp;gt; want that, i only want only the button. Is there a way to tell struts
&lt;br&gt;&amp;gt;&amp;gt; that i don' want to use any template?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks in advance
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26444585&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26444585&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26444585&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26444585&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26444585&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26444585&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Question-about-struts-templates-tp26435991p26444585.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26442815</id>
	<title>Help needed validating a struts select box</title>
	<published>2009-11-20T04:51:30Z</published>
	<updated>2009-11-20T04:51:30Z</updated>
	<author>
		<name>Sun Jie</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I am trying to validate a select box using Struts 2.1.8. &amp;nbsp;The select box 
&lt;br&gt;is a required form element, and by default it is empty. &amp;nbsp;I need to 
&lt;br&gt;validate that values have been put into it before it is submitted.
&lt;br&gt;&lt;br&gt;_Struts select box:_
&lt;br&gt;&lt;br&gt;&amp;lt;s:select name=&amp;quot;myIds&amp;quot; list=&amp;quot;myList&amp;quot; listKey=&amp;quot;id&amp;quot; listValue=&amp;quot;name&amp;quot; 
&lt;br&gt;size=&amp;quot;8&amp;quot; multiple=&amp;quot;true&amp;quot; required=&amp;quot;true&amp;quot; theme=&amp;quot;simple&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;_Struts XML Validator:_
&lt;br&gt;&lt;br&gt;&amp;lt;field name=&amp;quot;myIds&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;field-validator type=&amp;quot;required&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;message key=&amp;quot;this.is.required&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/field-validator&amp;gt;
&lt;br&gt;&amp;lt;/field&amp;gt;
&lt;br&gt;&lt;br&gt;When I use the above snips, the XML validator does not catch that the 
&lt;br&gt;select box is empty.
&lt;br&gt;&lt;br&gt;I have tried using validate() to make sure that an empty select box 
&lt;br&gt;cannot be submitted. &amp;nbsp;I could not get this to work. &amp;nbsp;The array I get is 
&lt;br&gt;of size 0 and setting the array to null doesn't help me either.
&lt;br&gt;&lt;br&gt;Does anyone know how to do this?
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26442815&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26442815&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-needed-validating-a-struts-select-box-tp26442815p26442815.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26441672</id>
	<title>Re: How to check if an iterator is empty inside a s:subset?</title>
	<published>2009-11-20T03:15:25Z</published>
	<updated>2009-11-20T03:15:25Z</updated>
	<author>
		<name>Cristian Peraferrer</name>
	</author>
	<content type="html">Finally I've found that:
&lt;br&gt;&lt;br&gt;&amp;lt;s:if test=&amp;quot;#attr.myListIterator.hasNext&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;did the trick. The thing is that I wasn't able to figure out where to
&lt;br&gt;find out &amp;quot;var&amp;quot; defined objects. Now I know that are accessed trough
&lt;br&gt;#attr.
&lt;br&gt;&lt;br&gt;I hope it will help those people with a similar problem.
&lt;br&gt;&lt;br&gt;Cris
&lt;br&gt;&lt;br&gt;On Thu, Nov 19, 2009 at 1:04 PM, Cristian Peraferrer
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441672&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corellian.c@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm trying to show a &amp;quot;There are no items in the list&amp;quot; message in my
&lt;br&gt;&amp;gt; application. I'm using a subset the following way:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;s:subset source=&amp;quot;myList&amp;quot; decider=&amp;quot;myDecider&amp;quot; var=&amp;quot;myListIterator&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;s:if test=&amp;quot;#myListIterator.hasNext()&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;s:iterator status=&amp;quot;status&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;tr class=&amp;quot;&amp;lt;s:if test=&amp;quot;#status.even&amp;quot;&amp;gt;even&amp;lt;/s:if&amp;gt;&amp;lt;s:else&amp;gt;odd&amp;lt;/s:else&amp;gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;td&amp;gt;&amp;lt;s:property value=&amp;quot;%{name}&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;gt;        &amp;lt;td&amp;gt;&amp;lt;s:property value=&amp;quot;%{type}&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/s:iterator&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/s:if&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;s:else&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;tr&amp;gt;
&lt;br&gt;&amp;gt;      &amp;lt;td colspan=&amp;quot;2&amp;quot;&amp;gt;There are no items in the list&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;gt;    &amp;lt;/s:else&amp;gt;
&lt;br&gt;&amp;gt;  &amp;lt;/s:subset&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But I'm not able to find how to access to the subset iterator... to
&lt;br&gt;&amp;gt; check if the iterator (or the subset list) is empty.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'd appreciate any help.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Cris
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; GPG Key-ID: 0x564903FA - JID: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441672&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corellian@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;GPG Key-ID: 0x564903FA - JID: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441672&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corellian@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441672&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441672&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-check-if-an-iterator-is-empty-inside-a-s%3Asubset--tp26425074p26441672.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26441386</id>
	<title>Re: struts.i18n.encoding</title>
	<published>2009-11-20T02:51:56Z</published>
	<updated>2009-11-20T02:51:56Z</updated>
	<author>
		<name>Carl Ballantyne</name>
	</author>
	<content type="html">Hi Cristian,
&lt;br&gt;&lt;br&gt;Thanks very much for your response.
&lt;br&gt;&lt;br&gt;I am using GlassFish 2.1 so will have a look to see if I can implement &amp;nbsp;
&lt;br&gt;your type of solution. What I don't get is why we need to apply a &amp;nbsp;
&lt;br&gt;filter when already the server is configured to use UTF-8 and we have &amp;nbsp;
&lt;br&gt;UTF-8 defined in the meta for the JSP.
&lt;br&gt;&lt;br&gt;It just seems strange that nobody has got this to work with &amp;nbsp;
&lt;br&gt;struts.i18.encoding. Surely there must be some other people out there &amp;nbsp;
&lt;br&gt;with multi language struts 2 apps.
&lt;br&gt;&lt;br&gt;I will try your solution and keep digging some more.
&lt;br&gt;Cheers,
&lt;br&gt;Carl.
&lt;br&gt;&lt;br&gt;Quoting Cristian Peraferrer &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corellian.c@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; In my application also used the 'struts.i18.encoding=UTF-8' but I had
&lt;br&gt;&amp;gt; the same problem. But I found a way to get it to work.
&lt;br&gt;&amp;gt; This way you are only telling struts that has to use UTF-8. But you
&lt;br&gt;&amp;gt; also need to tell to your Applications Container
&lt;br&gt;&amp;gt; (Tomcat for example) that you want UTF-8.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1. Set the URI encoding of Tomcat's server.xml configuration file. Set
&lt;br&gt;&amp;gt; URIEncoding=&amp;quot;UTF-8&amp;quot; in your http/https connectors:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;!-- Define a non-SSL HTTP/1.1 Connector on port 80 --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;Connector URIEncoding=&amp;quot;UTF-8&amp;quot; acceptCount=&amp;quot;100&amp;quot; &amp;nbsp; 
&lt;br&gt;&amp;gt; connectionTimeout=&amp;quot;20000&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;disableUploadTimeout=&amp;quot;true&amp;quot; enableLookups=&amp;quot;false&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;maxHttpHeaderSize=&amp;quot;8192&amp;quot; maxSpareThreads=&amp;quot;75&amp;quot; maxThreads=&amp;quot;150&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;minSpareThreads=&amp;quot;25&amp;quot; port=&amp;quot;80&amp;quot; redirectPort=&amp;quot;443&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2. Set a custom filter to configure POST requests use UTF-8:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;!-- To get POST requests as UTF-8 --&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;filter&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;filter-name&amp;gt;encodingFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;filter-class&amp;gt;path.to.your.filter.SetCharacterEncodingFilter&amp;lt;/filter-class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;init-param&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;param-name&amp;gt;encoding&amp;lt;/param-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;param-value&amp;gt;UTF-8&amp;lt;/param-value&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;/init-param&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/filter&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;filter-mapping&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;filter-name&amp;gt;encodingFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;/filter-mapping&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Tomcat already comes with such an example filter of &amp;nbsp; 
&lt;br&gt;&amp;gt; SetCharacterEncodingFilter.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3. Also in my application's web.xml I have set that JSPs use UTF-8 &amp;nbsp; 
&lt;br&gt;&amp;gt; as a default:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;jsp-config&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;!-- UTF-8 as the default JSP encoding --&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;jsp-property-group&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;url-pattern&amp;gt;*.jsp&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;page-encoding&amp;gt;UTF-8&amp;lt;/page-encoding&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;/jsp-property-group&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/jsp-config&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 4. In every JSP you I have the following typical &amp;lt;meta&amp;gt; tag inside &amp;lt;head&amp;gt;:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=UTF-8&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I hope it will help.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cristian.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Fri, Nov 20, 2009 at 10:14 AM, carl ballantyne
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;carl.ballantyne@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi Guys,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I have an app with form fields and when submitting them to my Struts 2
&lt;br&gt;&amp;gt;&amp;gt; actions the values are getting garbled. For example &amp;quot;españa&amp;quot; becomes
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;espa?&amp;quot;.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I think the problem is with Struts because when I create a basic jsp page
&lt;br&gt;&amp;gt;&amp;gt; and submit back to itself and display the form field - it works fine.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I have tried setting struts.i18n.encoding=UTF-8 in the struts.properties
&lt;br&gt;&amp;gt;&amp;gt; file and the struts.xml file to no avail. Has anyone used this with success?
&lt;br&gt;&amp;gt;&amp;gt; I have searched the forums and it seems to me that people have to resort to
&lt;br&gt;&amp;gt;&amp;gt; custom filters to workaround the problem.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt; Carl.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; GPG Key-ID: 0x564903FA - JID: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corellian@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441386&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/struts.i18n.encoding-tp26440335p26441386.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26440839</id>
	<title>Re: struts.i18n.encoding</title>
	<published>2009-11-20T01:58:25Z</published>
	<updated>2009-11-20T01:58:25Z</updated>
	<author>
		<name>Cristian Peraferrer</name>
	</author>
	<content type="html">In my application also used the 'struts.i18.encoding=UTF-8' but I had
&lt;br&gt;the same problem. But I found a way to get it to work.
&lt;br&gt;This way you are only telling struts that has to use UTF-8. But you
&lt;br&gt;also need to tell to your Applications Container
&lt;br&gt;(Tomcat for example) that you want UTF-8.
&lt;br&gt;&lt;br&gt;1. Set the URI encoding of Tomcat's server.xml configuration file. Set
&lt;br&gt;URIEncoding=&amp;quot;UTF-8&amp;quot; in your http/https connectors:
&lt;br&gt;&lt;br&gt;&amp;lt;!-- Define a non-SSL HTTP/1.1 Connector on port 80 --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;Connector URIEncoding=&amp;quot;UTF-8&amp;quot; acceptCount=&amp;quot;100&amp;quot; connectionTimeout=&amp;quot;20000&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;disableUploadTimeout=&amp;quot;true&amp;quot; enableLookups=&amp;quot;false&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;maxHttpHeaderSize=&amp;quot;8192&amp;quot; maxSpareThreads=&amp;quot;75&amp;quot; maxThreads=&amp;quot;150&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;minSpareThreads=&amp;quot;25&amp;quot; port=&amp;quot;80&amp;quot; redirectPort=&amp;quot;443&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;2. Set a custom filter to configure POST requests use UTF-8:
&lt;br&gt;&lt;br&gt;&amp;lt;!-- To get POST requests as UTF-8 --&amp;gt;
&lt;br&gt;&amp;lt;filter&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;filter-name&amp;gt;encodingFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;filter-class&amp;gt;path.to.your.filter.SetCharacterEncodingFilter&amp;lt;/filter-class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;init-param&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;param-name&amp;gt;encoding&amp;lt;/param-name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;param-value&amp;gt;UTF-8&amp;lt;/param-value&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/init-param&amp;gt;
&lt;br&gt;&amp;lt;/filter&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;filter-mapping&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;filter-name&amp;gt;encodingFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/filter-mapping&amp;gt;
&lt;br&gt;&lt;br&gt;Tomcat already comes with such an example filter of SetCharacterEncodingFilter.
&lt;br&gt;&lt;br&gt;3. Also in my application's web.xml I have set that JSPs use UTF-8 as a default:
&lt;br&gt;&lt;br&gt;&amp;lt;jsp-config&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;!-- UTF-8 as the default JSP encoding --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;jsp-property-group&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;url-pattern&amp;gt;*.jsp&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;page-encoding&amp;gt;UTF-8&amp;lt;/page-encoding&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/jsp-property-group&amp;gt;
&lt;br&gt;&amp;lt;/jsp-config&amp;gt;
&lt;br&gt;&lt;br&gt;4. In every JSP you I have the following typical &amp;lt;meta&amp;gt; tag inside &amp;lt;head&amp;gt;:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=UTF-8&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;I hope it will help.
&lt;br&gt;&lt;br&gt;Cristian.
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Fri, Nov 20, 2009 at 10:14 AM, carl ballantyne
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440839&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;carl.ballantyne@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have an app with form fields and when submitting them to my Struts 2
&lt;br&gt;&amp;gt; actions the values are getting garbled. For example &amp;quot;españa&amp;quot; becomes
&lt;br&gt;&amp;gt; &amp;quot;espa?&amp;quot;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I think the problem is with Struts because when I create a basic jsp page
&lt;br&gt;&amp;gt; and submit back to itself and display the form field - it works fine.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have tried setting struts.i18n.encoding=UTF-8 in the struts.properties
&lt;br&gt;&amp;gt; file and the struts.xml file to no avail. Has anyone used this with success?
&lt;br&gt;&amp;gt; I have searched the forums and it seems to me that people have to resort to
&lt;br&gt;&amp;gt; custom filters to workaround the problem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Carl.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440839&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440839&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;GPG Key-ID: 0x564903FA - JID: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440839&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corellian@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440839&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440839&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/struts.i18n.encoding-tp26440335p26440839.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26440335</id>
	<title>struts.i18n.encoding</title>
	<published>2009-11-20T01:14:26Z</published>
	<updated>2009-11-20T01:14:26Z</updated>
	<author>
		<name>Carl Ballantyne</name>
	</author>
	<content type="html">Hi Guys,
&lt;br&gt;&lt;br&gt;I have an app with form fields and when submitting them to my Struts 2 &amp;nbsp;
&lt;br&gt;actions the values are getting garbled. For example &amp;quot;españa&amp;quot; becomes &amp;nbsp;
&lt;br&gt;&amp;quot;espa?&amp;quot;.
&lt;br&gt;&lt;br&gt;I think the problem is with Struts because when I create a basic jsp &amp;nbsp;
&lt;br&gt;page and submit back to itself and display the form field - it works &amp;nbsp;
&lt;br&gt;fine.
&lt;br&gt;&lt;br&gt;I have tried setting struts.i18n.encoding=UTF-8 in the &amp;nbsp;
&lt;br&gt;struts.properties file and the struts.xml file to no avail. Has anyone &amp;nbsp;
&lt;br&gt;used this with success? I have searched the forums and it seems to me &amp;nbsp;
&lt;br&gt;that people have to resort to custom filters to workaround the problem.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Carl.
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440335&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26440335&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/struts.i18n.encoding-tp26440335p26440335.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26439498</id>
	<title>struts2 breadcrumb plugin</title>
	<published>2009-11-19T23:41:09Z</published>
	<updated>2009-11-19T23:41:09Z</updated>
	<author>
		<name>jheidenreich</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm looking for the Struts2 Breadcrumb Plugin by Scott Stanlick. The 
&lt;br&gt;published Link to the Plugin at 
&lt;br&gt;&lt;a href=&quot;http://cwiki.apache.org/S2PLUGINS/breadcrumbs-plugin.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cwiki.apache.org/S2PLUGINS/breadcrumbs-plugin.html&lt;/a&gt;&amp;nbsp;seems to be dead 
&lt;br&gt;and the site &lt;a href=&quot;http://struts2inaction.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://struts2inaction.com/&lt;/a&gt;&amp;nbsp;that is supposed to be hosting 
&lt;br&gt;the plugin seems to be down.
&lt;br&gt;&lt;br&gt;Does anyone have this file and is prepared to send it to me or is there an 
&lt;br&gt;alternative download link?
&lt;br&gt;&lt;br&gt;Thank you!
&lt;br&gt;Joachim</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/struts2-breadcrumb-plugin-tp26439498p26439498.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26436219</id>
	<title>Strange behavior after upgrade</title>
	<published>2009-11-19T15:43:04Z</published>
	<updated>2009-11-19T15:43:04Z</updated>
	<author>
		<name>tsattler</name>
	</author>
	<content type="html">Hello all.
&lt;br&gt;&lt;br&gt;I have upgraded a Struts 2.0.11 project to 2.1.8, and I have some strange
&lt;br&gt;behavior. &amp;nbsp;The Struts stuff seems to work fine, and the Ajax stuff works
&lt;br&gt;fine as well. &amp;nbsp;The Hibernate stuff works as far as reading data is
&lt;br&gt;concerned. &amp;nbsp;But when I try to write a record, nothing happens on the
&lt;br&gt;database and I get no exception thrown, and I get no errors in the log.
&lt;br&gt;&lt;br&gt;For instance, whenever a user logs in, a LoginHistory object is created, and
&lt;br&gt;subsequently written to the login_history table in Postgres. &amp;nbsp;The
&lt;br&gt;application is using the EntityManager to persist a new object. &amp;nbsp;The code is
&lt;br&gt;simple; the LoginHistoryService class says:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public void persist(LoginHistory loginHistory)
&lt;br&gt;&amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp;try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;About to insert login_history record&amp;quot;) ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; entityManager.persist(loginHistory);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;Done inserting login_history record&amp;quot;) ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (Exception ex)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(ex.getMessage() ) ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;I see the two logged messages, and in stepping through with a debugger, the
&lt;br&gt;persist statement *seems* to be done, but nothing appears in the database.
&lt;br&gt;&lt;br&gt;Also, when changing a User's account data, nothing winds up in Postgres.
&lt;br&gt;The UserService class says:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public void merge(User user)
&lt;br&gt;&amp;nbsp; &amp;nbsp; { &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; entityManager.merge(user);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; catch (Exception ex)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(ex.getMessage() ) ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;But the record is never changed.
&lt;br&gt;&lt;br&gt;&lt;br&gt;The Hibernate section of pom.xml says:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;groupId&amp;gt;org.hibernate&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;artifactId&amp;gt;hibernate&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;version&amp;gt;3.2.1.ga&amp;lt;/version&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/dependency&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;groupId&amp;gt;org.hibernate&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;artifactId&amp;gt;hibernate-annotations&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;version&amp;gt;3.2.1.ga&amp;lt;/version&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/dependency&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dependency&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;groupId&amp;gt;org.hibernate&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;artifactId&amp;gt;hibernate-entitymanager&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;version&amp;gt;3.2.1.ga&amp;lt;/version&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/dependency&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;As I sit here pulling my hair out, does anyone remember having anything like
&lt;br&gt;this happen after an upgrade to 2.1.8? &amp;nbsp;Or an any other circumstance?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Tom
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Strange-behavior-after-upgrade-tp26436219p26436219.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26436150</id>
	<title>Re: Question about struts templates</title>
	<published>2009-11-19T15:36:02Z</published>
	<updated>2009-11-19T15:36:02Z</updated>
	<author>
		<name>Oscar Calderón-2</name>
	</author>
	<content type="html">Thanks for your answer Burton. I didn't know how to do that but for 
&lt;br&gt;others that could have that problem to the way to do this is the next:
&lt;br&gt;&lt;br&gt;Declare a constant in struts.xml like this:
&lt;br&gt;&lt;br&gt;&amp;lt;constant name=&amp;quot;struts.ui.theme&amp;quot; value=&amp;quot;simple&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;Burton Rhodes escribió:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Use the 'simple' theme. It just prints the HTML tag.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 11/19/09, Oscar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436150&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oscar.kalderon@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hi to all, i have a problem with struts 2 templates. The problem is that
&lt;br&gt;&amp;gt;&amp;gt; when i put a s:submit in my jsp for example, it automatically creates a
&lt;br&gt;&amp;gt;&amp;gt; div containing the submit and a new column in the table, and i don't
&lt;br&gt;&amp;gt;&amp;gt; want that, i only want only the button. Is there a way to tell struts
&lt;br&gt;&amp;gt;&amp;gt; that i don' want to use any template?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks in advance
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436150&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436150&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436150&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436150&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436150&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436150&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Question-about-struts-templates-tp26435991p26436150.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26436082</id>
	<title>Re: Question about struts templates</title>
	<published>2009-11-19T15:29:46Z</published>
	<updated>2009-11-19T15:29:46Z</updated>
	<author>
		<name>Burton Rhodes</name>
	</author>
	<content type="html">Use the 'simple' theme. It just prints the HTML tag.
&lt;br&gt;&lt;br&gt;On 11/19/09, Oscar &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436082&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;oscar.kalderon@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi to all, i have a problem with struts 2 templates. The problem is that
&lt;br&gt;&amp;gt; when i put a s:submit in my jsp for example, it automatically creates a
&lt;br&gt;&amp;gt; div containing the submit and a new column in the table, and i don't
&lt;br&gt;&amp;gt; want that, i only want only the button. Is there a way to tell struts
&lt;br&gt;&amp;gt; that i don' want to use any template?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks in advance
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436082&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436082&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436082&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26436082&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Question-about-struts-templates-tp26435991p26436082.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26435991</id>
	<title>Question about struts templates</title>
	<published>2009-11-19T15:23:06Z</published>
	<updated>2009-11-19T15:23:06Z</updated>
	<author>
		<name>Oscar Calderón-2</name>
	</author>
	<content type="html">Hi to all, i have a problem with struts 2 templates. The problem is that 
&lt;br&gt;when i put a s:submit in my jsp for example, it automatically creates a 
&lt;br&gt;div containing the submit and a new column in the table, and i don't 
&lt;br&gt;want that, i only want only the button. Is there a way to tell struts 
&lt;br&gt;that i don' want to use any template?
&lt;br&gt;&lt;br&gt;Thanks in advance
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435991&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26435991&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Question-about-struts-templates-tp26435991p26435991.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26428024</id>
	<title>Setting Session setMaxInactiveInterval</title>
	<published>2009-11-19T07:16:03Z</published>
	<updated>2009-11-19T07:16:03Z</updated>
	<author>
		<name>CRANFORD, CHRIS</name>
	</author>
	<content type="html">&lt;br&gt;What is the proper way in Struts2 to dynamically set a particular
&lt;br&gt;application's session timeout value (HttpSession setMaxInactiveInterval)
&lt;br&gt;during the login process so that the session properly expires? &amp;nbsp;
&lt;br&gt;&lt;br&gt;Is this only possible by creating an HttpSessionListener and putting it
&lt;br&gt;in web.xml?
&lt;br&gt;&lt;br&gt;public class MyAppSessionListener implements HttpSessionListener 
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; public void sessionCreated(HttpSessionEvent event) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; HttpSession session = event.getSession();
&lt;br&gt;&amp;nbsp; &amp;nbsp; session.setMaxInactiveInterval(60*5);
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp; public void sessionDestroyed(HttpSessionEvent event) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; HttpSession session = event.getSession();
&lt;br&gt;&amp;nbsp; &amp;nbsp; Session.invalidate();
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&amp;lt;listener&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;listener-class&amp;gt;MyAppSessionListener&amp;lt;/listener-class&amp;gt;
&lt;br&gt;&amp;lt;/listener&amp;gt;
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Chris
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428024&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26428024&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Setting-Session-setMaxInactiveInterval-tp26428024p26428024.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26425074</id>
	<title>How to check if an iterator is empty inside a s:subset?</title>
	<published>2009-11-19T04:04:41Z</published>
	<updated>2009-11-19T04:04:41Z</updated>
	<author>
		<name>Cristian Peraferrer</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm trying to show a &amp;quot;There are no items in the list&amp;quot; message in my
&lt;br&gt;application. I'm using a subset the following way:
&lt;br&gt;&lt;br&gt;&amp;lt;s:subset source=&amp;quot;myList&amp;quot; decider=&amp;quot;myDecider&amp;quot; var=&amp;quot;myListIterator&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;s:if test=&amp;quot;#myListIterator.hasNext()&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;s:iterator status=&amp;quot;status&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr class=&amp;quot;&amp;lt;s:if test=&amp;quot;#status.even&amp;quot;&amp;gt;even&amp;lt;/s:if&amp;gt;&amp;lt;s:else&amp;gt;odd&amp;lt;/s:else&amp;gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;s:property value=&amp;quot;%{name}&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;s:property value=&amp;quot;%{type}&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/s:iterator&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/s:if&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;s:else&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td colspan=&amp;quot;2&amp;quot;&amp;gt;There are no items in the list&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/s:else&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/s:subset&amp;gt;
&lt;br&gt;&lt;br&gt;But I'm not able to find how to access to the subset iterator... to
&lt;br&gt;check if the iterator (or the subset list) is empty.
&lt;br&gt;&lt;br&gt;I'd appreciate any help.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Cris
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;GPG Key-ID: 0x564903FA - JID: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26425074&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corellian@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26425074&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26425074&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-check-if-an-iterator-is-empty-inside-a-s%3Asubset--tp26425074p26425074.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26421583</id>
	<title>Re: Getting Context within &lt;logic:iterate/&gt;</title>
	<published>2009-11-18T23:04:37Z</published>
	<updated>2009-11-18T23:04:37Z</updated>
	<author>
		<name>jwynacht</name>
	</author>
	<content type="html">Yup....thanks!
&lt;br&gt;&lt;br&gt;On Nov 18, 2009, at 8:30 AM, Brian Thompson wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Something like the following should work (double-check the syntax though!):
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;%@ page import=&amp;quot;com.oe.wa.cal.bean.DownloadBean&amp;quot; %&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;%
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for (DownloadBean db: (List&amp;lt;DownloadBean&amp;gt;)
&lt;br&gt;&amp;gt; request.getAttribute(&amp;quot;downloadList&amp;quot;).iterator()) {
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; out.print(db.getSomeProperty());
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; %&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -Brian
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26421583&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26421583&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-Context-within-%3Clogic%3Aiterate-%3E-tp26409843p26421583.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26421582</id>
	<title>Re: Question about objects in a JSP</title>
	<published>2009-11-18T23:04:27Z</published>
	<updated>2009-11-18T23:04:27Z</updated>
	<author>
		<name>jwynacht</name>
	</author>
	<content type="html">Ahhh...that's cool. Thanks!
&lt;br&gt;&lt;br&gt;On Nov 18, 2009, at 12:29 PM, ben_979 wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; By 'old struts', I'm assuming 1.x ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In our application, our application sets values into the request with
&lt;br&gt;&amp;gt; request.setAttribute(&amp;quot;varName&amp;quot;, var) and then references the variables in
&lt;br&gt;&amp;gt; the jsp with (for example) &amp;lt;c:out value=&amp;quot;${varName}&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Then you can use the &amp;lt;c:if/&amp;gt; tags etc, 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Not sure if I answered your question...
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Question-about-objects-in-a-JSP-tp26403401p26415181.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Question-about-objects-in-a-JSP-tp26403401p26415181.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Struts - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26421582&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26421582&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26421582&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26421582&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Question-about-objects-in-a-JSP-tp26403401p26421582.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26421089</id>
	<title>dojo datetimepicker not invoking setter</title>
	<published>2009-11-18T22:39:27Z</published>
	<updated>2009-11-18T22:39:27Z</updated>
	<author>
		<name>Lee Clemens-4</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;It seems as though using a Dojo element is not invoking the setter in my
&lt;br&gt;action, and I am not certain why. &amp;nbsp;I hope I am simply missing something?
&lt;br&gt;&lt;br&gt;Struts 2.1.8, Tomcat 6.x, Firefox 3.5.x
&lt;br&gt;&lt;br&gt;I have included the following jars in WEB-INF/lib, and have the following
&lt;br&gt;inside the &amp;lt;head&amp;gt; tag of the action's JSP:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sx:head debug=&amp;quot;true&amp;quot; cache=&amp;quot;false&amp;quot; compressed=&amp;quot;false&amp;quot;
&lt;br&gt;parseContent=&amp;quot;false&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;Jars:
&lt;br&gt;freemarker-2.3.15.jar
&lt;br&gt;struts2-dojo-plugin-2.1.8.jar
&lt;br&gt;struts2-json-plugin-2.1.8.jar
&lt;br&gt;json-lib-2.1.jar
&lt;br&gt;&lt;br&gt;&lt;br&gt;Using s:textfield tag invokes the setter as expected; however, using
&lt;br&gt;sx:datetimepicker and &amp;lt;sx:head&amp;gt; tag does not invoke setter.
&lt;br&gt;&lt;br&gt;&amp;lt;s:textfield name=&amp;quot;addMeasurementDate&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;size=&amp;quot;10&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;maxLength=&amp;quot;10&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;value=&amp;quot;2009-01-01&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;%--&amp;lt;sx:datetimepicker name=&amp;quot;addMeasurementDate&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;displayFormat=&amp;quot;yyyy-MM-dd&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;/sx:datetimepicker&amp;gt;--%&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;HTML produced when using &amp;lt;sx:head&amp;gt; and &amp;lt;sx:datetimepicker&amp;gt;:
&lt;br&gt;&lt;br&gt;&amp;lt;td class=&amp;quot;dateRowOdd&amp;quot; nowrap=&amp;quot;nowrap&amp;quot; align=&amp;quot;left&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;dojoType=&amp;quot;struts:StrutsDatePicker&amp;quot; &amp;nbsp; &amp;nbsp;id=&amp;quot;widget_631437215&amp;quot;
&lt;br&gt;name=&amp;quot;addMeasurementDate&amp;quot; &amp;nbsp; &amp;nbsp;inputName=&amp;quot;dojo.addMeasurementDate&amp;quot;
&lt;br&gt;displayFormat=&amp;quot;yyyy-MM-dd&amp;quot; &amp;nbsp;saveFormat=&amp;quot;rfc&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script language=&amp;quot;JavaScript&amp;quot;
&lt;br&gt;type=&amp;quot;text/javascript&amp;quot;&amp;gt;djConfig.searchIds.push(&amp;quot;widget_631437215&amp;quot;);&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&lt;br&gt;JavaScript entries are present in head tag, and in Firefox's View Page
&lt;br&gt;Source I can click on them and access the JavaScript source.
&lt;br&gt;&lt;br&gt;Action contains:
&lt;br&gt;&lt;br&gt;public void setAddMeasurementDate(String addMeasurementDate) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println(&amp;quot;----- Date: `&amp;quot; + addMeasurementDate + &amp;quot;\&amp;quot;&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.addMeasurementDate = addMeasurementDate;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;I tried nesting the s:textfield inside the sx:datetimepicker tag as well,
&lt;br&gt;but setter is still not invoked.
&lt;br&gt;&lt;br&gt;I can't seem to find any useful information about this issue. I have tried
&lt;br&gt;&amp;lt;s:submit&amp;gt; and &amp;lt;sx:submit id=&amp;quot;...&amp;quot;/&amp;gt;, with the same result (setter not being
&lt;br&gt;invoked) (and sx:submit does not refresh the page, but does invoke
&lt;br&gt;execute()).
&lt;br&gt;&lt;br&gt;Any help is greatly appreciated.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Lee
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26421089&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26421089&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/dojo-datetimepicker-not-invoking-setter-tp26421089p26421089.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26418892</id>
	<title>s2: validation of checkbox a radio button</title>
	<published>2009-11-18T17:27:44Z</published>
	<updated>2009-11-18T17:27:44Z</updated>
	<author>
		<name>Ignacio de Córdoba</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;I am trying to use client side validations through ...-validation.xml in struts2
&lt;br&gt;I have it working but only for text and file input fields. I need to validate if a checkbox is checked. using &amp;quot;required&amp;quot; or &amp;quot;requiredstring&amp;quot; validators always validates as the field as a value even if you don't checkit. I guess the same happens with a group of radio buttons. (all with the same field name). They have a value.
&lt;br&gt;&lt;br&gt;I have not found a OGNL expression that might work.
&lt;br&gt;&lt;br&gt;Anybody know how to solve this? I'd like to use simple client side validation.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Ignacio</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/s2%3A-validation-of-checkbox-a-radio-button-tp26418892p26418892.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26416537</id>
	<title>Re: s2: Validation xml file not being used when validating a method</title>
	<published>2009-11-18T13:58:38Z</published>
	<updated>2009-11-18T13:58:38Z</updated>
	<author>
		<name>ben_979</name>
	</author>
	<content type="html">Apparently it isn't working as I expected. I would really like to understand how this works.
&lt;br&gt;&lt;br&gt;Here is my form tag:
&lt;br&gt;&lt;br&gt;&amp;lt;s:form action=&amp;quot;ScheduleDetailAction_updateSchedule&amp;quot; validate=&amp;quot;true&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;Here is my struts.xml entry:
&lt;br&gt;&lt;br&gt;&amp;lt;result type=&amp;quot;chain&amp;quot; name=&amp;quot;updateSchedule&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;param name=&quot;actionName&quot;&gt;ScheduleDetailAction_update&lt;/param&gt;&lt;br&gt;&amp;lt;/result&amp;gt;
&lt;br&gt;&lt;br&gt;Here is partial contents of my ScheduleDetailAction-ScheduleDetailAction_updateSchedule-validation.xml
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;field name=&amp;quot;schedule.count&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;field-validator type=&amp;quot;required&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;message&amp;gt;Count is required&amp;lt;/message&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/field-validator&amp;gt;	
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;field-validator type=&amp;quot;int&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;param name=&quot;min&quot;&gt;3&lt;/param&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;param name=&quot;max&quot;&gt;30&lt;/param&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;message&amp;gt;Count must be an integer between 3 and 30&amp;lt;/message&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/field-validator&amp;gt;	
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/field&amp;gt; 
&lt;br&gt;&lt;br&gt;and I have an update() method in my ScheduleDetailAction.java file.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Here is the problem:
&lt;br&gt;&lt;br&gt;If I enter an integer, the validation is checked and the form works correctly. If I enter a String, for example, I get this error: 
&lt;br&gt;&lt;br&gt;NoSuchMethodException: ScheduleDetailAction.updateSchedule()
&lt;br&gt;&lt;br&gt;&lt;br&gt;Why does it honor the struts.xml and redirect to the update() method when the input is correct, and why does it look for a non-existent method called updateSchedule() otherwise?
&lt;br&gt;&lt;br&gt;Thanks in advance.
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/s2%3A-Validation-xml-file-not-being-used-when-validating-a-method-tp26399337p26416537.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26416182</id>
	<title>Re: how to use one user input in two forms?</title>
	<published>2009-11-18T13:33:58Z</published>
	<updated>2009-11-18T13:33:58Z</updated>
	<author>
		<name>ben_979</name>
	</author>
	<content type="html">Are you talking about two submits on the same form? That is definitely possible.
&lt;br&gt;&lt;br&gt;This might help ...
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.alanflavell.org.uk/www/trysub.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.alanflavell.org.uk/www/trysub.html&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-use-one-user-input-in-two-forms--tp26415809p26416182.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26416048</id>
	<title>Lazy Initialization Error</title>
	<published>2009-11-18T13:24:18Z</published>
	<updated>2009-11-18T13:24:18Z</updated>
	<author>
		<name>CRANFORD, CHRIS</name>
	</author>
	<content type="html">&lt;br&gt;I am trying to understand why my web application throws a
&lt;br&gt;LazyInitializationException when trying to lazily initialize a
&lt;br&gt;collection in an entity object.
&lt;br&gt;&lt;br&gt;From what I have read, I needed to setup a filter for Hibernate in my
&lt;br&gt;web.xml and since I am using JPA the filter was defined as follows:
&lt;br&gt;&lt;br&gt;&amp;lt;filter&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;filter-name&amp;gt;hibernateFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;lt;filter-class&amp;gt;org.springframework.orm.jpa.support.OpenEntityManagerInVie
&lt;br&gt;wFilter&amp;lt;/filter-class&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;init-param&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;param-name&amp;gt;entityManagerFactoryBean&amp;lt;/param-name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;param-value&amp;gt;entityManagerFactory&amp;lt;/param-value&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/init-param&amp;gt;
&lt;br&gt;&amp;lt;/filter&amp;gt;
&lt;br&gt;&lt;br&gt;And then the mapping was set as follows:
&lt;br&gt;&lt;br&gt;&amp;lt;filter-mapping&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;filter-name&amp;gt;hibernateFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;lt;/filter-mapping&amp;gt;
&lt;br&gt;&lt;br&gt;// LoginAction.java
&lt;br&gt;public String execute() {
&lt;br&gt;&amp;nbsp; User user = userService.authenticate(userName,password);
&lt;br&gt;&amp;nbsp; if(user != null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; setSessionObject(Constants.USER_KEY, user);
&lt;br&gt;&amp;nbsp; &amp;nbsp; return Action.SUCCESS;
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp; return Action.ERROR;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;When a user is at the login form and the LoginAction execute() method is
&lt;br&gt;called, the user object is instantiated properly from the user service
&lt;br&gt;and contains all the eagerly pulled values. &amp;nbsp;I then click on another URL
&lt;br&gt;which calls another action's execute method that does the following:
&lt;br&gt;&lt;br&gt;public String execute() {
&lt;br&gt;&amp;nbsp; User user = getSessionObject(Constants.USER_KEY);
&lt;br&gt;&amp;nbsp; if(user != null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; if(user.getUserRoles().size() &amp;gt; 0) { 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; // do some other stuff
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp; return Action.ERROR;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;The problem is when getUserRoles() is called, I get the error because
&lt;br&gt;they are not pulled eagerly when the User entity is first fetched from
&lt;br&gt;the database. &amp;nbsp;Is there a way I can avoid this
&lt;br&gt;LazyInitializationException problem?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26416048&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26416048&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Lazy-Initialization-Error-tp26416048p26416048.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26415809</id>
	<title>how to use one user input in two forms?</title>
	<published>2009-11-18T13:10:22Z</published>
	<updated>2009-11-18T13:10:22Z</updated>
	<author>
		<name>fireapple</name>
	</author>
	<content type="html">Dear all,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; I want to use a multiple select to ask user select the item they want. The items selected will be on a pdf file which will be sent as attachment of email (user can click &amp;quot;send email&amp;quot; button to send them). The user wants to confirm if the pdf is right before he sends it. Therefore, I create a &amp;quot;PDF&amp;quot; button to ask user to check if the PDF attachment is what he wants to send.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Here is the situation:
&lt;br&gt;Since the &amp;quot;PDF&amp;quot; button and &amp;quot;send email&amp;quot; button will both use the selected item info, I don't want the user to select the same list twice(of course user doesn't want to do that).
&lt;br&gt;&lt;br&gt;I thought to store the selected info in session when the user click &amp;quot;PDF&amp;quot; so that they have the info when he clicks &amp;quot;send email&amp;quot;. But user may just click &amp;quot;send email&amp;quot; directly without checking first, then the selected info will be lost.
&lt;br&gt;&lt;br&gt;Any suggestions about this? Thanks</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-use-one-user-input-in-two-forms--tp26415809p26415809.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26415181</id>
	<title>Re: Question about objects in a JSP</title>
	<published>2009-11-18T12:29:51Z</published>
	<updated>2009-11-18T12:29:51Z</updated>
	<author>
		<name>ben_979</name>
	</author>
	<content type="html">&lt;br&gt;By 'old struts', I'm assuming 1.x ...
&lt;br&gt;&lt;br&gt;In our application, our application sets values into the request with request.setAttribute(&amp;quot;varName&amp;quot;, var) and then references the variables in the jsp with (for example) &amp;lt;c:out value=&amp;quot;${varName}&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;Then you can use the &amp;lt;c:if/&amp;gt; tags etc, 
&lt;br&gt;&lt;br&gt;Not sure if I answered your question...</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Question-about-objects-in-a-JSP-tp26403401p26415181.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26411051</id>
	<title>Re: Getting Context within &lt;logic:iterate/&gt;</title>
	<published>2009-11-18T08:30:36Z</published>
	<updated>2009-11-18T08:30:36Z</updated>
	<author>
		<name>Brian Thompson-5</name>
	</author>
	<content type="html">Something like the following should work (double-check the syntax though!):
&lt;br&gt;&lt;br&gt;&amp;lt;%@ page import=&amp;quot;com.oe.wa.cal.bean.DownloadBean&amp;quot; %&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;%
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for (DownloadBean db: (List&amp;lt;DownloadBean&amp;gt;)
&lt;br&gt;request.getAttribute(&amp;quot;downloadList&amp;quot;).iterator()) {
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;out.print(db.getSomeProperty());
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;gt; %&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;-Brian
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-Context-within-%3Clogic%3Aiterate-%3E-tp26409843p26411051.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26408415</id>
	<title>Re: [ANN] Struts 2.1.8.1 Release</title>
	<published>2009-11-18T07:44:19Z</published>
	<updated>2009-11-18T07:44:19Z</updated>
	<author>
		<name>Mark Bargen</name>
	</author>
	<content type="html">&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Wes Wannemacher wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I could be confused or just too tired, but when I go here - 
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://repo1.maven.org/maven2/org/apache/struts/struts2-core/2.1.8.1/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://repo1.maven.org/maven2/org/apache/struts/struts2-core/2.1.8.1/&lt;/a&gt;&lt;br&gt;&lt;br&gt;I see the artifacts... 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
My apologies. &amp;nbsp;I've again run afoul of some screening in our enterprise HTTP proxy server, and my slipshod analysis sent you off doing extra work. &amp;nbsp;Hate it when I do that ...
&lt;br&gt;&lt;br&gt;Mark</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-ANN--Struts-2.1.8.1-Release-tp26377172p26408415.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26409843</id>
	<title>Getting Context within &lt;logic:iterate/&gt;</title>
	<published>2009-11-18T07:22:37Z</published>
	<updated>2009-11-18T07:22:37Z</updated>
	<author>
		<name>jwynacht</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;So I think I have a better way to ask my question ;-)
&lt;br&gt;&lt;br&gt;Given something like this block of tags:
&lt;br&gt;&lt;br&gt;&amp;lt;logic:iterate id=&amp;quot;download&amp;quot; name=&amp;quot;Downloads&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;bean:write name=&amp;quot;download&amp;quot; property=&amp;quot;displayName&amp;quot;/&amp;gt;&amp;lt;br /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;bean:write name=&amp;quot;download&amp;quot; property=&amp;quot;description&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/logic:iterate&amp;gt;
&lt;br&gt;&lt;br&gt;How can I do something like this inside the &amp;lt;logic:iterate/&amp;gt;:
&lt;br&gt;&lt;br&gt;&amp;lt;%@ page import=&amp;quot;com.oe.wa.cal.bean.DownloadBean&amp;quot; %&amp;gt;
&lt;br&gt;&amp;lt;%
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DownloadBean db = (DownloadBean) request.getAttribute(&amp;quot;download&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; out.print(db.getSomeProperty());					
&lt;br&gt;%&amp;gt;
&lt;br&gt;&lt;br&gt;Note that I want to do this with a scriptlet and not with tags.
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;Jon
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26409843&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26409843&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Getting-Context-within-%3Clogic%3Aiterate-%3E-tp26409843p26409843.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26408718</id>
	<title>Re: Struts2 online sources/ ebooks</title>
	<published>2009-11-18T06:19:27Z</published>
	<updated>2009-11-18T06:19:27Z</updated>
	<author>
		<name>Wes Wannemacher</name>
	</author>
	<content type="html">On Wed, Nov 18, 2009 at 8:06 AM, Martin Gainty &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408718&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mgainty@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ted Husted Struts In Action is the most intelligent of the offerings with wonderfully comprehensive examples and a  thorough explanation of Model View Controller
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.manning.com/husted/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.manning.com/husted/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; the best investment you will ever make
&lt;br&gt;&amp;gt; Martin Gainty
&lt;br&gt;&lt;br&gt;Struts in Action is for the Struts 1 series... I think the OP would be
&lt;br&gt;better learning Struts 2 from the book &amp;quot;Struts 2 In Action&amp;quot; available
&lt;br&gt;here -
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.manning.com/dbrown/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.manning.com/dbrown/&lt;/a&gt;&lt;br&gt;&lt;br&gt;More recently, Dave Newton's book has been getting good reviews as well -
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.packtpub.com/apache-struts-2-web-application-development-beginners-guide/book&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.packtpub.com/apache-struts-2-web-application-development-beginners-guide/book&lt;/a&gt;&lt;br&gt;&lt;br&gt;-Wes
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Wes Wannemacher
&lt;br&gt;&lt;br&gt;Head Engineer, WanTii, Inc.
&lt;br&gt;Need Training? Struts, Spring, Maven, Tomcat...
&lt;br&gt;Ask me for a quote!
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408718&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408718&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26408718.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26408142</id>
	<title>RE: Problem in uploading file from stand-alone application</title>
	<published>2009-11-18T05:53:05Z</published>
	<updated>2009-11-18T05:53:05Z</updated>
	<author>
		<name>Rupesh Mankar</name>
	</author>
	<content type="html">Thanks a lot jayakumar.
&lt;br&gt;&lt;br&gt;I successfully uploaded binary file using Apache HTTPClient and could successfully receive uploaded file in action class of struts without any exception :)
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: jayakumar ala [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408142&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alajay123@...&lt;/a&gt;]
&lt;br&gt;Sent: Tuesday, November 17, 2009 9:09 PM
&lt;br&gt;To: Struts Users Mailing List
&lt;br&gt;Subject: Re: Problem in uploading file from stand-alone application
&lt;br&gt;&lt;br&gt;Rupesh,
&lt;br&gt;&amp;nbsp;Probably you can try this with Apache HttpClient.
&lt;br&gt;&lt;br&gt;On Tue, Nov 17, 2009 at 1:45 AM, Rupesh Mankar &amp;lt;
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408142&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rupesh_mankar@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I want to upload file on server from stand-alone application (using
&lt;br&gt;&amp;gt; HTTPURLConnection). But when I run stand-alone application which uploads
&lt;br&gt;&amp;gt; file, I get following exception on server:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; WARNING: Parameters: Character decoding failed. Parameter skipped.
&lt;br&gt;&amp;gt; java.io.CharConversionException: isHexDigit
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at org.apache.tomcat.util.buf.UDecoder.convert(UDecoder.java:88)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at org.apache.tomcat.util.buf.UDecoder.convert(UDecoder.java:49)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.tomcat.util.http.Parameters.urlDecode(Parameters.java:410)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.tomcat.util.http.Parameters.processParameters(Parameters.java:392)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.tomcat.util.http.Parameters.processParameters(Parameters.java:344)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.connector.Request.parseParameters(Request.java:2453)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.connector.Request.getParameterNames(Request.java:1073)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.connector.Request.getParameterMap(Request.java:1053)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.catalina.connector.RequestFacade.getParameterMap(RequestFacade.java:414)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; javax.servlet.ServletRequestWrapper.getParameterMap(ServletRequestWrapper.java:166)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.struts2.dispatcher.mapper.DefaultActionMapper.handleSpecialParameters(DefaultActionMapper.java:351)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;at
&lt;br&gt;&amp;gt; org.apache.struts2.dispatcher.mapper.DefaultActionMapper.getMapping(DefaultActionMapper.java:311)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It seems struts2 filter tries to retrieve parameters from request. I am
&lt;br&gt;&amp;gt; directly writing file content which are byte array on output stream of url
&lt;br&gt;&amp;gt; connection.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; One workaround I found is to bypass the upload request from struts2
&lt;br&gt;&amp;gt; filtering. But this approach is not good because my entire web application
&lt;br&gt;&amp;gt; is struts based.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is there any way to upload file through strut itself?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Rupesh
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DISCLAIMER
&lt;br&gt;&amp;gt; ==========
&lt;br&gt;&amp;gt; This e-mail may contain privileged and confidential information which is
&lt;br&gt;&amp;gt; the property of Persistent Systems Ltd. It is intended only for the use of
&lt;br&gt;&amp;gt; the individual or entity to which it is addressed. If you are not the
&lt;br&gt;&amp;gt; intended recipient, you are not authorized to read, retain, copy, print,
&lt;br&gt;&amp;gt; distribute or use this message. If you have received this communication in
&lt;br&gt;&amp;gt; error, please notify the sender and delete all copies of this message.
&lt;br&gt;&amp;gt; Persistent Systems Ltd. does not accept any liability for virus infected
&lt;br&gt;&amp;gt; mails.
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;DISCLAIMER
&lt;br&gt;==========
&lt;br&gt;This e-mail may contain privileged and confidential information which is the property of Persistent Systems Ltd. It is intended only for the use of the individual or entity to which it is addressed. If you are not the intended recipient, you are not authorized to read, retain, copy, print, distribute or use this message. If you have received this communication in error, please notify the sender and delete all copies of this message. Persistent Systems Ltd. does not accept any liability for virus infected mails.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408142&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408142&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-in-uploading-file-from-stand-alone-application-tp26386264p26408142.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26407410</id>
	<title>RE: Struts2 online sources/ ebooks</title>
	<published>2009-11-18T05:06:38Z</published>
	<updated>2009-11-18T05:06:38Z</updated>
	<author>
		<name>mgainty</name>
	</author>
	<content type="html">&lt;br&gt;Ted Husted Struts In Action is the most intelligent of the offerings with wonderfully comprehensive examples and a &amp;nbsp;thorough explanation of Model View Controller
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.manning.com/husted/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.manning.com/husted/&lt;/a&gt;&lt;br&gt;&lt;br&gt;the best investment you will ever make
&lt;br&gt;Martin Gainty 
&lt;br&gt;______________________________________________ 
&lt;br&gt;Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen.
&lt;br&gt;Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est interdite. Ce message sert à l'information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Date: Wed, 18 Nov 2009 13:31:07 +0600
&lt;br&gt;&amp;gt; Subject: Re: Struts2 online sources/ ebooks
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26407410&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thushanga@...&lt;/a&gt;
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26407410&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; check this one,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.rkcole.com/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.rkcole.com/index.html&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Emil
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Wed, Nov 18, 2009 at 10:48 AM, vikrant S &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26407410&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shimpi.vikrant@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hi Friends,
&lt;br&gt;&amp;gt; &amp;gt; I am currently learning struts 2 and have developed a small application
&lt;br&gt;&amp;gt; &amp;gt; using tutorials from
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.vaannila.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.vaannila.com&lt;/a&gt;&amp;nbsp;and &lt;a href=&quot;http://www.roseindia.net/struts/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.roseindia.net/struts/&lt;/a&gt;&amp;nbsp;. If you know
&lt;br&gt;&amp;gt; &amp;gt; any good links
&lt;br&gt;&amp;gt; &amp;gt; may be tutorials or ebooks Please share it so that I could learn from them
&lt;br&gt;&amp;gt; &amp;gt; Thanks in advance!!!
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26402511.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26402511.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Sent from the Struts - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26407410&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26407410&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Emil Thushanga
&lt;/div&gt;&amp;nbsp;		 	 &amp;nbsp; 		 &amp;nbsp;
&lt;br&gt;_________________________________________________________________
&lt;br&gt;Windows 7: I wanted simpler, now it's simpler. I'm a rock star.
&lt;br&gt;&lt;a href=&quot;http://www.microsoft.com/Windows/windows-7/default.aspx?h=myidea?ocid=PID24727::T:WLMTAGL:ON:WL:en-US:WWL_WIN_myidea:112009&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.microsoft.com/Windows/windows-7/default.aspx?h=myidea?ocid=PID24727::T:WLMTAGL:ON:WL:en-US:WWL_WIN_myidea:112009&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26407410.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26404294</id>
	<title>Re: Struts2 online sources/ ebooks</title>
	<published>2009-11-18T00:42:58Z</published>
	<updated>2009-11-18T00:42:58Z</updated>
	<author>
		<name>Halil Ağın</name>
	</author>
	<content type="html">My friends and I writing some struts2 tutorials in turkish.
&lt;br&gt;&lt;br&gt;www.struts2nedir.org
&lt;br&gt;&lt;br&gt;I think it will help for turkish developers.
&lt;br&gt;&lt;br&gt;halil.
&lt;br&gt;&lt;br&gt;On Wed, Nov 18, 2009 at 9:31 AM, emil thushanga &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404294&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thushanga@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; check this one,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.rkcole.com/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.rkcole.com/index.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Emil
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Wed, Nov 18, 2009 at 10:48 AM, vikrant S &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404294&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shimpi.vikrant@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hi Friends,
&lt;br&gt;&amp;gt; &amp;gt; I am currently learning struts 2 and have developed a small application
&lt;br&gt;&amp;gt; &amp;gt; using tutorials from
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.vaannila.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.vaannila.com&lt;/a&gt;&amp;nbsp;and &lt;a href=&quot;http://www.roseindia.net/struts/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.roseindia.net/struts/&lt;/a&gt;&amp;nbsp;. If you
&lt;br&gt;&amp;gt; know
&lt;br&gt;&amp;gt; &amp;gt; any good links
&lt;br&gt;&amp;gt; &amp;gt; may be tutorials or ebooks Please share it so that I could learn from
&lt;br&gt;&amp;gt; them
&lt;br&gt;&amp;gt; &amp;gt; Thanks in advance!!!
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26402511.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26402511.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Sent from the Struts - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404294&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26404294&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Emil Thushanga
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26404294.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26403644</id>
	<title>Re: Struts2 online sources/ ebooks</title>
	<published>2009-11-17T23:31:07Z</published>
	<updated>2009-11-17T23:31:07Z</updated>
	<author>
		<name>emil thushanga</name>
	</author>
	<content type="html">check this one,
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.rkcole.com/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.rkcole.com/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Emil
&lt;br&gt;&lt;br&gt;On Wed, Nov 18, 2009 at 10:48 AM, vikrant S &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26403644&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shimpi.vikrant@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Friends,
&lt;br&gt;&amp;gt; I am currently learning struts 2 and have developed a small application
&lt;br&gt;&amp;gt; using tutorials from
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.vaannila.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.vaannila.com&lt;/a&gt;&amp;nbsp;and &lt;a href=&quot;http://www.roseindia.net/struts/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.roseindia.net/struts/&lt;/a&gt;&amp;nbsp;. If you know
&lt;br&gt;&amp;gt; any good links
&lt;br&gt;&amp;gt; may be tutorials or ebooks Please share it so that I could learn from them
&lt;br&gt;&amp;gt; Thanks in advance!!!
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26402511.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26402511.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Struts - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26403644&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26403644&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;user-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Emil Thushanga
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Struts2-online-sources--ebooks-tp26402511p26403644.html" />
</entry>

</feed>
