Re: Using Expression Language (EL) To Access ActionSupport Class Properties

2009-05-04 Thread Musachy Barroso
using EL to access the stack/action is fine. musachy On Mon, May 4, 2009 at 3:48 PM, phillips1021 wrote: > > Martin thank you for the reply. > > Your idea: > > > > > does not work with the JSecurity hasAnyRoles tag. The Struts 2 property tag > and OGNL expresson do not work when placed as the

RE: Using Expression Language (EL) To Access ActionSupport Class Properties

2009-05-04 Thread phillips1021
Martin thank you for the reply. Your idea: does not work with the JSecurity hasAnyRoles tag. The Struts 2 property tag and OGNL expresson do not work when placed as the value for the name attribute of the above tag. Since I could not get a Struts 2 tag or OGNL expression to work for the na

RE: Using Expression Language (EL) To Access ActionSupport Class Properties

2009-05-04 Thread Martin Gainty
the default mechanism for passing information back and forth is string for more complex datatypes you're going to have to build the interface yourself assuming this is the method protected boolean[] hasRoles(List roleIdentifiers, AuthorizationInfo info) The v