Hello,
I use JSF and custom converter for user input validation.
I update JSF to 2.3 and faced with the issue that validator's code stop receiving values, that defined via EL

<myConverter
beanName="myBean"
myName="#{item.Name}"
limitation="#{item.limitation}"
valid="#{item.valid}" />

here is "myBean" it's a constant and passed Ok. But myName this is EL expression and my code get an empty value.
Does anybody else faced with this issue? How it could be fixed?