Webserver configuration includes the following activities. See the Configure the Web Server section in the OFS AAI Release 8.1.0.0.0 Installation and Configuration Guide to complete these procedures.
Additionally, to Configure Tomcat for User Group Authorization, Data Mapping, and Disable WADL for the Web Service, see the section that appears later in this topic.
· Configure WebSphere Application Server for Application Deployment
§ Create a New Profile in WebSphere
§ Manage IBM WebSphere SDK Java Technology Edition Versions
§ Manage Applications in WebSphere
§ Configure WebSphere Application Server to Initialize Filters before Initializing Load-On Startup Servlets
§ Configure WebSphere Application Server Persistence to JPA Specification 2.0
§ Configure WebSphere Application Server to Use a Load Balancer or Proxy Server
§ Delete WebSphere Profiles
§ Configure WebSphere HTTPS
§ Configure WebSphere Memory Settings
· Configure WebLogic for Application Deployment
§ Create Domain in WebLogic Server
§ Delete Domain in WebLogic
§ Configure WebLogic Memory Settings
· Configure Apache Tomcat Server for Application Deployment
§ Tomcat User Administration
§ Configure Servlet Port
§ Configure SSL Port
§ Configure Apache Tomcat Memory Settings
§ Configure Tomcat for User Group Authorization
§ Uninstall WAR Files in Tomcat
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.