Re: ViewExpiredException: MyFaces PrimeFaces

2010-09-02 Thread SANTINI, Rafael
: if (!isMacEqual) { throw new ViewExpiredException(); } Can you try your code with MyFaces 2.0.0, please? We don't have the MAC check in that version. Regards, Jakob 2010/9/1 SANTINI, Rafael raf...@santini.eti.br Hi Leonardo, Follow the complete log. I couldn't find any wrong. 01/09/2010

Re: ViewExpiredException: MyFaces PrimeFaces

2010-09-02 Thread SANTINI, Rafael
authentication code (MAC) somehow fails, because the first ViewExpiredException comes from this code: if (!isMacEqual) { throw new ViewExpiredException(); } Can you try your code with MyFaces 2.0.0, please? We don't have the MAC check in that version. Regards, Jakob 2010/9/1 SANTINI, Rafael

Re: ViewExpiredException: MyFaces PrimeFaces

2010-09-02 Thread SANTINI, Rafael
=2631p=12657hilit=burns#p12657 Bruno On 2 September 2010 15:33, SANTINI, Rafael raf...@santini.eti.br wrote: Hi Leonardo, I'm getting the following exception with theses two parameters: context-param param-nameorg.apache.myfaces.MAC_SECRET/param-name param-valueen05kt/param

Re: ViewExpiredException: MyFaces PrimeFaces

2010-09-01 Thread SANTINI, Rafael
). [1]http://primefaces.prime.com.tr/forum/ Cheers, Ali On Tue, Aug 31, 2010 at 6:12 PM, SANTINI, Rafael raf...@santini.eti.br wrote: Hi, I'm trying to get PrimeFaces AutoComplete component to work with MyFaces. I have tried with MyFaces 1.2.9 PrimeFaces 1.1, MyFaces

ViewExpiredException: MyFaces PrimeFaces

2010-08-31 Thread SANTINI, Rafael
Hi, I'm trying to get PrimeFaces AutoComplete component to work with MyFaces. I have tried with MyFaces 1.2.9 PrimeFaces 1.1, MyFaces 2.0.1 PrimeFaces 2.1 and MyFaces 2.0.1 PrimeFaces 2.2.M1. In the all cases, the fowlloing exception is raised: 31/08/2010 11:51:32

Sandbox

2010-08-30 Thread SANTINI, Rafael
Hi, Where can I download the Sandbox components? Thanks, Rafael Santini

Lifecyle: t:saveState

2010-01-20 Thread SANTINI, Rafael
Hi, I'm trying to access a property in a restore view phase listener where this property was saved with t:saveState. In what phase the t:saveState is restored? Thanks, Rafael Santini

t:navigationMenuItem f:setPropertyActionListener

2010-01-04 Thread SANTINI, Rafael
Hi, happy new year! Does f:setPropertyActionListener works inside t:navigationMenuItem with MyFaces Core 1.2.8, Tomahawk 12-1.1.9 and Facelets 1.1.14? Thanks, Rafael Santini

This is a bug?

2009-12-16 Thread SANTINI, Rafael
Hi, I can't figure out why value is not valid is throwed. I'm using myfaces-core-1.1.7. Test case: h:form h:outputText value=Option:/ h:selectOneMenu value=#{bean.option} id=option f:selectItem itemValue=A itemLabel=A/ f:selectItem itemValue=B itemLabel=B/ f:selectItem itemValue=C

Re: This is a bug?

2009-12-16 Thread SANTINI, Rafael
Hi Jakob, My domain class uses Character. How can I generate values of type Character in f:selectItem? Thanks, Rafael Santini - Original Message - From: Jakob Korherr jakob.korh...@gmail.com To: MyFaces Discussion users@myfaces.apache.org Cc: SANTINI Rafael raf...@santini.eti.br

Re: This is a bug?

2009-12-16 Thread SANTINI, Rafael
Hi Mike, The test case works with Sun RI 1.2. So, I think that it is a bug. Thanks, Rafael Santini - Original Message - From: Mike Kienenberger mkien...@gmail.com To: MyFaces Discussion users@myfaces.apache.org Cc: SANTINI Rafael raf...@santini.eti.br Sent: Wednesday, December 16

Re: This is a bug?

2009-12-16 Thread SANTINI, Rafael
To: MyFaces Discussion users@myfaces.apache.org Cc: SANTINI Rafael raf...@santini.eti.br Sent: Wednesday, December 16, 2009 10:38 AM Subject: Re: This is a bug? Hi, +1 for your suggestion, mike! To generate a Character value in f:selectItem use #{'A'} for 'A' and #{'B'} for 'B' respectively. I just

Rendered Property

2009-07-21 Thread SANTINI, Rafael
Hi, In the following code, the last two components are rendered on the condition #{bean.campo1 != null}. When the bean.campo1 is different that null, they are displayed. But, when the last button is clicked, the testar method is not invoked. What I'm missing? h:messages/ h:form h:inputText

Re: Rendered Property

2009-07-21 Thread SANTINI, Rafael
Property During the restore view tour managed bean might return false, so JSF cannot bind the action to the commandbutton. Is it a problem is you use the disabled attribute instead of the rendered attribute? -Original message- From: SANTINI, Rafael raf...@santini.eti.br Sent: Tue 21-07

Re: Rendered Property

2009-07-21 Thread SANTINI, Rafael
The problem was solved putting t:saveState value=#{bean.campo1}/. - Original Message - From: SANTINI, Rafael raf...@santini.eti.br To: users@myfaces.apache.org Sent: Tuesday, July 21, 2009 10:31 AM Subject: Rendered Property Hi, In the following code, the last two components

t:selectOneMenu: value is not a valid option

2009-07-21 Thread SANTINI, Rafael
Hi, I can't figure out why the following code results in value is not a valid option: h:messages/ h:form t:selectOneMenu value=#{bean.opcao} id=opcao f:selectItem itemLabel=Opção 1 itemValue=1/ f:selectItem itemLabel=Opção 2 itemValue=2/ f:selectItem itemLabel=Opção 3 itemValue=3/

Re: t:selectOneMenu: value is not a valid option

2009-07-21 Thread SANTINI, Rafael
, your itemValues are Strings, your bean expect Integer. you can change the getter and setter to accept and return Strings or try itemValue=#{1}, you may need to change from Integer to Number than. Regards, Volker 2009/7/21 SANTINI, Rafael raf...@santini.eti.br: Hi, I can't figure out why

Re: t:selectOneMenu: value is not a valid option

2009-07-21 Thread SANTINI, Rafael
, your itemValues are Strings, your bean expect Integer. you can change the getter and setter to accept and return Strings or try itemValue=#{1}, you may need to change from Integer to Number than. Regards, Volker 2009/7/21 SANTINI, Rafael raf...@santini.eti.br: Hi, I can't figure out why

Re: t:selectOneMenu: value is not a valid option

2009-07-21 Thread SANTINI, Rafael
bean expect Integer. you can change the getter and setter to accept and return Strings or try itemValue=#{1}, you may need to change from Integer to Number than. Regards, Volker 2009/7/21 SANTINI, Rafael raf...@santini.eti.br: Hi, I can't figure out why the following code results in value

[Tomahawk] pannelTabbedPane

2009-03-26 Thread SANTINI, Rafael
Hi, In the action bean, how can I determine what is the selected tab? Thanks, Rafael Santini

commandButton: onclick: disable

2009-02-16 Thread SANTINI, Rafael
Hi, Why when onclick=this.disabled=true; return true in a commandButton the action is not executed? I'm trying disable the button after a click. Thanks, Rafael Santini

UNDEPLOY: Tomcat does not delete tomahawk-1.1.6.jar

2008-10-02 Thread SANTINI, Rafael
Hi, When an application is undeployed, the tomahawk-1.1.6.jar is not deleted in WEB-INF\lib. Why this occurs? Thanks, Rafael Santini

PARTIAL_STATE_SAVING_METHOD

2008-08-19 Thread SANTINI, Rafael
Hi, I'm getting No context init parameter 'javax.faces.PARTIAL_STATE_SAVING_METHOD' found; no partial state saving method defined, assuming default partial state saving method off., after update MyFaces Core from 1.1.4 to 1.1.6. What means? Thanks, /* * Rafael Santini *