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.
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:-
<body-content>None</body-content> To be <body-content>empty</body-content>
where the "None" value is not valid.
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
Comments
Post a Comment