This section applies only if the Web Application Server Type is Tomcat.
Users with System Authorization Roles can access User Group Authorization. However, to make it available on the Tomcat Web Server, you have to perform the following configuration steps:
1. Navigate to the $FIC_WEB_HOME/webroot/WEB-INF/ Directory and open the web.xml File.
2. Enter the following in the web.xml File.
<init-param>
<param-name>mappedfile</param-name>
<param-value>false</param-value>
</init-param>
3. To disable the WADL for the Web Service, navigate to the following snippet in the web.xml file.
<servlet>
<servlet-name>CommonRESTServlet</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>com.ofs.fsapps.commonapps.util.ApplicationResourceConfig</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
4. Add the following snippet before the <load-on-startup>1</load-on-startup> Attribute:
<init-param>
<param-name>jersey.config.server.wadl.disableWadl</param-name>
<param-value>true</param-value>
</init-param>
5. Save and close the file.
6. If the Tomcat Server is already running, it requires a re-start after the preceding configuration is done.