Re: S2: HashMap - from jsp to action

2007-12-05 Thread Wes Wannemacher
Sure Martin, this link provides a good starting point - http://java.sun.com/products/jsp/reference/techart/unifiedEL.html -Wes On 12/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi Wes > > Is there a link which describes UEL for our own edification? > > Thanks/ > M- > -- Wesley Wannem

Re: S2: HashMap - from jsp to action

2007-12-05 Thread Wes Wannemacher
http://java.sun.com/products/jsp/reference/techart/unifiedEL.html That is the description of the UEL, https://issues.apache.org/struts/browse/WW-2213 That is where I discovered the symbol clash. What tipped me off is that you mentioned using the full @java.util.Hashmap@ notation and it worked.

Re: S2: HashMap - from jsp to action

2007-12-05 Thread Dave Newton
http://www.google.com/search?q=unified+expression+language --- J&M <[EMAIL PROTECTED]> wrote: > > Thanks for the reply. Very informative. I have not heard of UEL yet, can > you > send me some references. I know about about EL. I tried the escape as you > suggested. But this fails with no errors

Re: S2: HashMap - from jsp to action

2007-12-05 Thread
Thanks for the reply. Very informative. I have not heard of UEL yet, can you send me some references. I know about about EL. I tried the escape as you suggested. But this fails with no errors and no output. any suggestions? Wes Wannemacher wrote: > > My guess is that UEL is enabled in your ap

Re: S2: HashMap - from jsp to action

2007-12-05 Thread mgainty
Hi Wes Is there a link which describes UEL for our own edification? Thanks/ M- - Original Message - Wrom: FGGMEPYOQKEDOTWFAOBUZXUWLSZLKBRNVWW To: "Struts Users Mailing List" Sent: Wednesday, December 05, 2007 9:55 AM Subject: Re: S2: HashMap - from jsp to action > My

Re: S2: HashMap - from jsp to action

2007-12-05 Thread Wes Wannemacher
My guess is that UEL is enabled in your app server. The quick fix would be to escape the # character - list="\#{'foo':'foovalue','bar':'barvalue'}" The problem is that UEL and OGNL both use #{, but OGNL isn't evaluated until after UEL attempts to evaluate it. It's a known issue, but there is noth

Re: S2: HashMap - from jsp to action

2007-12-05 Thread
Can anyone explain to me why the following select tag statement fails: I get the following massive trace: (note that using the "advanced" version as stated on the opensymphony link below - with list="[EMAIL PROTECTED]@{'Regular' : 'Regular', 'Decaf': 'Decaf'}}" - does work ): avax.servlet.S

Re: S2: HashMap - from jsp to action

2007-08-09 Thread cilquirm
the way to construct a map in ognl is %{ key : value , key : vale } http://www.opensymphony.com/ognl/html/LanguageGuide/collectionConstruction.html#mapConstruction hth, -a Hartrich, James CTR USTRANSCOM J6 wrote: > > I'm iterating a collection (keys) from s:action to get corresponding >