What I do is pass no value in the fields and send to give the error message of the required fields and then I pass values in the fields and sending again. Works in tomcat, glassfish in the request is not sent. Does anyone know what might be happening?
Picture of what happens, error on console javascript
I really don't know what happening, anyone knows? I using Tomcat 7 and Glassfish 3, Primefaces 3.4.2 e Primefaces Extensions 0.6.2. in a .ear Enterprise Project.
:===============: Supplement to enhance understanding. :===============:
Hello guys, this problem is difficult to solve then after searching elsewhere I saw (not sure where) that could be a problem in my project dependencies. So I decided to take the example of primefaces site and reproduce it in three perspectives.
- Running with Tomcat (Worked)
- Running with Glassfish (Worked)
- Running with Glassfish in my project (Not Worked)
On 1 and 2, just did a ctrl + C / ctrl + V of primefaces site example, in this way:
index.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 lang="pt-br"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<f:view>
<h:head/>
<h:body>
<h:form id="form">
<p:panel id="panel" header="New Person">
<p:messages id="msgs"/>
<h:panelGrid columns="3">
<h:outputLabel for="firstname" value="Firstname: *" />
<p:inputText id="firstname" value="#{testMB.name}" required="true" label="Firstname">
<f:validateLength minimum="2" />
</p:inputText>
<p:message for="firstname" display="icon"/>
<h:outputLabel for="surname" value="Surname: *" />
<p:inputText id="surname" value="#{testMB.name}" label="Surname" required="true">
<f:validateLength minimum="2" />
<p:ajax update="msgSurname" event="keyup" />
</p:inputText>
<p:message for="surname" id="msgSurname" display="icon"/>
</h:panelGrid>
<p:commandButton id="btn" value="Save" update="panel" actionListener="#{testMB.save(actionEvent)}"/>
</p:panel>
</h:form>
</h:body>
</f:view>
</html>
TestManagedBean.java:
@ManagedBean(name="testMB")
@RequestScoped
public class TestManagedBean
{
private String name;
private String surname;
public String getName()
{
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getSurname() {
return surname;
}
public void setSurname(String surname) {
this.surname = surname;
}
public void save(ActionEvent actionEvent) {
addMessage(FacesMessage.SEVERITY_INFO, "TEST: " + this.name);
}
public void addMessage(FacesMessage.Severity s, String summary) {
FacesMessage message = new FacesMessage(s, summary, null);
FacesContext.getCurrentInstance().addMessage(null, message);
}
}
At 3, I did likewise, but by to be using the architecture planned, is using security filters of shiro, facelets, layout primefaces extensions, etc... I checked the shiro and no filter is preventing something, other dependencies also have looked and what I found is that in the ejb module I declare the primefaces (because I'm using the SortOrder model class of primefaces) and web module also declare the primefaces and primefaces extensions.
Had the project dependancy something to do with the problem? It would be more appropriate to remove the dependence of primefaces in ejb module and declare the primefaces only in web module? (I tried here but the web module can see the ejb module but the reverse does not happen, how can I do that?)
Thanks everyone and sorry for my english, I'm Brazilian.