Posts

Joget || WildFly issue

In this post; I'll explain issues we have faced while integrating  Joget  workflow with wildfly application server. Joget is an open source framework to build dynamic forms and manage it throw its workflow engine. By default Joget comes with Apache tomcat application server and all functionality works perfectly, when trying to deploy joget  to wildfly application server, deployment failed, and below error appears in log. META-INF/valang.tld contains invalid body-content value And to fix this issue:- Open jw.war and locate spring-modules-validation-0.8.jar Open spring-modules-validation-0.8.jar Modify the below values on META-INF/valang.tld <body-content> None </body-content> To be  <body-content> empty </body-content>   where the "None"  value  is not valid.  Finally redeploy jw.war 

Joget || Hibernate issue with Oracle Database

In this post; I'll explain issues we have faced while integrating Joget workflow with oracle database. Joget is an open source framework to build dynamic forms and manage it throw its workflow engine. By default Joget comes with MySql database and all functionality works perfectly, after  migrating MySql to Oracle database by following steps mentioned in Joget documentation , we faced below issues:- SQL script provided missed some columns, and we have to add them manually. Form submission not working for Forms contains more than one elements. This post will explain in details investigation results for second issue. By checking logs we found below exception ERROR 11 Apr 2017 10:36:45 org.joget.apps.form.service.FormService - Error executing store binder org.hibernate.exception.SQLGrammarException: could not extract ResultSet at org.hibernate.exception.internal.SQLExceptionTypeDelegate.convert(SQLExceptionTypeDelegate.java:80) ................................... at ...