I'm working on a project with Primefaces 3.3.1, java 1.6.0_33 and glassfish 3.1.2. We're running the project on Mac Os, Windows and Linux, but with Mac OS in every page that has fieldsets an exception is thrown, as followed:
GRAVE: Error Rendering View[/pages/system/storeManager.xhtml]
java.lang.IllegalArgumentException: wrong number of arguments
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at javax.el.BeanELResolver.invokeMethod(BeanELResolver.java:779)
at javax.el.BeanELResolver.invoke(BeanELResolver.java:528)
at javax.el.CompositeELResolver.invoke(CompositeELResolver.java:257)
at com.sun.el.parser.AstValue.getValue(AstValue.java:134)
at com.sun.el.parser.AstValue.getValue(AstValue.java:183)
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:224)
at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)
at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109)
at javax.faces.component.ComponentStateHelper.eval(ComponentStateHelper.java:194)
at org.primefaces.component.fieldset.Fieldset.getLegend(Fieldset.java:101)
at org.primefaces.component.fieldset.FieldsetRenderer.encodeLegend(FieldsetRenderer.java:119)
at org.primefaces.component.fieldset.FieldsetRenderer.encodeMarkup(FieldsetRenderer.java:69)
at org.primefaces.component.fieldset.FieldsetRenderer.encodeEnd(FieldsetRenderer.java:45)
...
As you can see, the first line that references primefaces is related to the fieldset component:
at org.primefaces.component.fieldset.Fieldset.getLegend(Fieldset.java:101)
Here is the code of storeManager.xhtml:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:body>
<ui:composition template="/WEB-INF/template/basicManager.xhtml">
<ui:param name="controller" value="#{storeManagerController}"/>
<ui:define name="breadcrumb">
<h:outputText value="#{label.SYSTEM}"/>
<h:outputText value="#{label.BREADCRUMB_SEPARATOR}"/>
<h:outputText value="#{label.STORES}"/>
</ui:define>
<ui:define name="title">
#{label.ADD}
</ui:define>
<ui:define name="scripts">
<script type="text/javascript">
jQuery(function(){
setSelectedMenu("system");
setSelectedSubMenu("system-store");
});
</script>
</ui:define>
<ui:define name="formCrud">
<p:fieldset legend="#{label.STORE_INFO}" id="storeInfoBlock">
<h:panelGrid columns="2">
<h:outputText value="#{label.NAME}: *"/>
<h:inputText id="name" value="# {storeManagerController.entity.name}"/>
</h:panelGrid>
<h:panelGrid columns="6">
<h:outputText value="#{label.STREET}: *"/>
<h:inputText id="street" value="#{storeManagerController.entity.street}"/>
<h:outputText value="#{label.NUMBER}: *"/>
<h:inputText id="number" value="#{storeManagerController.entity.number}" onblur="mascara(this, soNumeros, event)" onkeydown="mascara(this, soNumeros, event)"
styleClass="maskedInput" autocomplete="off"/>
<h:outputText value="#{label.COMPLEMENT}: "/>
<h:inputText id="complement" value="#{storeManagerController.entity.complement}"/>
<h:outputText value="#{label.NEIGHBORHOOD}: *"/>
<h:inputText id="neighborhood" value="#{storeManagerController.entity.neighborhood}"/>
<h:outputText value="#{label.CITY}: *"/>
<h:inputText id="city" value="#{storeManagerController.entity.city}"/>
<h:outputText value="#{label.PROVINCE}: *"/>
<h:selectOneMenu id="province" value="#{storeManagerController.entity.province}">
<f:selectItems value="#{storeManagerController.provinces}" />
</h:selectOneMenu>
<h:outputText value="#{label.ZIP_CODE}: *"/>
<h:inputText id="zipCode" value="#{storeManagerController.entity.zipCode}"/>
<h:outputText value="#{label.PHONE}: *"/>
<h:inputText id="phone" value="#{storeManagerController.entity.phone}" onblur="mascara(this, telefone, event)" onkeydown="mascara(this, telefone, event)"
styleClass="maskedInput" autocomplete="off"/>
<h:outputText value="#{label.EMAIL}: *"/>
<h:inputText id="mail" value="#{storeManagerController.entity.mail}"/>
</h:panelGrid>
<p:messages for="storeInfoBlock" showSummary="true" showDetail="false"/>
</p:fieldset>
</ui:define>
<ui:define name="sidePanel">
<ui:include src="systemSidePanel.xhtml" />
</ui:define>
</ui:composition>
</h:body>
</html>
The pages that doesn't have fieldsets are rendered normally, and when the project is running under Windows or Linux everythings works nicely...
Thanks in advance!