Re: S2 Action Setter Not Called

2011-02-03 Thread Dave Newton
I can't make heads or tails of that. How about you get a "sanity check" version going first then revisit all that? Sounds like you changed several fundamental behaviors all at once without a safety net. Can you revert? Dave On Thu, Feb 3, 2011 at 7:31 PM, Rubens Gomes wrote: > I am still having

RE: S2 Action Setter Not Called

2011-02-03 Thread Rubens Gomes
I am still having issues with the action setters not being called. I have already spent several hours on this problem. Here is additional information: Struts 2 + Struts 2 struts2-convention-plugin version: 2.2.1.1 Absolutely *none* of my actions setters are called. This problem is happening

RE: Struts2 - Image Approval Process

2011-02-03 Thread CRANFORD, CHRIS
> On Thu, Feb 3, 2011 at 7:17 AM, eRobot wrote: > > Thats a good point Dave, I could create a separate app for this as > they will > > not need to see my web app, they only need to see the image and click > a > > radio button to approve or not. > > > > Would you recommend a login approach or some k

RE: Struts2 - Image Approval Process

2011-02-03 Thread CRANFORD, CHRIS
> I need to allow a user to log in to my struts2 web app and approve an > image. They can only see their images pending approval and should not > have access to the rest of the site. We implement this concept by simply using role-based security. Users who are allowed to approve or deny images or

RE: Struts2 - Image Approval Process

2011-02-03 Thread Martin Gainty
if users are aggregated to a group and the groups can then either disable/enable access to specific view components you may want to consider a portal manager system such as jetspeed http://portals.apache.org/jetspeed-2 feel free to ping users-list for portal like authentication mechanisms Mar

Re: Struts2 - Image Approval Process

2011-02-03 Thread eRobot
what about something like this: Create a token using a UUID and add it to a database along with creation time and what the token should grant access to. Send an email to the user with the url http://www.mysite.com/page?token=zxczxczxczxczxc When the user navigates to the url, create new sessio

Re: Struts2 - Image Approval Process

2011-02-03 Thread Dave Newton
On Thu, Feb 3, 2011 at 7:17 AM, eRobot wrote: > Thats a good point Dave, I could create a separate app for this as they will > not need to see my web app, they only need to see the image and click a > radio button to approve or not. > > Would you recommend a login approach or some kind of temporary

Re: Struts2 - Image Approval Process

2011-02-03 Thread eRobot
Thats a good point Dave, I could create a separate app for this as they will not need to see my web app, they only need to see the image and click a radio button to approve or not. Would you recommend a login approach or some kind of temporary url. I need security but would like to avoid issuing

Re: Struts2 - Image Approval Process

2011-02-03 Thread Dave Newton
On Thu, Feb 3, 2011 at 6:10 AM, eRobot wrote: > I need to allow a user to log in to my struts2 web app and approve an image. > They can only see their images pending approval and should not have access > to the rest of the site. > > This is to replace an old process of emailing the user images pen

Struts2 - Image Approval Process

2011-02-03 Thread eRobot
I need to allow a user to log in to my struts2 web app and approve an image. They can only see their images pending approval and should not have access to the rest of the site. This is to replace an old process of emailing the user images pending approval. Please! Does anyone have any ideas abou

Re: S2 Action Setter Not Called

2011-02-03 Thread Dave Newton
We'll need more info. Looks like a validation error so far. Dave On Thu, Feb 3, 2011 at 1:31 AM, Rubens Gomes wrote: > Hello, > > I am running Struts 2 (version 2.2.1.1) and the struts2-convention-plugin to > annotate all Actions. > > My action parameter setters are not being called by the > P