Sir
My application run perfectly on WLS .but when I deployed on glassfish 4.1 its execute button is not working properly.
The code of my commit button is
public void saveUpdateButtonCpv(ActionEvent actionEvent) {
// Add event code here...
BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();
OperationBinding commit = bindingsBC.getOperationBinding("Commit");
commit.execute();
OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
operationBinding.execute();
DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetCpvView1Iterator");// write iterator name from pageDef.
iter.getViewObject().executeQuery();
}
The other information are
My dev ver is 12.2.1
The glassfish log is

Please help.
Regards