14 - Optionally tune 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 the directory you've specified in the second item of step 13.
  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 Weblogic instance for the changes to be taken into account.