Re: [TRINIDAD] Please help with dependent components

2010-02-16 Thread Jean-Noël Colin
Hi Andrew, Thanks for your help, I'll try this asap Regards Jean-Noel On 16 Feb 2010, at 00:24, Andrew Robinson wrote: Option 1) Instead of using entryBean.subProjects to check for disabled, why not, since you are already using component binding, just set the component disabled attribute

[ANN] Release of Apache MyFaces Trinidad's Maven plugins (1.2.12)

2010-02-16 Thread Matthias Wessendorf
Hi, The Apache MyFaces community is pleased to announce its 1.2.12 release of the Apache MyFaces Trinidad Maven2 plugins. These Maven2 plugins have been deployed to the Apache Maven2 repository. They are mirrored by ibiblio as well. release notes:

[ANN] Release of Apache MyFaces Trinidad's Maven plugins (2.0.1)

2010-02-16 Thread Matthias Wessendorf
Hi, The Apache MyFaces community is pleased to announce its 2.0.1 release of the Apache MyFaces Trinidad Maven2 plugins. This release contains support for the new JSF 2.0 related API/metadata. These Maven2 plugins have been deployed to the Apache Maven2 repository and they should be mirrored by

[Announce] Release of Apache MyFaces Trinidad 2.0.0-alpha-2

2010-02-16 Thread Matthias Wessendorf
The Apache MyFaces Trinidad team is pleased to announce the release of Apache MyFaces Trinidad Core 2.0.0-alpha-2. Apache MyFaces Trinidad 2 is a JavaServer(tm) Faces 2.0 component library. Note: This is the second release of the Apache MyFaces Trinidad 2 series and it is an alpha relases.

[Announce] Release of Apache MyFaces Trinidad 1.0.12

2010-02-16 Thread Matthias Wessendorf
The Apache MyFaces Trinidad team is pleased to announce the release of Apache MyFaces Trinidad Core 1.0.12. Apache MyFaces Trinidad is a JavaServer(tm) Faces 1.1 component library. Trinidad Core 1.0.12 is available in both binary and source distributions: *

[Trinidad] applet viewState

2010-02-16 Thread baeschtu baeschtu
Hi, I have an applet in a trinidad web page like this, next to it is a small tr:form f:verbatim applet code=UploadApplet.class archive=upload/upload-applet.jar width=500 height=200 /applet /f:verbatim tr:form tr:commandButton text=done action=#{myBacking.done}/ /tr:form

Re: [Trinidad] applet viewState

2010-02-16 Thread Jakob Korherr
Hi, If you submit the form immediatly you don't get the ViewExpiredException? Some more infos about your system would also be nice, e.g. what JSF and Trinidad version you are using. Regards, Jakob 2010/2/16 baeschtu baeschtu baesc...@gmail.com Hi, I have an applet in a trinidad web page like

Re: [Trinidad] Help with autoSubmit

2010-02-16 Thread Jeanne Waldman
This looks ok to me. Can you try simplifying the test case, like 1. always have the second selectOneChoice enabled 2. try seeing what immediate does 3. Yes, the projectChangeListener should not be needed. 4. get rid of all fields but the not working selectOneChoice. does that work? Jean-Noël

Re: [Trinidad] Help with autoSubmit

2010-02-16 Thread Jeanne Waldman
Oh, I see you probably got your answer in your other email post. Jeanne Waldman wrote, On 2/16/2010 10:35 AM PT: This looks ok to me. Can you try simplifying the test case, like 1. always have the second selectOneChoice enabled 2. try seeing what immediate does 3. Yes, the projectChangeListener

Re: [Trinidad] applet viewState

2010-02-16 Thread baeschtu baeschtu
Hi Jakob, yes when I submit the form immediatly I don't get the ViewExpiredException. I use this versions: Myfaces 1.2.8 Trinidad 1.2.5 Regards Bastian 2010/2/16 Jakob Korherr jakob.korh...@gmail.com Hi, If you submit the form immediatly you don't get the ViewExpiredException? Some more

Re: [Trinidad] applet viewState

2010-02-16 Thread Jakob Korherr
OK. The problem seems to have to do something with problems on state-saving. This is the only place where a ViewExpiredException is thrown. Are you using client-side state saving? have you tried using server-side state saving? Regards, Jakob 2010/2/16 baeschtu baeschtu baesc...@gmail.com Hi

Re: [Trinidad] applet viewState

2010-02-16 Thread baeschtu baeschtu
I just have seen this error log in the catalina.out. I guess this happens when I access a lib on the file system. 20:33:36,106 WARN FacesServlet:164 - Someone is trying to access a secure resource : /META-INF/services/javax.xml.parsers.DocumentBuilderFactory remote address is 127.0.0.1 remote

Re: [Trinidad] applet viewState

2010-02-16 Thread Jakob Korherr
Does your applet access your webapp? 2010/2/16 baeschtu baeschtu baesc...@gmail.com I just have seen this error log in the catalina.out. I guess this happens when I access a lib on the file system. 20:33:36,106 WARN FacesServlet:164 - Someone is trying to access a secure resource :

[Trinidad] Backing Bean Caching issue

2010-02-16 Thread baeschtu baeschtu
I have two myfaces pages with a backing bean each. Both of them have a spring service injected to get access to the hibernate dao's. They are related 1-N So I have a f:selectItems combobox in one of them served by a method like this in the backinbean. private ListEntity entities; ..