5 - Tuning the RPM Web Services runtime parameters

The default settings should be suitable for most deployments, however, the Web Services API can be tuned to your environment.

For a list of all the runtime parameters available, as well as their default values, please see this list

  1. Open the web.xml file which is located under <ORACLE_HOME>/j2ee/home/applications/rpmws/rpm-web-services-7.1.0.0/WEB-INF/xml
  2. For each one of the parameters you would like to customize, add a section as follows :
    	<env-entry>
    		<env-entry-name> variable name </env-entry-name>
    		<env-entry-type>java.lang.String</env-entry-type>
    		<env-entry-value> variable value </env-entry-value>
    	</env-entry>
      
    For example, to change the webServicesSecurityEnabled tunable, add a new section as follows :
    	<env-entry>
    		<env-entry-name>webServicesSecurityEnabled</env-entry-name>
    		<env-entry-type>java.lang.String</env-entry-type>
    		<env-entry-value>false</env-entry-value>
    	</env-entry>
      
    Note that all new entries you add must be located under the web-app xml tag.
  3. Restart your Oracle Application Server instance for the changes to be taken into account.