t:saveState works great ... except when I use h:outputLink

2007-01-30 Thread Dick Starr
I need to save separate state information for each open Firefox tab. Since Firefox shares the same session between all tabs I need to dream up another way besides using session. I am using Firefox 2.0. I have been experimenting with t:saveState and find it works great when I submit a form and

Oracle ADF and Shale tiles/validator

2007-01-30 Thread Adrian Gonzalez
Hello, Has anyone got running JSF application with shale Tiles or shale validator AND Oracle ADF ? I've got an application running with Shale View / Shale Tiles / Shale Validator, Myfaces 1.1.4 and Tomahawk 1.1.3 (jsp rendering engine). It's running on Websphere 6.0 (Jdk 1.4, J2EE 1.3,

Re: t:saveState works great ... except when I use h:outputLink

2007-01-30 Thread Craig McClanahan
On 1/30/07, Dick Starr [EMAIL PROTECTED] wrote: I need to save separate state information for each open Firefox tab. Since Firefox shares the same session between all tabs I need to dream up another way besides using session. I am using Firefox 2.0. I have been experimenting with t:saveState

Re: Need help with SCXML transition cond syntax.

2007-01-30 Thread Rahul Akolkar
On 1/30/07, Paul Spencer [EMAIL PROTECTED] wrote: Version 1.1.0-SNAPSHOT I would like a transition to be selected when a bean's field is not empty. If the field is an empty string, , or null I do not want the transition executed. Below is the syntax in JSF EL. #{not empty

RE: saveState works great ... except when I use h:outputLink - solved

2007-01-30 Thread Dick Starr
Thank you! This h:commandLink works: ... h:form h:outputText value=Test2 stateBean = #{stateBean}, #{stateBean.logonName}/ h:commandButton action=#{testTestBean.submit} value=Submit/ h:commandLink action=#{testTestBean.submit} value=Test3/ /h:form Dick -Original Message-

My exception handling is broken

2007-01-30 Thread Ingo Düppe
Hi, I guess I missed some changes in shale 1.0.4. I override the DefaultExceptionHandling so that my backing bean can throw to types of exceptions one of my ApplicationExceptions and the unchecked SystemExceptions. These two types were handled by the DefaultExceptionHandler. For instance,

Re: My exception handling is broken

2007-01-30 Thread Veit Guna
Hi. I encountered the same problem. I started development with shale-1.0.4-SNAPHSOT a while ago and wrote my own ExceptionHandler, too. That worked so far. 3 weeks ago I upgraded to 1.0.4 and for example acegi exceptions didn't get propagated anymore to its ExceptionFilter. At this time I

Re: Oracle ADF and Shale tiles/validator

2007-01-30 Thread Matthias Wessendorf
I saw you are using the Spring CharacterEncodingFilter. In Trinidad we saw issues when that one is in front of the Trinidad (Adf Faces) Filter I think your issue is related to the ordering of the filters. -Matthias