Unable to access flowable apps in WildFly

" What do you mean with your comment in Flowable-IDM Error with Wildfly and MSSQL [Resolved]."

As I saw it as resolved, so replied to check what configuration changes are required

“where did you remove the spring dependencies from? The flowable-idm.war or Wildfly?”

  1. removed spring dependencies from the flowable-idm.war\WEB-INF\lib\ folder
  2. created a module as org/flowable/common and included following jars
<?xml version="1.0" encoding="UTF-8"?>

< module xmlns=“urn:jboss:module:1.1” name=“org.flowable.common”>
< resources>
< resource-root path=“flowable-spring-6.3.1.jar”/>
< resource-root path=“flowable-spring-common-6.3.1.jar”/>
< resource-root path=“commons-logging-1.1.1.jar”/>
< resource-root path=“sqljdbc4.jar”/>
< /resources>
< dependencies>
< module name=“org.flowable.common” export=“true”/>
< module name=“org.springframework.spring” export=“true”/>
< module name=“javax.servlet.api” export=“true”/>
< module name=“javaee.api” export=“true”/>
< module name=“javax.api” export=“true”/>
< / dependencies>
</ module>

  1. Updated the jboss-deployment-structure.xml with org/flowable/common dependencies
    < dependencies>
    < module name=“org.flowable.common” export=“true”/>
    </ dependencies>

To check if their is security issue , added below entry in standalone.xml

  1. included
    < security-domains>…
    < login-module code=“UsersRoles” flag=“required”/>"

But still results in Forbidden error