<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-16324</id>
	<title>Nabble - Stripes</title>
	<updated>2009-11-14T17:19:18Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Stripes-f16324.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-f16324.html" />
	<subtitle type="html">&lt;a href=&quot;http://stripes.mc4j.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes&lt;/a&gt;&amp;nbsp;is a Java framework with the goal of making Servlet/JSP based web development in Java as easy, intuitive and straight-forward as it should be. It's stripey and it doesn't suck.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26355566</id>
	<title>[JIRA] Commented: (STS-678) DynamicMappingFilter fails with &quot;Could not get a reference to StripesFilter&quot; on WAS 6.1</title>
	<published>2009-11-14T17:19:18Z</published>
	<updated>2009-11-14T17:19:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-678?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11875#action_11875&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-678?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11875#action_11875&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;david wade commented on STS-678:
&lt;br&gt;--------------------------------
&lt;br&gt;&lt;br&gt;It appears that WebSphere does indeed break the servlet spec but not as thought above. &amp;nbsp;It may be relevant here so I will share.
&lt;br&gt;&lt;br&gt;The servlet spec states there will be only one instance of a particular named Filter, but we found if requests are already being received by WebSphere _before/during_ the start of of a web application, &amp;nbsp;WebSphere (6.1 FP13 thru FP27) will create multiple instances of the same named filter and initialize each one. &amp;nbsp; However, come application shutdown, only the last instance has the destroy method invoked (because it loses the rest when the filters are put into presumably some map indexed by the filter name).
&lt;br&gt;&lt;br&gt;So, delaying Filter creation/initialization until the first request, while not against the servlet spec, is a bad idea because they really need to add synchronization code around the code responsible. &amp;nbsp;Clearly they have not as multiple instances are created.
&lt;br&gt;&lt;br&gt;To reproduce, create a very simple web app with a Filter and one JSP. &amp;nbsp; Put a constructor on the Filter that simply increments a static instance counter and outputs that instance number to stdout. &amp;nbsp; &amp;nbsp; Deploy, then stop the web app. &amp;nbsp;Start up multiple clients requesting the JSP, then start the web app. &amp;nbsp;When started, stop the clients and have a look at the SystemOut.log. &amp;nbsp; &amp;nbsp; &amp;nbsp;Both machine the client is running on and the server need to be SMP machines to reliably demonstrate this issue.
&lt;br&gt;&lt;br&gt;Am happy to supply an example web app + source if nobody believes me that WebSphere could be so blatantly dumb. &amp;nbsp; IBM currently in denial mode on this issue.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; DynamicMappingFilter fails with &amp;quot;Could not get a reference to StripesFilter&amp;quot; on WAS 6.1
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: STS-678
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-678&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-678&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Stripes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: ActionBean Dispatching
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: Release 1.5.1
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: WebSphere Application Server 6.1.0.0, JDK 1.5, Servlet 2.4
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Jan Novotný
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ben Gunter
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: Release 1.5.3
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; DynamicMappingFilter fails with message:
&lt;br&gt;&amp;gt; Could not get a reference to StripesFilter from the servlet context. The dynamic mapping filter works in conjunction with StripesFilter and requires that it be defined in web.xml
&lt;br&gt;&amp;gt; even though StripesFilter is defined in web.xml.
&lt;br&gt;&amp;gt; Problem lies in following statement in JavaDoc documentation of the filter:
&lt;br&gt;&amp;gt; &amp;nbsp;* {@link StripesFilter} and {@link DispatcherServlet} need not be mapped to any URL patterns in
&lt;br&gt;&amp;gt; &amp;nbsp;* {@code web.xml} since this filter will determine at runtime whether or not they need to be
&lt;br&gt;&amp;gt; &amp;nbsp;* invoked.
&lt;br&gt;&amp;gt; This is like I have had it:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;filter&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;display-name&amp;gt;Stripes Filter&amp;lt;/display-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;filter-name&amp;gt;StripesFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;filter-class&amp;gt;net.sourceforge.stripes.controller.StripesFilter&amp;lt;/filter-class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... proper init params
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/filter&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;filter&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;filter-name&amp;gt;DynamicMappingFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;filter-class&amp;gt;net.sourceforge.stripes.controller.DynamicMappingFilter&amp;lt;/filter-class&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/filter&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;filter-mapping&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;filter-name&amp;gt;DynamicMappingFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dispatcher&amp;gt;REQUEST&amp;lt;/dispatcher&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dispatcher&amp;gt;FORWARD&amp;lt;/dispatcher&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dispatcher&amp;gt;INCLUDE&amp;lt;/dispatcher&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/filter-mapping&amp;gt;
&lt;br&gt;&amp;gt; Which is correct according to documentation and works for example on Tomcat.
&lt;br&gt;&amp;gt; Problem is that StripesFilter init method needs to be called - it writes a specific attribute into the ServletContext that is expected by DynamicMappingFilter (naturaly - because it means StripesFilter has been initialized). But this method is not called on WAS while having this configuration.
&lt;br&gt;&amp;gt; I found out that WAS applies different lifecycle on the filters (I wonder whether it doesn't violate the Servlet specification?). It doesn't call init methods of filters and servlets on web application start, but delays it up to the time when Filters are really needed (means if there is request to the url the filter participates in). And when no filter-mapping for the StripesFilter is defined - it is never called although its definition is present in web.xml.
&lt;br&gt;&amp;gt; Solution that works for me is simple - just adding filter mapping for Stripes filter:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;filter-mapping&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;filter-name&amp;gt;DynamicMappingFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dispatcher&amp;gt;REQUEST&amp;lt;/dispatcher&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dispatcher&amp;gt;FORWARD&amp;lt;/dispatcher&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dispatcher&amp;gt;INCLUDE&amp;lt;/dispatcher&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/filter-mapping&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;filter-mapping&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;filter-name&amp;gt;StripesFilter&amp;lt;/filter-name&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;url-pattern&amp;gt;/*&amp;lt;/url-pattern&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;dispatcher&amp;gt;REQUEST&amp;lt;/dispatcher&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/filter-mapping&amp;gt;
&lt;br&gt;&amp;gt; And StripesFilter is initialized at last.
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26355566&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-678%29-DynamicMappingFilter-fails-with-%22Could-not-get-a-reference-to-StripesFilter%22-on-WAS-6.1-tp22965537p26355566.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26336361</id>
	<title>Re: Stripes annotation validation error messages</title>
	<published>2009-11-13T05:10:37Z</published>
	<updated>2009-11-13T05:10:37Z</updated>
	<author>
		<name>Ben Gunter-2</name>
	</author>
	<content type="html">I&amp;#39;m not sure if you mean it would be great because it would ease programming or because you could put the error near the field. If it is the latter, then you can do this:&lt;br&gt;&lt;br&gt;&lt;div style=&quot;margin-left: 40px;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;lt;stripes:label for=&amp;quot;user.username&amp;quot;&amp;gt;User name&amp;lt;/stripes:label&amp;gt;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;

&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;lt;stripes:error field=&amp;quot;user.username&amp;quot; /&amp;gt;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;
&amp;lt;stripes:text name=&amp;quot;user.username&amp;quot; /&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;Take a look at the &lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;stripes.fieldErrors.*&lt;/span&gt; group of properties in &lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;StripesResource.properties&lt;/span&gt; to format field errors as you like.&lt;br&gt;

&lt;br&gt;-Ben&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 13, 2009 at 5:10 AM, Jan Künstler &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26336361&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jan.kuenstler@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;

Wouldn&amp;#39;t it be great if the &amp;lt;stripes:label&amp;gt; value would be used for&lt;br&gt;
errors for that field?&lt;br&gt;
If we have something like:&lt;br&gt;
&lt;br&gt;
&amp;lt;stripes:label for=&amp;quot;user.username&amp;quot;&amp;gt;User name&amp;lt;/stripes:label&amp;gt;&lt;br&gt;
&amp;lt;stripes:text name=&amp;quot;user.username&amp;quot; /&amp;gt;&lt;br&gt;
&lt;br&gt;
Hmm... this sounds great &amp;#39;till I thought about implementing this. I&lt;br&gt;
guess we must pass the label value with every form-submit. I can think&lt;br&gt;
of people who will not like the idea :=)&lt;br&gt;
&lt;br&gt;
Greets&lt;br&gt;
Jan&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Lionel schrieb:&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&amp;gt; Jan Künstler wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Hi Abhi,&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; yes you can. You need two entries in your resource bundle: One for a&lt;br&gt;
&amp;gt;&amp;gt; generic error message and one for the field name.&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; validation.required.valueNotPresent = {0} is requierd&lt;br&gt;
&amp;gt;&amp;gt; fieldname = Field Name&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; there is one issue with that behaviour: it creates lots of duplicates in the&lt;br&gt;
&amp;gt; resource bundle.&lt;br&gt;
&amp;gt; example:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; UserActionBean uses: &lt;a href=&quot;http://user.name&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;user.name&lt;/a&gt;&lt;br&gt;
&amp;gt; In resource bundle: &lt;a href=&quot;http://user.name&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;user.name&lt;/a&gt;=User name&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; OrderActionBean users: order.user.userId&lt;br&gt;
&amp;gt; In resource bundle:  order.user.userId=User name&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; InvoiceActionBean uses: invoice.user.userId&lt;br&gt;
&amp;gt; In resource bundle:  invoice.user.userId=User name&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; 3 times the same label...&lt;br&gt;
&amp;gt; Is there some way to override the key ?&lt;br&gt;
&amp;gt; Would be great to override the resource bundle key in the Validate&lt;br&gt;
&amp;gt; annotation.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Stripes-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26336361&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26336361&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-annotation-validation-error-messages-tp26314035p26336361.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26335210</id>
	<title>Problem with required field validation in indexed properties</title>
	<published>2009-11-13T03:31:18Z</published>
	<updated>2009-11-13T03:31:18Z</updated>
	<author>
		<name>Simon Keen</name>
	</author>
	<content type="html">I have serached the forum and found mentions of a possible bug but I wanted to know if there I am doing something stupid before I write a custom validation.
&lt;br&gt;&lt;br&gt;I have a number of properties on my action bean with validation of the following form:
&lt;br&gt;&lt;br&gt;@ValidateNestedProperties({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;@Validate(field=afield required=true)
&lt;br&gt;})
&lt;br&gt;protected List&amp;lt;SomeObject&amp;gt; property;
&lt;br&gt;&lt;br&gt;public SomeObject getProperty() {
&lt;br&gt;&amp;nbsp; &amp;nbsp;return property;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;public void setProperty(List&amp;lt;SomeObject&amp;gt; property) {
&lt;br&gt;&amp;nbsp; &amp;nbsp;this.property = property;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;When the list is empty or it contains entries that are not updated, I get a validation error saying the field is required. &amp;nbsp;The values in the list are all valid.
&lt;br&gt;&lt;br&gt;Any suggestions as to why this is happening?
&lt;br&gt;&lt;br&gt;It only seems to have a problem with indexed properties.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-required-field-validation-in-indexed-properties-tp26335210p26335210.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26335030</id>
	<title>Re: jsessionid in urls</title>
	<published>2009-11-13T03:13:48Z</published>
	<updated>2009-11-13T03:13:48Z</updated>
	<author>
		<name>Abhirama Bhat</name>
	</author>
	<content type="html">This problem is not related to stripes, but how servlet containers work. By configuring cookie in your servlet container configuration file you can  avoid the jsessionid from being appended to the url.&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;
On Fri, Nov 13, 2009 at 4:14 PM, Abhi &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335030&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;abhirama.bhat@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
When I access a page for the first time stripes appends a jsession id to the url. How do I prevent stripes from doing this?&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;Abhi&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;Abhi&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335030&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jsessionid-in-urls-tp26334702p26335030.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26334702</id>
	<title>jsessionid in urls</title>
	<published>2009-11-13T02:44:19Z</published>
	<updated>2009-11-13T02:44:19Z</updated>
	<author>
		<name>Abhirama Bhat</name>
	</author>
	<content type="html">When I access a page for the first time stripes appends a jsession id to the url. How do I prevent stripes from doing this?&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;Abhi&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26334702&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jsessionid-in-urls-tp26334702p26334702.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26334216</id>
	<title>Re: Stripes annotation validation error messages</title>
	<published>2009-11-13T02:08:43Z</published>
	<updated>2009-11-13T02:08:43Z</updated>
	<author>
		<name>Jan Künstler</name>
	</author>
	<content type="html">Wouldn't it be great if the &amp;lt;stripes:label&amp;gt; value would be used for 
&lt;br&gt;errors for that field?
&lt;br&gt;If we have something like:
&lt;br&gt;&lt;br&gt;&amp;lt;stripes:label for=&amp;quot;user.username&amp;quot;&amp;gt;User name&amp;lt;/stripes:label&amp;gt;
&lt;br&gt;&amp;lt;stripes:text name=&amp;quot;user.username&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;Hmm... this sounds great 'till I thought about implementing this. I 
&lt;br&gt;guess we must pass the label value with every form-submit. I can think 
&lt;br&gt;of people who will not like the idea :=)
&lt;br&gt;&lt;br&gt;Greets
&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Lionel schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Jan Künstler wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hi Abhi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; yes you can. You need two entries in your resource bundle: One for a
&lt;br&gt;&amp;gt;&amp;gt; generic error message and one for the field name.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; validation.required.valueNotPresent = {0} is requierd
&lt;br&gt;&amp;gt;&amp;gt; fieldname = Field Name
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; there is one issue with that behaviour: it creates lots of duplicates in the 
&lt;br&gt;&amp;gt; resource bundle.
&lt;br&gt;&amp;gt; example:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; UserActionBean uses: user.name
&lt;br&gt;&amp;gt; In resource bundle: user.name=User name
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; OrderActionBean users: order.user.userId
&lt;br&gt;&amp;gt; In resource bundle: &amp;nbsp;order.user.userId=User name
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; InvoiceActionBean uses: invoice.user.userId
&lt;br&gt;&amp;gt; In resource bundle: &amp;nbsp;invoice.user.userId=User name
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3 times the same label...
&lt;br&gt;&amp;gt; Is there some way to override the key ?
&lt;br&gt;&amp;gt; Would be great to override the resource bundle key in the Validate 
&lt;br&gt;&amp;gt; annotation. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26334216&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-annotation-validation-error-messages-tp26314035p26334216.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26333824</id>
	<title>Re: Stripes annotation validation error messages</title>
	<published>2009-11-13T01:42:32Z</published>
	<updated>2009-11-13T01:42:32Z</updated>
	<author>
		<name>Jan Künstler</name>
	</author>
	<content type="html">Maybe instead of:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; order.user.userId=User name
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; invoice.user.userId=User name
&lt;br&gt;you can just use:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;userId=User name
&lt;br&gt;&lt;br&gt;For me it wouldn't be worth extending the annotation to save some 
&lt;br&gt;entries in the resource bundle even if it means duplicates.
&lt;br&gt;&lt;br&gt;Greets
&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;Lionel schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Jan Künstler wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hi Abhi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; yes you can. You need two entries in your resource bundle: One for a
&lt;br&gt;&amp;gt;&amp;gt; generic error message and one for the field name.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; validation.required.valueNotPresent = {0} is requierd
&lt;br&gt;&amp;gt;&amp;gt; fieldname = Field Name
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; there is one issue with that behaviour: it creates lots of duplicates in the 
&lt;br&gt;&amp;gt; resource bundle.
&lt;br&gt;&amp;gt; example:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; UserActionBean uses: user.name
&lt;br&gt;&amp;gt; In resource bundle: user.name=User name
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; OrderActionBean users: order.user.userId
&lt;br&gt;&amp;gt; In resource bundle: &amp;nbsp;order.user.userId=User name
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; InvoiceActionBean uses: invoice.user.userId
&lt;br&gt;&amp;gt; In resource bundle: &amp;nbsp;invoice.user.userId=User name
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3 times the same label...
&lt;br&gt;&amp;gt; Is there some way to override the key ?
&lt;br&gt;&amp;gt; Would be great to override the resource bundle key in the Validate 
&lt;br&gt;&amp;gt; annotation. 
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26333824&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-annotation-validation-error-messages-tp26314035p26333824.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26333602</id>
	<title>Re: Stripes annotation validation error messages</title>
	<published>2009-11-13T01:23:53Z</published>
	<updated>2009-11-13T01:23:53Z</updated>
	<author>
		<name>Lionel-6</name>
	</author>
	<content type="html">Jan Künstler wrote:
&lt;br&gt;&amp;gt; Hi Abhi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; yes you can. You need two entries in your resource bundle: One for a
&lt;br&gt;&amp;gt; generic error message and one for the field name.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; validation.required.valueNotPresent = {0} is requierd
&lt;br&gt;&amp;gt; fieldname = Field Name
&lt;br&gt;&lt;br&gt;there is one issue with that behaviour: it creates lots of duplicates in the 
&lt;br&gt;resource bundle.
&lt;br&gt;example:
&lt;br&gt;&lt;br&gt;UserActionBean uses: user.name
&lt;br&gt;In resource bundle: user.name=User name
&lt;br&gt;&lt;br&gt;OrderActionBean users: order.user.userId
&lt;br&gt;In resource bundle: &amp;nbsp;order.user.userId=User name
&lt;br&gt;&lt;br&gt;InvoiceActionBean uses: invoice.user.userId
&lt;br&gt;In resource bundle: &amp;nbsp;invoice.user.userId=User name
&lt;br&gt;&lt;br&gt;3 times the same label...
&lt;br&gt;Is there some way to override the key ?
&lt;br&gt;Would be great to override the resource bundle key in the Validate 
&lt;br&gt;annotation. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26333602&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-annotation-validation-error-messages-tp26314035p26333602.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26328259</id>
	<title>[JIRA] Updated: (STS-728) Taglib broken due to generics in Weblogic 10.0</title>
	<published>2009-11-12T15:11:18Z</published>
	<updated>2009-11-12T15:11:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-728?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-728?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br&gt;&lt;br&gt;Damien B updated STS-728:
&lt;br&gt;-------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Attachment: tags-patch-1.5.2.diff
&lt;br&gt;&lt;br&gt;Patch which fixes the problem without reducing functionalities.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Taglib broken due to generics in Weblogic 10.0
&lt;br&gt;&amp;gt; ----------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: STS-728
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-728&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-728&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Stripes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: Tag Library
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: Release 1.5.2
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: Weblogic 10.0
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Damien B
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: tags-patch-1.5.2.diff
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Weblogic 10.0 is fairly old, but unfortunately we are stuck with it for some customer. The taglib implementation of that version (more precisely, Javelin) does not support generics in the signature of the public methods in the tag classes, which leads to the dreaded &amp;quot;The qualifier of this name is a package, which cannot contain fields&amp;quot; error. Attached to this report, you'll find a small patch against 1.5.2 which removes those generics from the signatures and add castings where those methods were internally used.
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26328259&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-728%29-Taglib-broken-due-to-generics-in-Weblogic-10.0-tp26328236p26328259.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26328236</id>
	<title>[JIRA] Created: (STS-728) Taglib broken due to generics in Weblogic 10.0</title>
	<published>2009-11-12T15:09:18Z</published>
	<updated>2009-11-12T15:09:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">Taglib broken due to generics in Weblogic 10.0
&lt;br&gt;----------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: STS-728
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-728&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-728&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: Stripes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: Tag Library
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: Release 1.5.2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Environment: Weblogic 10.0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Damien B
&lt;br&gt;&lt;br&gt;&lt;br&gt;Weblogic 10.0 is fairly old, but unfortunately we are stuck with it for some customer. The taglib implementation of that version (more precisely, Javelin) does not support generics in the signature of the public methods in the tag classes, which leads to the dreaded &amp;quot;The qualifier of this name is a package, which cannot contain fields&amp;quot; error. Attached to this report, you'll find a small patch against 1.5.2 which removes those generics from the signatures and add castings where those methods were internally used.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26328236&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-728%29-Taglib-broken-due-to-generics-in-Weblogic-10.0-tp26328236p26328236.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26323995</id>
	<title>Stripes presentation for the Portuguese JUG</title>
	<published>2009-11-12T10:34:25Z</published>
	<updated>2009-11-12T10:34:25Z</updated>
	<author>
		<name>samaxes</name>
	</author>
	<content type="html">Hi guys,&lt;br&gt;&lt;br&gt;Just sharing with you a talk I gave for the Portuguese Java User Group at the JavaPT09 event:&lt;br&gt;&lt;a href=&quot;http://www.samaxes.com/2009/09/java-web-development-with-stripes/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.samaxes.com/2009/09/java-web-development-with-stripes/&lt;/a&gt;&lt;br&gt;

&lt;br&gt;I&amp;#39;m also sharing it at DZone vote it up if you&amp;#39;d like :):&lt;br&gt;&lt;a href=&quot;http://www.dzone.com/links/java_web_development_with_stripes_3.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dzone.com/links/java_web_development_with_stripes_3.html&lt;/a&gt;&lt;br&gt;

&lt;br&gt;Cheers,&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;--&lt;br&gt;Samuel Santos&lt;br&gt;&lt;a href=&quot;http://www.samaxes.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.samaxes.com/&lt;/a&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26323995&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-presentation-for-the-Portuguese-JUG-tp26323995p26323995.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26320504</id>
	<title>Re: Where to put the logic?</title>
	<published>2009-11-12T07:18:19Z</published>
	<updated>2009-11-12T07:18:19Z</updated>
	<author>
		<name>Stephen Nelson-7</name>
	</author>
	<content type="html">&lt;br&gt;On 12 Nov 2009, at 10:33, KR wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Stephen,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I do something similar as Dan and I keep the domain data and logic &amp;nbsp;
&lt;br&gt;&amp;gt; together
&lt;br&gt;&amp;gt; in the model objects.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My impression is that keeping data and logic apart is often just a &amp;nbsp;
&lt;br&gt;&amp;gt; legacy
&lt;br&gt;&amp;gt; architecture that was introduced in the time before EJB3 and JPA &amp;nbsp;
&lt;br&gt;&amp;gt; (but often
&lt;br&gt;&amp;gt; still used with EJB3 and JPA). Before EJB3 the persistency layer was &amp;nbsp;
&lt;br&gt;&amp;gt; so
&lt;br&gt;&amp;gt; separate and limited that it was a technical requirement to do it &amp;nbsp;
&lt;br&gt;&amp;gt; this way.
&lt;br&gt;&amp;gt; But that's no longer the case as JPA comes very close to making your &amp;nbsp;
&lt;br&gt;&amp;gt; plain
&lt;br&gt;&amp;gt; old objects (POJO's) persistent. So this way of working is now much &amp;nbsp;
&lt;br&gt;&amp;gt; closer
&lt;br&gt;&amp;gt; to regular object oriented design.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This kind of design of course integrates the model and database &amp;nbsp;
&lt;br&gt;&amp;gt; design. The
&lt;br&gt;&amp;gt; database schema becomes part of you're projects development. That &amp;nbsp;
&lt;br&gt;&amp;gt; means that
&lt;br&gt;&amp;gt; this kind of architecture does not seem to work well with (static of
&lt;br&gt;&amp;gt; external) legacy database models that are not part of you're project.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Karen
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;Hi Karen,
&lt;br&gt;&lt;br&gt;I think we agree here - I'm advocating keeping the domain data and &amp;nbsp;
&lt;br&gt;logic in the same class for the reasons you mentioned. I've only done &amp;nbsp;
&lt;br&gt;a small amount of EJB3 in my past and I can attest to the lack of &amp;nbsp;
&lt;br&gt;features it provided. Such that, entity beans were generally ignored &amp;nbsp;
&lt;br&gt;in place of session beans and basically value objects containing data. &amp;nbsp;
&lt;br&gt;So the present day technologies such as JPA are so much better - it's &amp;nbsp;
&lt;br&gt;actually fun now!
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Stephen
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26320504&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-to-put-the-logic--tp26271911p26320504.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26320427</id>
	<title>Re: Where to put the logic?</title>
	<published>2009-11-12T07:13:25Z</published>
	<updated>2009-11-12T07:13:25Z</updated>
	<author>
		<name>Stephen Nelson-7</name>
	</author>
	<content type="html">&lt;br&gt;On 12 Nov 2009, at 02:51, dan06 wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Stephen,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; do you keep both the domain data and logic in the same domain object &amp;nbsp;
&lt;br&gt;&amp;gt; - i.e.
&lt;br&gt;&amp;gt; the ORM object maps to a table and has domain logic? Or do you have &amp;nbsp;
&lt;br&gt;&amp;gt; one
&lt;br&gt;&amp;gt; domain &amp;quot;data&amp;quot;/ORM object and another domain logic object?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best,
&lt;br&gt;&amp;gt; Dan
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi Dan,
&lt;br&gt;&lt;br&gt;Yes - same domain object. Otherwise you end up duplicating everything &amp;nbsp;
&lt;br&gt;and mapping from one inheritance hierarchy to another. The ORM tool is &amp;nbsp;
&lt;br&gt;taking care of all the difficult mapping from object to database so &amp;nbsp;
&lt;br&gt;your domain object can truly become an intelligent business object and &amp;nbsp;
&lt;br&gt;not an anaemic domain model [1] [2]
&lt;br&gt;&lt;br&gt;Hope this helps.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;--
&lt;br&gt;Stephen
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://en.wikipedia.org/wiki/Anemic_Domain_Model&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://en.wikipedia.org/wiki/Anemic_Domain_Model&lt;/a&gt;&lt;br&gt;[2] &lt;a href=&quot;http://martinfowler.com/bliki/AnemicDomainModel.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://martinfowler.com/bliki/AnemicDomainModel.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26320427&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-to-put-the-logic--tp26271911p26320427.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26318255</id>
	<title>[JIRA] Updated: (STS-727) UrlBindingFactory interprets parameters first in url as conflict</title>
	<published>2009-11-12T05:01:18Z</published>
	<updated>2009-11-12T05:01:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[ &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-727?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel&lt;/a&gt;&amp;nbsp;]
&lt;br&gt;&lt;br&gt;Kris Luhr updated STS-727:
&lt;br&gt;--------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Attachment: stripes-1.5.2-getBindingPrototype-bug.patch
&lt;br&gt;&lt;br&gt;Proposed patch for the conflict issue.
&lt;br&gt;&lt;br&gt;When removing the last slash I my tests pass the default handler issue, but the issue remains when I deploy the application. Is there another place with the same logic parsing urls somewhere?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; UrlBindingFactory interprets parameters first in url as conflict
&lt;br&gt;&amp;gt; ----------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: STS-727
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-727&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-727&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Stripes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Bug
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Components: ActionBean Dispatching
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: Release 1.5.1, Release 1.5.2
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Kris Luhr
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Attachments: stripes-1.5.2-getBindingPrototype-bug.patch
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I would like to have a parameter first in my urls, representing different sections of a site; eg: @UrlBinding(&amp;quot;/{section}/foo/bar/{$event}.html&amp;quot;)
&lt;br&gt;&amp;gt; This UrlBinding results in a conflict between all ActionBeans using the {section} parameter. While debugging I find the UrlBindingFactory.getBindingPrototype(String uri) method ignoring the componentMatch when checking if we have a conflict, which seems to be a bug. At least in this case the result is not logical.
&lt;br&gt;&amp;gt; Additionally when I use the url &amp;quot;/section1/foo/bar.html&amp;quot;, the section parameter is set to &amp;quot;section1/foo/bar&amp;quot;. 
&lt;br&gt;&amp;gt; This works and gives me the default handler if I dont have the section as a parameter. Perhaps these two issues are related?
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26318255&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-727%29-UrlBindingFactory-interprets-parameters-first-in-url-as-conflict-tp26318182p26318255.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26318182</id>
	<title>[JIRA] Created: (STS-727) UrlBindingFactory interprets parameters first in url as conflict</title>
	<published>2009-11-12T04:56:18Z</published>
	<updated>2009-11-12T04:56:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">UrlBindingFactory interprets parameters first in url as conflict
&lt;br&gt;----------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Key: STS-727
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-727&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-727&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Project: Stripes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Issue Type: Bug
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Components: ActionBean Dispatching
&lt;br&gt;&amp;nbsp; &amp;nbsp; Affects Versions: Release 1.5.2, Release 1.5.1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Reporter: Kris Luhr
&lt;br&gt;&lt;br&gt;&lt;br&gt;I would like to have a parameter first in my urls, representing different sections of a site; eg: @UrlBinding(&amp;quot;/{section}/foo/bar/{$event}.html&amp;quot;)
&lt;br&gt;This UrlBinding results in a conflict between all ActionBeans using the {section} parameter. While debugging I find the UrlBindingFactory.getBindingPrototype(String uri) method ignoring the componentMatch when checking if we have a conflict, which seems to be a bug. At least in this case the result is not logical.
&lt;br&gt;&lt;br&gt;Additionally when I use the url &amp;quot;/section1/foo/bar.html&amp;quot;, the section parameter is set to &amp;quot;section1/foo/bar&amp;quot;. 
&lt;br&gt;This works and gives me the default handler if I dont have the section as a parameter. Perhaps these two issues are related?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26318182&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-727%29-UrlBindingFactory-interprets-parameters-first-in-url-as-conflict-tp26318182p26318182.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26316476</id>
	<title>Re: Where to put the logic?</title>
	<published>2009-11-12T02:33:41Z</published>
	<updated>2009-11-12T02:33:41Z</updated>
	<author>
		<name>KR-11</name>
	</author>
	<content type="html">Hi Stephen,
&lt;br&gt;&lt;br&gt;I do something similar as Dan and I keep the domain data and logic together 
&lt;br&gt;in the model objects.
&lt;br&gt;&lt;br&gt;My impression is that keeping data and logic apart is often just a legacy 
&lt;br&gt;architecture that was introduced in the time before EJB3 and JPA (but often 
&lt;br&gt;still used with EJB3 and JPA). Before EJB3 the persistency layer was so 
&lt;br&gt;separate and limited that it was a technical requirement to do it this way. 
&lt;br&gt;But that's no longer the case as JPA comes very close to making your plain 
&lt;br&gt;old objects (POJO's) persistent. So this way of working is now much closer 
&lt;br&gt;to regular object oriented design.
&lt;br&gt;&lt;br&gt;This kind of design of course integrates the model and database design. The 
&lt;br&gt;database schema becomes part of you're projects development. That means that 
&lt;br&gt;this kind of architecture does not seem to work well with (static of 
&lt;br&gt;external) legacy database models that are not part of you're project.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Karen
&lt;br&gt;&lt;br&gt;&amp;quot;dan06&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26316476&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dan.king106@...&lt;/a&gt;&amp;gt; wrote in 
&lt;br&gt;message news:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26316476&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;26312551.post@...&lt;/a&gt;...
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Stephen Nelson-7 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi Dan
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I always try to keep as much domain/business logic in the domain
&lt;br&gt;&amp;gt;&amp;gt; objects themselves. Otherwise you've [probably] gone through the pain
&lt;br&gt;&amp;gt;&amp;gt; of O/R mapping for no tangible benefit. I generally use a service
&lt;br&gt;&amp;gt;&amp;gt; layer for co-ordinating things e.g. calling a service; parsing a
&lt;br&gt;&amp;gt;&amp;gt; result; storing a value in the data layer. It is then very easy to
&lt;br&gt;&amp;gt;&amp;gt; wrap a transactional around it - and even easier if you're using
&lt;br&gt;&amp;gt;&amp;gt; Spring. This kind of architecture is flexible without being overly so
&lt;br&gt;&amp;gt;&amp;gt; and is clearly defined so you know where to go when bug fixing or
&lt;br&gt;&amp;gt;&amp;gt; adding functionality.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Stephen
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi Stephen,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; do you keep both the domain data and logic in the same domain object - 
&lt;br&gt;&amp;gt; i.e.
&lt;br&gt;&amp;gt; the ORM object maps to a table and has domain logic? Or do you have one
&lt;br&gt;&amp;gt; domain &amp;quot;data&amp;quot;/ORM object and another domain logic object?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best,
&lt;br&gt;&amp;gt; Dan
&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/Where-to-put-the-logic--tp26271911p26312551.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Where-to-put-the-logic--tp26271911p26312551.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the stripes-users 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; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 
&lt;br&gt;&amp;gt; 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus 
&lt;br&gt;&amp;gt; on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&amp;nbsp;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26316476&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-to-put-the-logic--tp26271911p26316476.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26315161</id>
	<title>Re: Stripes annotation validation error messages</title>
	<published>2009-11-12T00:12:51Z</published>
	<updated>2009-11-12T00:12:51Z</updated>
	<author>
		<name>Jan Künstler</name>
	</author>
	<content type="html">Hi Abhi,
&lt;br&gt;&lt;br&gt;yes you can. You need two entries in your resource bundle: One for a 
&lt;br&gt;generic error message and one for the field name.
&lt;br&gt;&lt;br&gt;validation.required.valueNotPresent = {0} is requierd
&lt;br&gt;fieldname = Field Name
&lt;br&gt;&lt;br&gt;Have a look at 
&lt;br&gt;&lt;a href=&quot;http://www.stripesframework.org/display/stripes/Localization&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/display/stripes/Localization&lt;/a&gt;&amp;nbsp;chapter 
&lt;br&gt;&amp;quot;Localized error messages&amp;quot;. There is also an example property file 
&lt;br&gt;somewhere with all the other standard validation errors but i can't find it.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Jan
&lt;br&gt;&lt;br&gt;&lt;br&gt;Abhi schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I saw that it can be done. My apologies for cluttering the mailing list.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Thu, Nov 12, 2009 at 11:44 AM, Abhi &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26315161&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;abhirama.bhat@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26315161&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;abhirama.bhat@...&lt;/a&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; If I use stripes in-built annotation validation on action beans,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; is there a way I can specify the error messages? I remember that
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; stripes uses the field name and some combination to display the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; error message for inbuilt annotation validation. Is there a way to
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; over ride this?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; -- 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Cheers,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Abhi
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26315161&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-annotation-validation-error-messages-tp26314035p26315161.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26314469</id>
	<title>[JIRA] Commented: (STS-726) Multiple submit buttons in first Wizard page cause multiple events on second page</title>
	<published>2009-11-11T23:19:18Z</published>
	<updated>2009-11-11T23:19:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11872#action_11872&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11872#action_11872&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Marcus Kraßmann commented on STS-726:
&lt;br&gt;-------------------------------------
&lt;br&gt;&lt;br&gt;All right. Thanks for this useful piece of information.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Multiple submit buttons in first Wizard page cause multiple events on second page
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: STS-726
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Stripes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Sub-task
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: Release 1.5.2
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: Tomcat 6.0.20, Windows XP
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Marcus Kraßmann
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ben Gunter
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Priority: Blocker
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: Release 1.5.3
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I guess the problem belongs to the parent task, so I created this sub task.
&lt;br&gt;&amp;gt; Wizard breaks if a jsp page has more than one submit button in one form.
&lt;br&gt;&amp;gt; Scenario:
&lt;br&gt;&amp;gt; first.jsp has a form pointing to a wizard action bean. The form contains two submit buttons, pointing to the events &amp;quot;one&amp;quot; and &amp;quot;two&amp;quot;.
&lt;br&gt;&amp;gt; After clicking one of the buttons, you are forwarded to page second.jsp.
&lt;br&gt;&amp;gt; If you click any submit button here, multiple events are generated in the request.
&lt;br&gt;&amp;gt; Reason:
&lt;br&gt;&amp;gt; In first.jsp there was one button unclicked. Stripes seems to think that this was an empty request, and generates a hidden input field on the next page containing this event name. When submitting the second form, the correct and the hidden event are sent with the request --&amp;gt; FAIL.
&lt;br&gt;&amp;gt; I uploaded a small Eclipse Dynamic Web project containing the source code and a deployable .war file here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://senduit.com/622a61&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://senduit.com/622a61&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.file-upload.net/download-1999359/WizardBug.zip.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.file-upload.net/download-1999359/WizardBug.zip.html&lt;/a&gt;&amp;nbsp;(if the first link does not work).
&lt;br&gt;&amp;gt; This is an absolute show stopper at my company, forcing us to stay on 1.5.1
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Marcus
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26314469&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-726%29-Multiple-submit-buttons-in-first-Wizard-page-cause-multiple-events-on-second-page-tp26264486p26314469.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26314173</id>
	<title>Re: Stripes annotation validation error messages</title>
	<published>2009-11-11T22:32:35Z</published>
	<updated>2009-11-11T22:32:35Z</updated>
	<author>
		<name>Abhirama Bhat</name>
	</author>
	<content type="html">I saw that it can be done. My apologies for cluttering the mailing list.&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 12, 2009 at 11:44 AM, Abhi &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26314173&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;abhirama.bhat@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;If I use stripes in-built annotation validation on action beans, is there a way I can specify the error messages? I remember that stripes uses the field name and some combination to display the error message for inbuilt annotation validation. Is there a way to over ride this? &lt;br clear=&quot;all&quot;&gt;

&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;Abhi&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;Abhi&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26314173&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-annotation-validation-error-messages-tp26314035p26314173.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26314035</id>
	<title>Stripes annotation validation error messages</title>
	<published>2009-11-11T22:14:05Z</published>
	<updated>2009-11-11T22:14:05Z</updated>
	<author>
		<name>Abhirama Bhat</name>
	</author>
	<content type="html">If I use stripes in-built annotation validation on action beans, is there a way I can specify the error messages? I remember that stripes uses the field name and some combination to display the error message for inbuilt annotation validation. Is there a way to over ride this? &lt;br clear=&quot;all&quot;&gt;
&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;Abhi&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26314035&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Stripes-annotation-validation-error-messages-tp26314035p26314035.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26312551</id>
	<title>Re: Where to put the logic?</title>
	<published>2009-11-11T18:51:36Z</published>
	<updated>2009-11-11T18:51:36Z</updated>
	<author>
		<name>dan06</name>
	</author>
	<content type="html">&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;Stephen Nelson-7 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi Dan
&lt;br&gt;&lt;br&gt;I always try to keep as much domain/business logic in the domain &amp;nbsp;
&lt;br&gt;objects themselves. Otherwise you've [probably] gone through the pain &amp;nbsp;
&lt;br&gt;of O/R mapping for no tangible benefit. I generally use a service &amp;nbsp;
&lt;br&gt;layer for co-ordinating things e.g. calling a service; parsing a &amp;nbsp;
&lt;br&gt;result; storing a value in the data layer. It is then very easy to &amp;nbsp;
&lt;br&gt;wrap a transactional around it - and even easier if you're using &amp;nbsp;
&lt;br&gt;Spring. This kind of architecture is flexible without being overly so &amp;nbsp;
&lt;br&gt;and is clearly defined so you know where to go when bug fixing or &amp;nbsp;
&lt;br&gt;adding functionality.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;--
&lt;br&gt;Stephen
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Hi Stephen,
&lt;br&gt;&lt;br&gt;do you keep both the domain data and logic in the same domain object - i.e. the ORM object maps to a table and has domain logic? Or do you have one domain &amp;quot;data&amp;quot;/ORM object and another domain logic object?
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;Dan&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Where-to-put-the-logic--tp26271911p26312551.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26307396</id>
	<title>Re: Problem with Quick Start Guide example</title>
	<published>2009-11-11T11:46:55Z</published>
	<updated>2009-11-11T11:46:55Z</updated>
	<author>
		<name>Steven Solomon</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Thanks. I did find it in the version of the file that&amp;#8217;s in the 1.5.2
distribution, but not on the quick start page, &lt;a href=&quot;http://www.stripesframework.org/display/stripes/Quick+Start+Guide&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/display/stripes/Quick+Start+Guide&lt;/a&gt;
.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Steve Solomon&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Sr. Software / Systems Engineer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Ironhawk Technologies, Inc.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;6701 Center Drive West, Suite 700&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Los Angeles, CA&amp;nbsp; 90045&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;(310) 815-2800 Main - ext. 6224&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;(310) 258-9824 Fax&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; Ben Gunter
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gunterben@...&lt;/a&gt;] &lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, November 11, 2009 11:43 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Stripes Users List&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Stripes-users] Problem with Quick Start Guide example&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;It's an &amp;lt;init-param&amp;gt;
under StripesFilter's &amp;lt;filter&amp;gt; element.&lt;br&gt;
&lt;br&gt;
-Ben&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;On Wed, Nov 11, 2009 at 1:41 PM, Steven Solomon &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&amp;gt; wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:#1F497D'&gt;Ben,&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:#1F497D'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:#1F497D'&gt;I copied the web.xml from the quick
start page and now it works. But I&amp;#8217;m still scratching my head. Where in web.xml
is the Stripes.EncryptionKey referenced?&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:#1F497D'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;Steve Solomon&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;Sr. Software / Systems Engineer&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;Ironhawk Technologies, Inc.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;6701 Center Drive West, Suite 700&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;Los Angeles, CA&amp;nbsp; 90045&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;(310) 815-2800 Main - ext. 6224&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;(310) 258-9824 Fax&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:navy'&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:11.0pt;color:#1F497D'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid windowtext 1.0pt;padding:3.0pt 0in 0in 0in;
border-color:-moz-use-text-color -moz-use-text-color'&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='font-size:10.0pt'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt'&gt; Ben
Gunter [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gunterben@...&lt;/a&gt;]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, November 11, 2009 5:59 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Stripes Users List&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Stripes-users] Problem with Quick Start Guide example&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'&gt;... he
said before actually checking to see if Stripes.EncryptionKey was already
there. The example app is configured with a reusable encryption key. I just
tested the 1.5.2 release, and I'm not seeing the behavior you describe. When I
start the app under Tomcat 6.0 and enter 1 and 0 and hit divide, I get a
validation error telling me &amp;quot;Dividing by zero is not allowed.&amp;quot; Have
you perhaps changed web.xml and forgot to add the encryption key?&lt;br&gt;
&lt;br&gt;
-Ben&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;On
Wed, Nov 11, 2009 at 8:37 AM, Ben Gunter &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gunterben@...&lt;/a&gt;&amp;gt;
wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;margin-bottom:12.0pt'&gt;Steven,
make sure you reload the initial view each time you restart your app server.
The _sourcePage parameter is encrypted using a key that does not survive app
server restarts. So if you start your server, load the page and the restart the
server you have a _sourcePage value that the server can no longer decrypt. The
reason it only happens if it's the first thing you do is that on the second
try, the _sourcePage value written to the page has been encrypted with the
correct key.&lt;br&gt;
&lt;br&gt;
Note that in a production app you'd set the encryption key with the
Stripes.EncryptionKey init-param to avoid this problem. Maybe we should do that
with the sample app to avoid this kind of problem.&lt;br&gt;
&lt;span style='color:#888888'&gt;&lt;br&gt;
-Ben&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;On
Tue, Nov 10, 2009 at 9:38 PM, Steven Solomon &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&amp;gt;
wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;blockquote style='border:none;border-left:solid windowtext 1.0pt;padding:0in 0in 0in 6.0pt;
margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt;
border-color:-moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(204, 204, 204)'&gt;

&lt;div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Hello,&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;I&amp;#8217;m new to Stripes and I&amp;#8217;m
working through the Quick Start Guide calculator example.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;pre&gt;When I run the calculator example with the division operation and the validation method ( avoidDivideByZero with annotation @ValidationMethod(on=&amp;quot;division&amp;quot;) ), an IllegalStateException is thrown by &lt;span style='color:black'&gt;ValidationErrorReportResolution if I try to divide by zero.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style='color:black'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style='color:black'&gt;Here is the text displayed in the page:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/pre&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Stripes validation error
report&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Here's how it is. Someone
(quite possibly the Stripes Dispatcher) needed to get the source page resolution.
But no source page was supplied in the request, and unless you override
ActionBeanContext.getSourcePageResolution() you're going to need that value.
When you use a tag a hidden field called '_sourcePage' is included. If you
write your own forms or links that could generate validation errors, you must
include a value for this parameter. This can be done by calling
request.getServletPath(). &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Strangely (or not), the
exception is only thrown if divide by zero is the first operation after
bringing up the page. If I perform an &amp;#8216;add&amp;#8217; operation before attempting to
divide by zero, then the exception is not thrown.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;I&amp;#8217;m running the latest
Stripes 1.5.2 under Tomcat 6.0. Is this a legitimate bug (i.e. is it just me)?
What should go in the method &lt;span style='color:black'&gt;avoidDivideByZero so
that the exception isn&amp;#8217;t thrown?&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;Thanks,&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='color:navy'&gt;Steve Solomon&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='color:navy'&gt;Sr. Software / Systems Engineer&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;Ironhawk Technologies, Inc.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;6701 Center Drive West, Suite 700&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;Los Angeles, CA&amp;nbsp; 90045&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;(310) 815-2800 Main - ext. 6224&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;(310) 258-9824 Fax&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/blockquote&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307396&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-Quick-Start-Guide-example-tp26295152p26307396.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26307335</id>
	<title>Re: Problem with Quick Start Guide example</title>
	<published>2009-11-11T11:43:09Z</published>
	<updated>2009-11-11T11:43:09Z</updated>
	<author>
		<name>Ben Gunter-2</name>
	</author>
	<content type="html">It&amp;#39;s an &amp;lt;init-param&amp;gt; under  StripesFilter&amp;#39;s &amp;lt;filter&amp;gt; element.&lt;br&gt;&lt;br&gt;-Ben&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Nov 11, 2009 at 1:41 PM, Steven Solomon &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307335&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;

&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;








&lt;div link=&quot;blue&quot; vlink=&quot;purple&quot; lang=&quot;EN-US&quot;&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;Ben,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt;I copied the web.xml from the quick start page and now it works.
But I’m still scratching my head. Where in web.xml is the Stripes.EncryptionKey
referenced?&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt;Steve Solomon&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt;Sr. Software / Systems Engineer&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt;Ironhawk Technologies, Inc.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt;6701 Center Drive West, Suite 700&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt;Los Angeles, CA  90045&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt;(310) 815-2800 Main - ext. 6224&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt;(310) 258-9824 Fax&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: navy;&quot;&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307335&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 11pt; color: rgb(31, 73, 125);&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;div style=&quot;border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; border-width: 1pt medium medium; padding: 3pt 0in 0in;&quot;&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; Ben Gunter
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307335&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gunterben@...&lt;/a&gt;] &lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, November 11, 2009 5:59 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Stripes Users List&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Stripes-users] Problem with Quick Start Guide example&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 12pt;&quot;&gt;... he said before actually
checking to see if Stripes.EncryptionKey was already there. The example app is
configured with a reusable encryption key. I just tested the 1.5.2 release, and
I&amp;#39;m not seeing the behavior you describe. When I start the app under Tomcat 6.0
and enter 1 and 0 and hit divide, I get a validation error telling me
&amp;quot;Dividing by zero is not allowed.&amp;quot; Have you perhaps changed web.xml
and forgot to add the encryption key?&lt;br&gt;
&lt;br&gt;
-Ben&lt;/p&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;On Wed, Nov 11, 2009 at 8:37 AM, Ben Gunter &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307335&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gunterben@...&lt;/a&gt;&amp;gt; wrote:&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 12pt;&quot;&gt;Steven, make sure you reload
the initial view each time you restart your app server. The _sourcePage
parameter is encrypted using a key that does not survive app server restarts.
So if you start your server, load the page and the restart the server you have
a _sourcePage value that the server can no longer decrypt. The reason it only
happens if it&amp;#39;s the first thing you do is that on the second try, the
_sourcePage value written to the page has been encrypted with the correct key.&lt;br&gt;
&lt;br&gt;
Note that in a production app you&amp;#39;d set the encryption key with the
Stripes.EncryptionKey init-param to avoid this problem. Maybe we should do that
with the sample app to avoid this kind of problem.&lt;br&gt;
&lt;span style=&quot;color: rgb(136, 136, 136);&quot;&gt;&lt;br&gt;
-Ben&lt;/span&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;On Tue, Nov 10, 2009 at 9:38 PM, Steven Solomon &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307335&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&amp;gt;
wrote:&lt;/p&gt;

&lt;/div&gt;

&lt;blockquote style=&quot;border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(204, 204, 204); border-width: medium medium medium 1pt; padding: 0in 0in 0in 6pt; margin-left: 4.8pt; margin-right: 0in;&quot;&gt;



&lt;div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Hello,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;I’m new to Stripes and I’m
working through the Quick Start Guide calculator example.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;pre&gt;When I run the calculator example with the division operation and the validation method ( avoidDivideByZero with annotation @ValidationMethod(on=&amp;quot;division&amp;quot;) ), an IllegalStateException is thrown by &lt;span style=&quot;color: black;&quot;&gt;ValidationErrorReportResolution if I try to divide by zero.&lt;/span&gt;&lt;/pre&gt;

&lt;pre&gt;&lt;span style=&quot;color: black;&quot;&gt; &lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style=&quot;color: black;&quot;&gt;Here is the text displayed in the page:&lt;/span&gt;&lt;/pre&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Stripes validation error
report&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Here&amp;#39;s how it is. Someone
(quite possibly the Stripes Dispatcher) needed to get the source page
resolution. But no source page was supplied in the request, and unless you
override ActionBeanContext.getSourcePageResolution() you&amp;#39;re going to need that
value. When you use a tag a hidden field called &amp;#39;_sourcePage&amp;#39; is included. If
you write your own forms or links that could generate validation errors, you
must include a value for this parameter. This can be done by calling
request.getServletPath(). &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Strangely (or not), the
exception is only thrown if divide by zero is the first operation after
bringing up the page. If I perform an ‘add’ operation before attempting to
divide by zero, then the exception is not thrown.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;I’m running the latest
Stripes 1.5.2 under Tomcat 6.0. Is this a legitimate bug (i.e. is it just me)?
What should go in the method &lt;span style=&quot;color: black;&quot;&gt;avoidDivideByZero so
that the exception isn’t thrown?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;Thanks,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: navy;&quot;&gt;Steve Solomon&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: navy;&quot;&gt;Sr. Software / Systems Engineer&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;Ironhawk Technologies, Inc.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;6701 Center Drive West, Suite 700&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;Los Angeles, CA  90045&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;(310) 815-2800 Main - ext. 6224&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;(310) 258-9824 Fax&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307335&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;/span&gt;&lt;br&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;

&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307335&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-Quick-Start-Guide-example-tp26295152p26307335.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26306446</id>
	<title>Re: Problem with Quick Start Guide example</title>
	<published>2009-11-11T10:41:48Z</published>
	<updated>2009-11-11T10:41:48Z</updated>
	<author>
		<name>Steven Solomon</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;Ben,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;I copied the web.xml from the quick start page and now it works.
But I&amp;#8217;m still scratching my head. Where in web.xml is the Stripes.EncryptionKey
referenced?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Steve Solomon&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Sr. Software / Systems Engineer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Ironhawk Technologies, Inc.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;6701 Center Drive West, Suite 700&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;Los Angeles, CA&amp;nbsp; 90045&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;(310) 815-2800 Main - ext. 6224&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;(310) 258-9824 Fax&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:navy'&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26306446&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; Ben Gunter
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26306446&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gunterben@...&lt;/a&gt;] &lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Wednesday, November 11, 2009 5:59 AM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Stripes Users List&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Stripes-users] Problem with Quick Start Guide example&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;... he said before actually
checking to see if Stripes.EncryptionKey was already there. The example app is
configured with a reusable encryption key. I just tested the 1.5.2 release, and
I'm not seeing the behavior you describe. When I start the app under Tomcat 6.0
and enter 1 and 0 and hit divide, I get a validation error telling me
&amp;quot;Dividing by zero is not allowed.&amp;quot; Have you perhaps changed web.xml
and forgot to add the encryption key?&lt;br&gt;
&lt;br&gt;
-Ben&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;On Wed, Nov 11, 2009 at 8:37 AM, Ben Gunter &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26306446&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gunterben@...&lt;/a&gt;&amp;gt; wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;Steven, make sure you reload
the initial view each time you restart your app server. The _sourcePage
parameter is encrypted using a key that does not survive app server restarts.
So if you start your server, load the page and the restart the server you have
a _sourcePage value that the server can no longer decrypt. The reason it only
happens if it's the first thing you do is that on the second try, the
_sourcePage value written to the page has been encrypted with the correct key.&lt;br&gt;
&lt;br&gt;
Note that in a production app you'd set the encryption key with the
Stripes.EncryptionKey init-param to avoid this problem. Maybe we should do that
with the sample app to avoid this kind of problem.&lt;br&gt;
&lt;span style='color:#888888'&gt;&lt;br&gt;
-Ben&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal&gt;On Tue, Nov 10, 2009 at 9:38 PM, Steven Solomon &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26306446&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&amp;gt;
wrote:&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;blockquote style='border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;
margin-left:4.8pt;margin-right:0in'&gt;

&lt;div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Hello,&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;I&amp;#8217;m new to Stripes and I&amp;#8217;m
working through the Quick Start Guide calculator example.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;pre&gt;When I run the calculator example with the division operation and the validation method ( avoidDivideByZero with annotation @ValidationMethod(on=&amp;quot;division&amp;quot;) ), an IllegalStateException is thrown by &lt;span style='color:black'&gt;ValidationErrorReportResolution if I try to divide by zero.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style='color:black'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style='color:black'&gt;Here is the text displayed in the page:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/pre&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Stripes validation error
report&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Here's how it is. Someone
(quite possibly the Stripes Dispatcher) needed to get the source page
resolution. But no source page was supplied in the request, and unless you
override ActionBeanContext.getSourcePageResolution() you're going to need that
value. When you use a tag a hidden field called '_sourcePage' is included. If
you write your own forms or links that could generate validation errors, you
must include a value for this parameter. This can be done by calling
request.getServletPath(). &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Strangely (or not), the
exception is only thrown if divide by zero is the first operation after
bringing up the page. If I perform an &amp;#8216;add&amp;#8217; operation before attempting to
divide by zero, then the exception is not thrown.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;I&amp;#8217;m running the latest
Stripes 1.5.2 under Tomcat 6.0. Is this a legitimate bug (i.e. is it just me)?
What should go in the method &lt;span style='color:black'&gt;avoidDivideByZero so
that the exception isn&amp;#8217;t thrown?&lt;/span&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;Thanks,&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='color:navy'&gt;Steve Solomon&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='color:navy'&gt;Sr. Software / Systems Engineer&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;Ironhawk Technologies, Inc.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;6701 Center Drive West, Suite 700&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;Los Angeles, CA&amp;nbsp; 90045&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;(310) 815-2800 Main - ext. 6224&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;(310) 258-9824 Fax&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;&amp;nbsp;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='color:navy'&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26306446&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;div&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
what you do best, core application coding. Discover what's new with&lt;br&gt;
Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
_______________________________________________&lt;br&gt;
Stripes-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26306446&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/blockquote&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26306446&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-Quick-Start-Guide-example-tp26295152p26306446.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26302524</id>
	<title>[JIRA] Commented: (STS-726) Multiple submit buttons in first Wizard page cause multiple events on second page</title>
	<published>2009-11-11T06:51:18Z</published>
	<updated>2009-11-11T06:51:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11871#action_11871&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11871#action_11871&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Ben Gunter commented on STS-726:
&lt;br&gt;--------------------------------
&lt;br&gt;&lt;br&gt;The 1.5.x branch as of r1218 should be just fine, as it doesn't differ much from 1.5.2. As soon as I get STS-678 fixed, I'll release 1.5.3.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Multiple submit buttons in first Wizard page cause multiple events on second page
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: STS-726
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Stripes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Sub-task
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: Release 1.5.2
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: Tomcat 6.0.20, Windows XP
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Marcus Kraßmann
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ben Gunter
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Priority: Blocker
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: Release 1.5.3
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I guess the problem belongs to the parent task, so I created this sub task.
&lt;br&gt;&amp;gt; Wizard breaks if a jsp page has more than one submit button in one form.
&lt;br&gt;&amp;gt; Scenario:
&lt;br&gt;&amp;gt; first.jsp has a form pointing to a wizard action bean. The form contains two submit buttons, pointing to the events &amp;quot;one&amp;quot; and &amp;quot;two&amp;quot;.
&lt;br&gt;&amp;gt; After clicking one of the buttons, you are forwarded to page second.jsp.
&lt;br&gt;&amp;gt; If you click any submit button here, multiple events are generated in the request.
&lt;br&gt;&amp;gt; Reason:
&lt;br&gt;&amp;gt; In first.jsp there was one button unclicked. Stripes seems to think that this was an empty request, and generates a hidden input field on the next page containing this event name. When submitting the second form, the correct and the hidden event are sent with the request --&amp;gt; FAIL.
&lt;br&gt;&amp;gt; I uploaded a small Eclipse Dynamic Web project containing the source code and a deployable .war file here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://senduit.com/622a61&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://senduit.com/622a61&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.file-upload.net/download-1999359/WizardBug.zip.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.file-upload.net/download-1999359/WizardBug.zip.html&lt;/a&gt;&amp;nbsp;(if the first link does not work).
&lt;br&gt;&amp;gt; This is an absolute show stopper at my company, forcing us to stay on 1.5.1
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Marcus
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26302524&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-726%29-Multiple-submit-buttons-in-first-Wizard-page-cause-multiple-events-on-second-page-tp26264486p26302524.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26302409</id>
	<title>[JIRA] Commented: (STS-726) Multiple submit buttons in first Wizard page cause multiple events on second page</title>
	<published>2009-11-11T06:44:18Z</published>
	<updated>2009-11-11T06:44:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11870#action_11870&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11870#action_11870&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Marcus Kraßmann commented on STS-726:
&lt;br&gt;-------------------------------------
&lt;br&gt;&lt;br&gt;Just one question (althouth it is offtopic):
&lt;br&gt;If I decided to use this snapshot version in production environment (Weblogic 10 ;-)), built from the subversion 1.5.x branch, would I have any disadvantage compared with the official tagged 1.5.2 release? Or asked in other words: Would this have any influence on your support behaviour, or is it supported as good as the tagged version?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Multiple submit buttons in first Wizard page cause multiple events on second page
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: STS-726
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Stripes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Sub-task
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: Release 1.5.2
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: Tomcat 6.0.20, Windows XP
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Marcus Kraßmann
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ben Gunter
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Priority: Blocker
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: Release 1.5.3
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I guess the problem belongs to the parent task, so I created this sub task.
&lt;br&gt;&amp;gt; Wizard breaks if a jsp page has more than one submit button in one form.
&lt;br&gt;&amp;gt; Scenario:
&lt;br&gt;&amp;gt; first.jsp has a form pointing to a wizard action bean. The form contains two submit buttons, pointing to the events &amp;quot;one&amp;quot; and &amp;quot;two&amp;quot;.
&lt;br&gt;&amp;gt; After clicking one of the buttons, you are forwarded to page second.jsp.
&lt;br&gt;&amp;gt; If you click any submit button here, multiple events are generated in the request.
&lt;br&gt;&amp;gt; Reason:
&lt;br&gt;&amp;gt; In first.jsp there was one button unclicked. Stripes seems to think that this was an empty request, and generates a hidden input field on the next page containing this event name. When submitting the second form, the correct and the hidden event are sent with the request --&amp;gt; FAIL.
&lt;br&gt;&amp;gt; I uploaded a small Eclipse Dynamic Web project containing the source code and a deployable .war file here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://senduit.com/622a61&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://senduit.com/622a61&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.file-upload.net/download-1999359/WizardBug.zip.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.file-upload.net/download-1999359/WizardBug.zip.html&lt;/a&gt;&amp;nbsp;(if the first link does not work).
&lt;br&gt;&amp;gt; This is an absolute show stopper at my company, forcing us to stay on 1.5.1
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Marcus
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26302409&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-726%29-Multiple-submit-buttons-in-first-Wizard-page-cause-multiple-events-on-second-page-tp26264486p26302409.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26302349</id>
	<title>[JIRA] Commented: (STS-726) Multiple submit buttons in first Wizard page cause multiple events on second page</title>
	<published>2009-11-11T06:40:18Z</published>
	<updated>2009-11-11T06:40:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11869#action_11869&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11869#action_11869&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Iwao AVE! commented on STS-726:
&lt;br&gt;-------------------------------
&lt;br&gt;&lt;br&gt;I only have a few simple projects for testing this currently, but they all work fine with rev. 1218 of 1.5.x branch.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Multiple submit buttons in first Wizard page cause multiple events on second page
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: STS-726
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Stripes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Sub-task
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: Release 1.5.2
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: Tomcat 6.0.20, Windows XP
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Marcus Kraßmann
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ben Gunter
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Priority: Blocker
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: Release 1.5.3
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I guess the problem belongs to the parent task, so I created this sub task.
&lt;br&gt;&amp;gt; Wizard breaks if a jsp page has more than one submit button in one form.
&lt;br&gt;&amp;gt; Scenario:
&lt;br&gt;&amp;gt; first.jsp has a form pointing to a wizard action bean. The form contains two submit buttons, pointing to the events &amp;quot;one&amp;quot; and &amp;quot;two&amp;quot;.
&lt;br&gt;&amp;gt; After clicking one of the buttons, you are forwarded to page second.jsp.
&lt;br&gt;&amp;gt; If you click any submit button here, multiple events are generated in the request.
&lt;br&gt;&amp;gt; Reason:
&lt;br&gt;&amp;gt; In first.jsp there was one button unclicked. Stripes seems to think that this was an empty request, and generates a hidden input field on the next page containing this event name. When submitting the second form, the correct and the hidden event are sent with the request --&amp;gt; FAIL.
&lt;br&gt;&amp;gt; I uploaded a small Eclipse Dynamic Web project containing the source code and a deployable .war file here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://senduit.com/622a61&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://senduit.com/622a61&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.file-upload.net/download-1999359/WizardBug.zip.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.file-upload.net/download-1999359/WizardBug.zip.html&lt;/a&gt;&amp;nbsp;(if the first link does not work).
&lt;br&gt;&amp;gt; This is an absolute show stopper at my company, forcing us to stay on 1.5.1
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Marcus
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26302349&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-726%29-Multiple-submit-buttons-in-first-Wizard-page-cause-multiple-events-on-second-page-tp26264486p26302349.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26301928</id>
	<title>[JIRA] Commented: (STS-726) Multiple submit buttons in first Wizard page cause multiple events on second page</title>
	<published>2009-11-11T06:15:18Z</published>
	<updated>2009-11-11T06:15:18Z</updated>
	<author>
		<name>JIRA jira@stripesframework.org</name>
	</author>
	<content type="html">&lt;br&gt;&amp;nbsp; &amp;nbsp; [ &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11868#action_11868&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&amp;focusedCommentId=11868#action_11868&lt;/a&gt;&amp;nbsp;] 
&lt;br&gt;&lt;br&gt;Marcus Kraßmann commented on STS-726:
&lt;br&gt;-------------------------------------
&lt;br&gt;&lt;br&gt;The fixed version works fine. Thank you :-)
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Multiple submit buttons in first Wizard page cause multiple events on second page
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Key: STS-726
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; URL: &lt;a href=&quot;http://www.stripesframework.org/jira/browse/STS-726&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/browse/STS-726&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Project: Stripes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Issue Type: Sub-task
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Affects Versions: Release 1.5.2
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Environment: Tomcat 6.0.20, Windows XP
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Reporter: Marcus Kraßmann
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Assignee: Ben Gunter
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Priority: Blocker
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fix For: Release 1.5.3
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I guess the problem belongs to the parent task, so I created this sub task.
&lt;br&gt;&amp;gt; Wizard breaks if a jsp page has more than one submit button in one form.
&lt;br&gt;&amp;gt; Scenario:
&lt;br&gt;&amp;gt; first.jsp has a form pointing to a wizard action bean. The form contains two submit buttons, pointing to the events &amp;quot;one&amp;quot; and &amp;quot;two&amp;quot;.
&lt;br&gt;&amp;gt; After clicking one of the buttons, you are forwarded to page second.jsp.
&lt;br&gt;&amp;gt; If you click any submit button here, multiple events are generated in the request.
&lt;br&gt;&amp;gt; Reason:
&lt;br&gt;&amp;gt; In first.jsp there was one button unclicked. Stripes seems to think that this was an empty request, and generates a hidden input field on the next page containing this event name. When submitting the second form, the correct and the hidden event are sent with the request --&amp;gt; FAIL.
&lt;br&gt;&amp;gt; I uploaded a small Eclipse Dynamic Web project containing the source code and a deployable .war file here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://senduit.com/622a61&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://senduit.com/622a61&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.file-upload.net/download-1999359/WizardBug.zip.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.file-upload.net/download-1999359/WizardBug.zip.html&lt;/a&gt;&amp;nbsp;(if the first link does not work).
&lt;br&gt;&amp;gt; This is an absolute show stopper at my company, forcing us to stay on 1.5.1
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Marcus
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;This message is automatically generated by JIRA.
&lt;br&gt;-
&lt;br&gt;If you think it was sent incorrectly contact one of the administrators: &lt;a href=&quot;http://www.stripesframework.org/jira/secure/Administrators.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stripesframework.org/jira/secure/Administrators.jspa&lt;/a&gt;&lt;br&gt;-
&lt;br&gt;For more information on JIRA, see: &lt;a href=&quot;http://www.atlassian.com/software/jira&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.atlassian.com/software/jira&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Stripes-development mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301928&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-development@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-development&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-development&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-dev-f16326.html&quot; embed=&quot;fixTarget[16326]&quot; target=&quot;_top&quot; &gt;stripes-dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-JIRA--Created%3A-%28STS-726%29-Multiple-submit-buttons-in-first-Wizard-page-cause-multiple-events-on-second-page-tp26264486p26301928.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26301688</id>
	<title>Re: Problem with Quick Start Guide example</title>
	<published>2009-11-11T05:58:34Z</published>
	<updated>2009-11-11T05:58:34Z</updated>
	<author>
		<name>Ben Gunter-2</name>
	</author>
	<content type="html">... he said before actually checking to see if Stripes.EncryptionKey was already there. The example app is configured with a reusable encryption key. I just tested the 1.5.2 release, and I&amp;#39;m not seeing the behavior you describe. When I start the app under Tomcat 6.0 and enter 1 and 0 and hit divide, I get a validation error telling me &amp;quot;Dividing by zero is not allowed.&amp;quot; Have you perhaps changed web.xml and forgot to add the encryption key?&lt;br&gt;

&lt;br&gt;-Ben&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Nov 11, 2009 at 8:37 AM, Ben Gunter &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301688&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gunterben@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;

Steven, make sure you reload the initial view each time you restart your app server. The _sourcePage parameter is encrypted using a key that does not survive app server restarts. So if you start your server, load the page and the restart the server you have a _sourcePage value that the server can no longer decrypt. The reason it only happens if it&amp;#39;s the first thing you do is that on the second try, the _sourcePage value written to the page has been encrypted with the correct key.&lt;br&gt;


&lt;br&gt;Note that in a production app you&amp;#39;d set the encryption key with the Stripes.EncryptionKey init-param to avoid this problem. Maybe we should do that with the sample app to avoid this kind of problem.&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;

-Ben&lt;br&gt;
&lt;br&gt;&lt;/font&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;div class=&quot;im&quot;&gt;On Tue, Nov 10, 2009 at 9:38 PM, Steven Solomon &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301688&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;

&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;









&lt;div link=&quot;blue&quot; vlink=&quot;purple&quot; lang=&quot;EN-US&quot;&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Hello,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;I’m
new to Stripes and I’m working through the Quick Start Guide calculator
example.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;pre&gt;When I run the calculator example with the division operation and the validation method ( avoidDivideByZero with annotation @ValidationMethod(on=&amp;quot;division&amp;quot;) ), an IllegalStateException is thrown by &lt;span style=&quot;color: black;&quot;&gt;ValidationErrorReportResolution if I try to divide by zero.&lt;/span&gt;&lt;/pre&gt;


&lt;pre&gt;&lt;span style=&quot;color: black;&quot;&gt; &lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style=&quot;color: black;&quot;&gt;Here is the text displayed in the page:&lt;/span&gt;&lt;/pre&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Stripes validation error
report&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Here&amp;#39;s how it is. Someone
(quite possibly the Stripes Dispatcher) needed to get the source page
resolution. But no source page was supplied in the request, and unless you
override ActionBeanContext.getSourcePageResolution() you&amp;#39;re going to need that
value. When you use a tag a hidden field called &amp;#39;_sourcePage&amp;#39; is included. If
you write your own forms or links that could generate validation errors, you
must include a value for this parameter. This can be done by calling
request.getServletPath(). &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Strangely (or not), the
exception is only thrown if divide by zero is the first operation after
bringing up the page. If I perform an ‘add’ operation before attempting
to divide by zero, then the exception is not thrown.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;I’m running the latest
Stripes 1.5.2 under Tomcat 6.0. Is this a legitimate bug (i.e. is it just me)? What
should go in the method &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;avoidDivideByZero so that the exception isn’t thrown?&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;Thanks,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: navy;&quot;&gt;Steve Solomon&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: navy;&quot;&gt;Sr. Software / Systems Engineer&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;Ironhawk Technologies, Inc.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;6701 Center Drive West, Suite 700&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;Los Angeles, CA  90045&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;(310) 815-2800 Main - ext. 6224&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;(310) 258-9824 Fax&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301688&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;


&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;im&quot;&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
Stripes-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301688&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301688&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-Quick-Start-Guide-example-tp26295152p26301688.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26301774</id>
	<title>Re: Problem with Quick Start Guide example</title>
	<published>2009-11-11T05:37:51Z</published>
	<updated>2009-11-11T05:37:51Z</updated>
	<author>
		<name>Ben Gunter-2</name>
	</author>
	<content type="html">Steven, make sure you reload the initial view each time you restart your app server. The _sourcePage parameter is encrypted using a key that does not survive app server restarts. So if you start your server, load the page and the restart the server you have a _sourcePage value that the server can no longer decrypt. The reason it only happens if it&amp;#39;s the first thing you do is that on the second try, the _sourcePage value written to the page has been encrypted with the correct key.&lt;br&gt;

&lt;br&gt;Note that in a production app you&amp;#39;d set the encryption key with the Stripes.EncryptionKey init-param to avoid this problem. Maybe we should do that with the sample app to avoid this kind of problem.&lt;br&gt;&lt;br&gt;-Ben&lt;br&gt;

&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Nov 10, 2009 at 9:38 PM, Steven Solomon &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301774&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;










&lt;div link=&quot;blue&quot; vlink=&quot;purple&quot; lang=&quot;EN-US&quot;&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Hello,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;I’m
new to Stripes and I’m working through the Quick Start Guide calculator
example.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;pre&gt;When I run the calculator example with the division operation and the validation method ( avoidDivideByZero with annotation @ValidationMethod(on=&amp;quot;division&amp;quot;) ), an IllegalStateException is thrown by &lt;span style=&quot;color: black;&quot;&gt;ValidationErrorReportResolution if I try to divide by zero.&lt;/span&gt;&lt;/pre&gt;

&lt;pre&gt;&lt;span style=&quot;color: black;&quot;&gt; &lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style=&quot;color: black;&quot;&gt;Here is the text displayed in the page:&lt;/span&gt;&lt;/pre&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Stripes validation error
report&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Here&amp;#39;s how it is. Someone
(quite possibly the Stripes Dispatcher) needed to get the source page
resolution. But no source page was supplied in the request, and unless you
override ActionBeanContext.getSourcePageResolution() you&amp;#39;re going to need that
value. When you use a tag a hidden field called &amp;#39;_sourcePage&amp;#39; is included. If
you write your own forms or links that could generate validation errors, you
must include a value for this parameter. This can be done by calling
request.getServletPath(). &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;Strangely (or not), the
exception is only thrown if divide by zero is the first operation after
bringing up the page. If I perform an ‘add’ operation before attempting
to divide by zero, then the exception is not thrown.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;;&quot;&gt;I’m running the latest
Stripes 1.5.2 under Tomcat 6.0. Is this a legitimate bug (i.e. is it just me)? What
should go in the method &lt;/span&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;avoidDivideByZero so that the exception isn’t thrown?&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 10pt; font-family: &amp;quot;Courier New&amp;quot;; color: black;&quot;&gt;Thanks,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: navy;&quot;&gt;Steve Solomon&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;color: navy;&quot;&gt;Sr. Software / Systems Engineer&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;Ironhawk Technologies, Inc.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;6701 Center Drive West, Suite 700&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;Los Angeles, CA  90045&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;(310) 815-2800 Main - ext. 6224&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;(310) 258-9824 Fax&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301774&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;


&lt;br&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
Stripes-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301774&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26301774&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-Quick-Start-Guide-example-tp26295152p26301774.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26300837</id>
	<title>Re: Problem with Quick Start Guide example</title>
	<published>2009-11-11T05:00:10Z</published>
	<updated>2009-11-11T05:00:10Z</updated>
	<author>
		<name>Brandon Atkinson</name>
	</author>
	<content type="html">A common reason for this error message appearing is that validation is failing on the initial view of the page.  Stripes hasn&amp;#39;t had a chance to insert the encrypted hidden field _sourcePage into the form, because it&amp;#39;s the initial view.  &lt;div&gt;
&lt;br&gt;&lt;/div&gt;&lt;div&gt;If you don&amp;#39;t want validation to run on the initial view of the page (usually the @DefaultHandler) you can mark the event as @DontValidate.  This will prevent Stripes from running validation when this event is executed.&lt;br&gt;
&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Nov 10, 2009 at 9:38 PM, Steven Solomon &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300837&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;









&lt;div lang=&quot;EN-US&quot; link=&quot;blue&quot; vlink=&quot;purple&quot;&gt;

&lt;div&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;Hello,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;I’m
new to Stripes and I’m working through the Quick Start Guide calculator
example.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;pre&gt;When I run the calculator example with the division operation and the validation method ( avoidDivideByZero with annotation @ValidationMethod(on=&amp;quot;division&amp;quot;) ), an IllegalStateException is thrown by &lt;span style=&quot;color:black&quot;&gt;ValidationErrorReportResolution if I try to divide by zero.&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span style=&quot;color:black&quot;&gt; &lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style=&quot;color:black&quot;&gt;Here is the text displayed in the page:&lt;/span&gt;&lt;/pre&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;Stripes validation error
report&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;Here&amp;#39;s how it is. Someone
(quite possibly the Stripes Dispatcher) needed to get the source page
resolution. But no source page was supplied in the request, and unless you
override ActionBeanContext.getSourcePageResolution() you&amp;#39;re going to need that
value. When you use a tag a hidden field called &amp;#39;_sourcePage&amp;#39; is included. If
you write your own forms or links that could generate validation errors, you
must include a value for this parameter. This can be done by calling
request.getServletPath(). &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;Strangely (or not), the
exception is only thrown if divide by zero is the first operation after
bringing up the page. If I perform an ‘add’ operation before attempting
to divide by zero, then the exception is not thrown.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;I’m running the latest
Stripes 1.5.2 under Tomcat 6.0. Is this a legitimate bug (i.e. is it just me)? What
should go in the method &lt;/span&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;;color:black&quot;&gt;avoidDivideByZero so that the exception isn’t thrown?&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size:10.0pt;font-family:&amp;quot;Courier New&amp;quot;;color:black&quot;&gt;Thanks,&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;color:navy&quot;&gt;Steve Solomon&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;color:navy&quot;&gt;Sr. Software / Systems Engineer&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color:navy&quot;&gt;Ironhawk Technologies, Inc.&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color:navy&quot;&gt;6701 Center Drive West, Suite 700&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color:navy&quot;&gt;Los Angeles, CA  90045&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color:navy&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color:navy&quot;&gt;(310) 815-2800 Main - ext. 6224&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color:navy&quot;&gt;(310) 258-9824 Fax&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color:navy&quot;&gt; &lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;color:navy&quot;&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300837&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;


&lt;br&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day&lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on&lt;br&gt;
what you do best, core application coding. Discover what&amp;#39;s new with&lt;br&gt;
Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________&lt;br&gt;
Stripes-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300837&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;
&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26300837&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-Quick-Start-Guide-example-tp26295152p26300837.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26297089</id>
	<title>Re: RedirectResolution using POST</title>
	<published>2009-11-10T23:17:19Z</published>
	<updated>2009-11-10T23:17:19Z</updated>
	<author>
		<name>jockeeriksson</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;
Sure&amp;nbsp;it's&amp;nbsp;simple, do this in your service layer, maybe in a new thread up to the implementation. And of course implement better error handling. &amp;nbsp;&amp;nbsp;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp;private String createQueryString() {&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;StringBuilder sb = new StringBuilder();&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;sb.append(&quot;var1=&quot;);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;sb.append(URLEncoder.encode(value1, &quot;UTF-8&quot;));&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return sb.toString();&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;private String makeRequest(String urlToCall, query) throws IOException {&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;String response = null;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;try {&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;URL urlCall = new URL(urlToCall);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;HttpURLConnection con = (HttpURLConnection) urlCall.openConnection();&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;con.setDoInput(true);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;con.setDoOutput(true);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;con.setUseCaches(false);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;con.setRequestMethod(&quot;POST&quot;);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;con.setRequestProperty(&quot;Content-Type&quot;, &quot;application/x-www-form-urlencoded&quot;);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DataOutputStream printout = new DataOutputStream(con.getOutputStream());&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printout.writeBytes(query);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printout.flush();&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printout.close();&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(con.getInputStream()));&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;String str;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;StringBuffer bf = new StringBuffer();&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;while (null != ((str = bufferedReader.readLine()))) {&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;bf.append(str);&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;bufferedReader.close();&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;response = bf.toString();&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;logger.finest(&quot;got response &quot; + response);&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;} catch (MalformedURLException ex1) {&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;logger.severe(ex1.getMessage());&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return response;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;hr id=&quot;stopSpelling&quot;&gt;Date: Tue, 10 Nov 2009 17:08:25 -0500&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26297089&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tstone@...&lt;/a&gt;&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26297089&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stripes-users@...&lt;/a&gt;&lt;br&gt;Subject: Re: [Stripes-users] RedirectResolution using POST&lt;br&gt;&lt;br&gt;



&lt;title&gt;Re: [Stripes-users] RedirectResolution using POST&lt;/title&gt;


&lt;font face=&quot;Calibri, Verdana, Helvetica, Arial&quot;&gt;&lt;span style=&quot;font-size:11pt&quot;&gt;Jocke,&lt;br&gt;
&lt;br&gt;
I personally would like to hear more about this solution and possibly see some code samples.&lt;br&gt;
&lt;br&gt;
Generally speaking, I have found that many applications do not really correctly implement GET and POST. Many leverage POST to circumvent GET limitations or prevent information from being written to logs.&lt;br&gt;
&lt;br&gt;
The use of mod_rewrite + mod_proxy is really just masking the problem and working around the specification, but I like the solution better than a “form shell” that auto submits (for reasons of accessibility, though those can be worked around by providing a button when Javascript is disabled...).&lt;br&gt;
&lt;br&gt;
A controller solution is very intriguing as, while another specification workaround, it is hidden from the view and the protocol layers preserving the data being passed around.&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
TIm&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
On 11/10/09 2:15 AM, &quot;Jocke Eriksson&quot; &amp;lt;&lt;a href=&quot;http://msn.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jockeeriksson@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;/font&gt;&lt;blockquote&gt;&lt;font size=&quot;2&quot;&gt;&lt;font face=&quot;Verdana, Helvetica, Arial&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;I would go with the URL Connection class, this will give you the possibility to implement failover when&lt;br&gt;
needed. &lt;br&gt;
&lt;br&gt;
&amp;gt; Date: Mon, 9 Nov 2009 19:54:48 +0100&lt;br&gt;
&amp;gt; From: &lt;a href=&quot;http://karko.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gk@...&lt;/a&gt;&lt;br&gt;
&amp;gt; To: &lt;a href=&quot;http://lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stripes-users@...&lt;/a&gt;&lt;br&gt;
&amp;gt; Subject: [Stripes-users] RedirectResolution using POST&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I'm integrating with an online payments service and would love to POST &lt;br&gt;
&amp;gt; to their URL instead of GETting it. Is it possible to do so using &lt;br&gt;
&amp;gt; RedirectResolution or some other means?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Best regards,&lt;br&gt;
&amp;gt; Grzegorz&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; ------------------------------------------------------------------------------&lt;br&gt;
&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day &lt;br&gt;
&amp;gt; trial. Simplify your report design, integration and deployment - and focus on &lt;br&gt;
&amp;gt; what you do best, core application coding. Discover what's new with&lt;br&gt;
&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt; Stripes-users mailing list&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br&gt;
&lt;hr align=&quot;CENTER&quot; size=&quot;3&quot; width=&quot;100%&quot;&gt;Hitta kärleken! Klicka här Hitta en dator som passar dig! &amp;lt;&lt;a href=&quot;http://windows.microsoft.com/shop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://windows.microsoft.com/shop&lt;/a&gt;&amp;gt; &lt;br&gt;
&lt;hr align=&quot;CENTER&quot; size=&quot;3&quot; width=&quot;95%&quot;&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;font face=&quot;Consolas, Courier New, Courier&quot;&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day &lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on &lt;br&gt;
what you do best, core application coding. Discover what's new with&lt;br&gt;
Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/blockquote&gt;&lt;font size=&quot;2&quot;&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;&lt;font face=&quot;Consolas, Courier New, Courier&quot;&gt;&lt;br&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;font face=&quot;Calibri, Verdana, Helvetica, Arial&quot;&gt;&lt;span style=&quot;font-size:11pt&quot;&gt;-- &lt;br&gt;
&lt;/span&gt;&lt;/font&gt;&lt;font color=&quot;#56517A&quot;&gt;&lt;font size=&quot;1&quot;&gt;&lt;font face=&quot;Barclaycard Co&quot;&gt;&lt;span style=&quot;font-size:9pt&quot;&gt;Timothy Stone&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;font face=&quot;Barclaycard Co&quot;&gt;&lt;span style=&quot;font-size:11pt&quot;&gt; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=&quot;#00A1E4&quot;&gt;&lt;font size=&quot;1&quot;&gt;&lt;font face=&quot;Barclaycard Co Lt&quot;&gt;&lt;span style=&quot;font-size:9pt&quot;&gt;|&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;1&quot;&gt;&lt;font face=&quot;Barclaycard Co Lt&quot;&gt;&lt;span style=&quot;font-size:9pt&quot;&gt;&lt;font color=&quot;#56517A&quot;&gt; &amp;nbsp;&amp;nbsp;Application Developer Technical Lead&lt;br&gt;
Barclaycard &amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;font color=&quot;#00A1E4&quot;&gt;|&lt;/font&gt;&lt;font color=&quot;#56517A&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;Business Technology Group, Strategic Development&lt;br&gt;
125 S. West Street &amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;font color=&quot;#00A1E4&quot;&gt;|&lt;/font&gt;&lt;font color=&quot;#56517A&quot;&gt; &amp;nbsp;&amp;nbsp;Wilmington, DE &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;font color=&quot;#00A1E4&quot;&gt;|&lt;/font&gt;&lt;font color=&quot;#56517A&quot;&gt; &amp;nbsp;&amp;nbsp;19801&lt;br&gt;
USA &amp;nbsp;&amp;nbsp;&lt;/font&gt;&lt;font color=&quot;#00A1E4&quot;&gt;|&lt;/font&gt;&lt;font color=&quot;#56517A&quot;&gt; &amp;nbsp;&amp;nbsp;www.barclaycardus.com&lt;br&gt;
+1 302 255 8044 direct &lt;/font&gt;&lt;font color=&quot;#00A1E4&quot;&gt;|&lt;/font&gt;&lt;font color=&quot;#56517A&quot;&gt; &amp;nbsp;&amp;nbsp;+1 410 441 9450 cell&lt;br&gt;
&amp;nbsp;&lt;br&gt;
COMPANY CONFIDENTIAL&lt;br&gt;
&lt;/font&gt; &lt;br&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=&quot;#008000&quot;&gt;&lt;font size=&quot;5&quot;&gt;&lt;font face=&quot;Webdings&quot;&gt;&lt;span style=&quot;font-size:16pt&quot;&gt;P&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;1&quot;&gt;&lt;font face=&quot;Barclaycard Co Lt&quot;&gt;&lt;span style=&quot;font-size:9pt&quot;&gt; Before printing this e-mail, or any other document, ask yourself whether you need a hard copy&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font face=&quot;Calibri, Verdana, Helvetica, Arial&quot;&gt;&lt;span style=&quot;font-size:11pt&quot;&gt;&lt;br&gt;
&lt;/span&gt;&lt;/font&gt;
&lt;br clear=&quot;all&quot;&gt; &lt;br&gt;&lt;br&gt;_______________________________________________________&lt;br&gt;&lt;br&gt;Barclays&lt;br&gt;www.barclaycardus.com&lt;br&gt;_______________________________________________________&lt;br&gt;&lt;br&gt;This e-mail and any files transmitted with it may contain confidential and/or proprietary information. It is intended solely for the use of the individual or entity who is the intended recipient. Unauthorized use of this information is prohibited. If you have received this in error, please contact the sender by replying to this message and delete this material from any system it may be on.&lt;/div&gt;&lt;/div&gt; 		 	   		  &lt;br /&gt;&lt;hr /&gt;Ladda ner nya Internet Explorer 8! &lt;a href='http://windowslive.se.msn.com/wl/downloads' target='_new' rel=&quot;nofollow&quot;&gt;Ladda ner nya Internet Explorer 8!&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26297089&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/RedirectResolution-using-POST-tp26271747p26297089.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26295152</id>
	<title>Problem with Quick Start Guide example</title>
	<published>2009-11-10T18:38:04Z</published>
	<updated>2009-11-10T18:38:04Z</updated>
	<author>
		<name>Steven Solomon</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Hello,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;I&amp;#8217;m
new to Stripes and I&amp;#8217;m working through the Quick Start Guide calculator
example.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;pre&gt;When I run the calculator example with the division operation and the validation method ( avoidDivideByZero with annotation @ValidationMethod(on=&amp;quot;division&amp;quot;) ), an IllegalStateException is thrown by &lt;span style='color:black'&gt;ValidationErrorReportResolution if I try to divide by zero.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style='color:black'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style='color:black'&gt;Here is the text displayed in the page:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/pre&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Stripes validation error
report&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Here's how it is. Someone
(quite possibly the Stripes Dispatcher) needed to get the source page
resolution. But no source page was supplied in the request, and unless you
override ActionBeanContext.getSourcePageResolution() you're going to need that
value. When you use a tag a hidden field called '_sourcePage' is included. If
you write your own forms or links that could generate validation errors, you
must include a value for this parameter. This can be done by calling
request.getServletPath(). &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;Strangely (or not), the
exception is only thrown if divide by zero is the first operation after
bringing up the page. If I perform an &amp;#8216;add&amp;#8217; operation before attempting
to divide by zero, then the exception is not thrown.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;'&gt;I&amp;#8217;m running the latest
Stripes 1.5.2 under Tomcat 6.0. Is this a legitimate bug (i.e. is it just me)? What
should go in the method &lt;/span&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:black'&gt;avoidDivideByZero so that the exception isn&amp;#8217;t thrown?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:black'&gt;Thanks,&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='color:navy'&gt;Steve Solomon&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='color:navy'&gt;Sr. Software / Systems Engineer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:navy'&gt;Ironhawk Technologies, Inc.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:navy'&gt;6701 Center Drive West, Suite 700&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:navy'&gt;Los Angeles, CA&amp;nbsp; 90045&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:navy'&gt;(310) 815-2800 Main - ext. 6224&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:navy'&gt;(310) 258-9824 Fax&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='color:navy'&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295152&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ssolomon@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26295152&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problem-with-Quick-Start-Guide-example-tp26295152p26295152.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292808</id>
	<title>Re: RedirectResolution using POST</title>
	<published>2009-11-10T14:49:54Z</published>
	<updated>2009-11-10T14:49:54Z</updated>
	<author>
		<name>Newman, John W</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;
&lt;!--[if !mso]&gt;
&lt;style&gt;
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
&lt;/style&gt;
&lt;![endif]--&gt;
&lt;title&gt;Re: [Stripes-users] RedirectResolution using POST&lt;/title&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;AH I hit ctrl+enter, instead of enter, before I was finished.  I
need to change that setting..&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;I wanted to add, it is kind of weird to have your web server also
acting like a web client.  Here we have 0 visibility to the production machine,
so it may have some sort of outbound proxy or something preventing a POST or a
GET from that machine to another one.  If it doesn&amp;#8217;t for initial release,
they might install something tomorrow who knows.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;So I would probably go with the forward to a page with &amp;lt;form
action=&lt;a href=&quot;http://...&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://...&lt;/a&gt; and &amp;lt;script&amp;gt;form.submit()&amp;#8230;
that is weird, but not quite as weird as making your server ask for pages.  And
if you put a button inside the &amp;lt;noscript&amp;gt; tag, it&amp;#8217;s still
accessible.  It is still pretty odd though, there&amp;#8217;s got to be a better
way?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; Newman, John W
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292808&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;John.newman@...&lt;/a&gt;] &lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Tuesday, November 10, 2009 5:37 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Stripes Users List&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Stripes-users] RedirectResolution using POST&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;You could also use apache http client to build &amp;amp; execute the
post and send the resulting input stream to your httpresponse.&amp;nbsp; Might be a
bit overkill but is probably a not so bad way of doing it.&amp;nbsp; I&amp;#8217;m sure
there&amp;#8217;s an easier way?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;I&amp;#8217;ve used http client a few times, it is pretty simple to
get up and running.&amp;nbsp; It&amp;#8217;s just the error handling that can take
time, but your use case any errors would just be a pass through.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; Stone, Timothy [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292808&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tstone@...&lt;/a&gt;]
&lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Tuesday, November 10, 2009 5:08 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Stripes Users List&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Stripes-users] RedirectResolution using POST&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&lt;span style='font-size:11.0pt;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;'&gt;Jocke,&lt;br&gt;
&lt;br&gt;
I personally would like to hear more about this solution and possibly see some
code samples.&lt;br&gt;
&lt;br&gt;
Generally speaking, I have found that many applications do not really correctly
implement GET and POST. Many leverage POST to circumvent GET limitations or
prevent information from being written to logs.&lt;br&gt;
&lt;br&gt;
The use of mod_rewrite + mod_proxy is really just masking the problem and
working around the specification, but I like the solution better than a
&amp;#8220;form shell&amp;#8221; that auto submits (for reasons of accessibility,
though those can be worked around by providing a button when Javascript is
disabled...).&lt;br&gt;
&lt;br&gt;
A controller solution is very intriguing as, while another specification
workaround, it is hidden from the view and the protocol layers preserving the
data being passed around.&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
TIm&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
On 11/10/09 2:15 AM, &amp;quot;Jocke Eriksson&amp;quot; &amp;lt;&lt;a href=&quot;jockeeriksson@msn.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jockeeriksson@...&lt;/a&gt;&amp;gt; wrote:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;'&gt;I
would go with the URL Connection class, this will give you the possibility to
implement failover when&lt;br&gt;
needed. &lt;br&gt;
&lt;br&gt;
&amp;gt; Date: Mon, 9 Nov 2009 19:54:48 +0100&lt;br&gt;
&amp;gt; From: &lt;a href=&quot;gk@karko.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gk@...&lt;/a&gt;&lt;br&gt;
&amp;gt; To: &lt;a href=&quot;stripes-users@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stripes-users@...&lt;/a&gt;&lt;br&gt;
&amp;gt; Subject: [Stripes-users] RedirectResolution using POST&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I'm integrating with an online payments service and would love to POST &lt;br&gt;
&amp;gt; to their URL instead of GETting it. Is it possible to do so using &lt;br&gt;
&amp;gt; RedirectResolution or some other means?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Best regards,&lt;br&gt;
&amp;gt; Grzegorz&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt;
------------------------------------------------------------------------------&lt;br&gt;
&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day &lt;br&gt;
&amp;gt; trial. Simplify your report design, integration and deployment - and focus
on &lt;br&gt;
&amp;gt; what you do best, core application coding. Discover what's new with&lt;br&gt;
&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt; Stripes-users mailing list&lt;br&gt;
&amp;gt; &lt;a href=&quot;Stripes-users@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div class=MsoNormal align=center style='text-align:center'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;'&gt;

&lt;hr size=3 width=&quot;100%&quot; align=center&gt;

&lt;/span&gt;&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;'&gt;Hitta
kärleken! Klicka här Hitta en dator som passar dig! &amp;lt;&lt;a href=&quot;http://windows.microsoft.com/shop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://windows.microsoft.com/shop&lt;/a&gt;&amp;gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div class=MsoNormal align=center style='text-align:center'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;'&gt;

&lt;hr size=3 width=&quot;95%&quot; align=center&gt;

&lt;/span&gt;&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:Consolas'&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day &lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on &lt;br&gt;
what you do best, core application coding. Discover what's new with&lt;br&gt;
Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:Consolas'&gt;&lt;br&gt;
&lt;/span&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;'&gt;-- &lt;br&gt;
&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co&quot;,&quot;serif&quot;;
color:#56517A'&gt;Timothy Stone&lt;/span&gt;&lt;span style='font-size:11.0pt;font-family:
&quot;Barclaycard Co&quot;,&quot;serif&quot;;color:#56517A'&gt; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:#56517A'&gt;
&amp;nbsp;&amp;nbsp;Application Developer Technical Lead&lt;br&gt;
Barclaycard &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#56517A'&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;Business Technology Group, Strategic
Development&lt;br&gt;
125 S. West Street &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:
&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;
font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:#56517A'&gt; &amp;nbsp;&amp;nbsp;Wilmington,
DE &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#56517A'&gt; &amp;nbsp;&amp;nbsp;19801&lt;br&gt;
USA &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#56517A'&gt; &amp;nbsp;&amp;nbsp;www.barclaycardus.com&lt;br&gt;
+1 302 255 8044 direct &lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#56517A'&gt; &amp;nbsp;&amp;nbsp;+1 410 441 9450 cell&lt;br&gt;
&amp;nbsp;&lt;br&gt;
COMPANY CONFIDENTIAL&lt;br&gt;
&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;'&gt;&lt;br&gt;
&lt;/span&gt;&lt;span style='font-size:16.0pt;font-family:Webdings;color:green'&gt;P&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:green'&gt;
Before printing this e-mail, or any other document, ask yourself whether you
need a hard copy&lt;/span&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;'&gt;&lt;br&gt;
&lt;/span&gt;&lt;br clear=all&gt;
&lt;br&gt;
&lt;br&gt;
_______________________________________________________&lt;br&gt;
&lt;br&gt;
Barclays&lt;br&gt;
www.barclaycardus.com&lt;br&gt;
_______________________________________________________&lt;br&gt;
&lt;br&gt;
This e-mail and any files transmitted with it may contain confidential and/or
proprietary information. It is intended solely for the use of the individual or
entity who is the intended recipient. Unauthorized use of this information is
prohibited. If you have received this in error, please contact the sender by
replying to this message and delete this material from any system it may be on.
&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292808&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/RedirectResolution-using-POST-tp26271747p26292808.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26292669</id>
	<title>Re: RedirectResolution using POST</title>
	<published>2009-11-10T14:36:46Z</published>
	<updated>2009-11-10T14:36:46Z</updated>
	<author>
		<name>Newman, John W</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot; xmlns:p=&quot;urn:schemas-microsoft-com:office:powerpoint&quot; xmlns:a=&quot;urn:schemas-microsoft-com:office:access&quot; xmlns:dt=&quot;uuid:C2F41010-65B3-11d1-A29F-00AA00C14882&quot; xmlns:s=&quot;uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882&quot; xmlns:rs=&quot;urn:schemas-microsoft-com:rowset&quot; xmlns:Z=&quot;urn:schemas-microsoft-com:&quot; xmlns:b=&quot;urn:schemas-microsoft-com:office:publisher&quot; xmlns:ss=&quot;urn:schemas-microsoft-com:office:spreadsheet&quot; xmlns:c=&quot;urn:schemas-microsoft-com:office:component:spreadsheet&quot; xmlns:odc=&quot;urn:schemas-microsoft-com:office:odc&quot; xmlns:oa=&quot;urn:schemas-microsoft-com:office:activation&quot; xmlns:html=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:q=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:rtc=&quot;http://microsoft.com/officenet/conferencing&quot; xmlns:D=&quot;DAV:&quot; xmlns:Repl=&quot;http://schemas.microsoft.com/repl/&quot; xmlns:mt=&quot;http://schemas.microsoft.com/sharepoint/soap/meetings/&quot; xmlns:x2=&quot;http://schemas.microsoft.com/office/excel/2003/xml&quot; xmlns:ppda=&quot;http://www.passport.com/NameSpace.xsd&quot; xmlns:ois=&quot;http://schemas.microsoft.com/sharepoint/soap/ois/&quot; xmlns:dir=&quot;http://schemas.microsoft.com/sharepoint/soap/directory/&quot; xmlns:ds=&quot;http://www.w3.org/2000/09/xmldsig#&quot; xmlns:dsp=&quot;http://schemas.microsoft.com/sharepoint/dsp&quot; xmlns:udc=&quot;http://schemas.microsoft.com/data/udc&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sub=&quot;http://schemas.microsoft.com/sharepoint/soap/2002/1/alerts/&quot; xmlns:ec=&quot;http://www.w3.org/2001/04/xmlenc#&quot; xmlns:sp=&quot;http://schemas.microsoft.com/sharepoint/&quot; xmlns:sps=&quot;http://schemas.microsoft.com/sharepoint/soap/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:udcs=&quot;http://schemas.microsoft.com/data/udc/soap&quot; xmlns:udcxf=&quot;http://schemas.microsoft.com/data/udc/xmlfile&quot; xmlns:udcp2p=&quot;http://schemas.microsoft.com/data/udc/parttopart&quot; xmlns:wf=&quot;http://schemas.microsoft.com/sharepoint/soap/workflow/&quot; xmlns:dsss=&quot;http://schemas.microsoft.com/office/2006/digsig-setup&quot; xmlns:dssi=&quot;http://schemas.microsoft.com/office/2006/digsig&quot; xmlns:mdssi=&quot;http://schemas.openxmlformats.org/package/2006/digital-signature&quot; xmlns:mver=&quot;http://schemas.openxmlformats.org/markup-compatibility/2006&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns:mrels=&quot;http://schemas.openxmlformats.org/package/2006/relationships&quot; xmlns:spwp=&quot;http://microsoft.com/sharepoint/webpartpages&quot; xmlns:ex12t=&quot;http://schemas.microsoft.com/exchange/services/2006/types&quot; xmlns:ex12m=&quot;http://schemas.microsoft.com/exchange/services/2006/messages&quot; xmlns:pptsl=&quot;http://schemas.microsoft.com/sharepoint/soap/SlideLibrary/&quot; xmlns:spsl=&quot;http://microsoft.com/webservices/SharePointPortalServer/PublishedLinksService&quot; xmlns:st=&quot;&amp;#1;&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;
&lt;!--[if !mso]&gt;
&lt;style&gt;
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
&lt;/style&gt;
&lt;![endif]--&gt;
&lt;title&gt;Re: [Stripes-users] RedirectResolution using POST&lt;/title&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;You could also use apache http client to build &amp;amp; execute the
post and send the resulting input stream to your httpresponse.  Might be a bit
overkill but is probably a not so bad way of doing it.  I&amp;#8217;m sure there&amp;#8217;s
an easier way?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;I&amp;#8217;ve used http client a few times, it is pretty simple to
get up and running.  It&amp;#8217;s just the error handling that can take time, but
your use case any errors would just be a pass through.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div&gt;

&lt;div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'&gt;

&lt;p class=MsoNormal&gt;&lt;b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt;From:&lt;/span&gt;&lt;/b&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;'&gt; Stone, Timothy
[mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292669&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tstone@...&lt;/a&gt;] &lt;br&gt;
&lt;b&gt;Sent:&lt;/b&gt; Tuesday, November 10, 2009 5:08 PM&lt;br&gt;
&lt;b&gt;To:&lt;/b&gt; Stripes Users List&lt;br&gt;
&lt;b&gt;Subject:&lt;/b&gt; Re: [Stripes-users] RedirectResolution using POST&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&lt;span style='font-size:11.0pt;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;'&gt;Jocke,&lt;br&gt;
&lt;br&gt;
I personally would like to hear more about this solution and possibly see some
code samples.&lt;br&gt;
&lt;br&gt;
Generally speaking, I have found that many applications do not really correctly
implement GET and POST. Many leverage POST to circumvent GET limitations or
prevent information from being written to logs.&lt;br&gt;
&lt;br&gt;
The use of mod_rewrite + mod_proxy is really just masking the problem and
working around the specification, but I like the solution better than a
&amp;#8220;form shell&amp;#8221; that auto submits (for reasons of accessibility,
though those can be worked around by providing a button when Javascript is
disabled...).&lt;br&gt;
&lt;br&gt;
A controller solution is very intriguing as, while another specification
workaround, it is hidden from the view and the protocol layers preserving the
data being passed around.&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
TIm&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
On 11/10/09 2:15 AM, &amp;quot;Jocke Eriksson&amp;quot; &amp;lt;&lt;a href=&quot;jockeeriksson@msn.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jockeeriksson@...&lt;/a&gt;&amp;gt; wrote:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;'&gt;I
would go with the URL Connection class, this will give you the possibility to
implement failover when&lt;br&gt;
needed. &lt;br&gt;
&lt;br&gt;
&amp;gt; Date: Mon, 9 Nov 2009 19:54:48 +0100&lt;br&gt;
&amp;gt; From: &lt;a href=&quot;gk@karko.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gk@...&lt;/a&gt;&lt;br&gt;
&amp;gt; To: &lt;a href=&quot;stripes-users@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stripes-users@...&lt;/a&gt;&lt;br&gt;
&amp;gt; Subject: [Stripes-users] RedirectResolution using POST&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I'm integrating with an online payments service and would love to POST &lt;br&gt;
&amp;gt; to their URL instead of GETting it. Is it possible to do so using &lt;br&gt;
&amp;gt; RedirectResolution or some other means?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Best regards,&lt;br&gt;
&amp;gt; Grzegorz&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; ------------------------------------------------------------------------------&lt;br&gt;
&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day &lt;br&gt;
&amp;gt; trial. Simplify your report design, integration and deployment - and focus
on &lt;br&gt;
&amp;gt; what you do best, core application coding. Discover what's new with&lt;br&gt;
&amp;gt; Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;
&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt; Stripes-users mailing list&lt;br&gt;
&amp;gt; &lt;a href=&quot;Stripes-users@lists.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div class=MsoNormal align=center style='text-align:center'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;'&gt;

&lt;hr size=3 width=&quot;100%&quot; align=center&gt;

&lt;/span&gt;&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;'&gt;Hitta
kärleken! Klicka här Hitta en dator som passar dig! &amp;lt;&lt;a href=&quot;http://windows.microsoft.com/shop&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://windows.microsoft.com/shop&lt;/a&gt;&amp;gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;div class=MsoNormal align=center style='text-align:center'&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;'&gt;

&lt;hr size=3 width=&quot;95%&quot; align=center&gt;

&lt;/span&gt;&lt;/div&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:Consolas'&gt;------------------------------------------------------------------------------&lt;br&gt;
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day &lt;br&gt;
trial. Simplify your report design, integration and deployment - and focus on &lt;br&gt;
what you do best, core application coding. Discover what's new with&lt;br&gt;
Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span style='font-size:10.0pt;font-family:Consolas'&gt;&lt;br&gt;
&lt;/span&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;'&gt;-- &lt;br&gt;
&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co&quot;,&quot;serif&quot;;
color:#56517A'&gt;Timothy Stone&lt;/span&gt;&lt;span style='font-size:11.0pt;font-family:
&quot;Barclaycard Co&quot;,&quot;serif&quot;;color:#56517A'&gt; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:#56517A'&gt;
&amp;nbsp;&amp;nbsp;Application Developer Technical Lead&lt;br&gt;
Barclaycard &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#56517A'&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;Business Technology Group, Strategic
Development&lt;br&gt;
125 S. West Street &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:
&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;
font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:#56517A'&gt; &amp;nbsp;&amp;nbsp;Wilmington,
DE &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#56517A'&gt; &amp;nbsp;&amp;nbsp;19801&lt;br&gt;
USA &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#56517A'&gt; &amp;nbsp;&amp;nbsp;www.barclaycardus.com&lt;br&gt;
+1 302 255 8044 direct &lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#00A1E4'&gt;|&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;
color:#56517A'&gt; &amp;nbsp;&amp;nbsp;+1 410 441 9450 cell&lt;br&gt;
&amp;nbsp;&lt;br&gt;
COMPANY CONFIDENTIAL&lt;br&gt;
&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;'&gt;&lt;br&gt;
&lt;/span&gt;&lt;span style='font-size:16.0pt;font-family:Webdings;color:green'&gt;P&lt;/span&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Barclaycard Co Lt&quot;,&quot;serif&quot;;color:green'&gt;
Before printing this e-mail, or any other document, ask yourself whether you
need a hard copy&lt;/span&gt;&lt;span style='font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;'&gt;&lt;br&gt;
&lt;/span&gt;&lt;br clear=all&gt;
&lt;br&gt;
&lt;br&gt;
_______________________________________________________&lt;br&gt;
&lt;br&gt;
Barclays&lt;br&gt;
www.barclaycardus.com&lt;br&gt;
_______________________________________________________&lt;br&gt;
&lt;br&gt;
This e-mail and any files transmitted with it may contain confidential and/or
proprietary information. It is intended solely for the use of the individual or
entity who is the intended recipient. Unauthorized use of this information is
prohibited. If you have received this in error, please contact the sender by
replying to this message and delete this material from any system it may be on.
&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Stripes-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26292669&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Stripes-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/stripes-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/stripes-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/stripes-users-f16325.html&quot; embed=&quot;fixTarget[16325]&quot; target=&quot;_top&quot; &gt;stripes-users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/RedirectResolution-using-POST-tp26271747p26292669.html" />
</entry>

</feed>
