You can use the Jython or Jacl scripting languages to manage proxy configurations. Use the commands and parameters in the ProxyManagement group to configure proxy servers for Web modules.
Target object
Specify the deployment object that represents the application for which the system creates the Web module proxy configuration.
Required parameters
Optional parameters
Examples
Batch mode example usage:
$AdminTask createWebModuleProxyConfig myApplication {-deployedObjectProxyConfigName MyWebModule -enableProxy true -transportProtocol HTTPS}
AdminTask.createWebModuleProxyConfig('myApplication', '[-deployedObjectProxyConfigName MyWebModule -enableProxy true -transportProtocol HTTPS]')
AdminTask.createWebModuleProxyConfig(myApplication, ['-deployedObjectProxyConfigName', 'MyWebModule', '-enableProxy', 'true', '-transportProtocol', 'HTTPS'])
Interactive mode example usage:
$AdminTask createWebModuleProxyConfig {-interactive}
AdminTask.createWebModuleProxyConfig('-interactive')
Target object
Specify the deployment object that represents the application from which the system deletes the Web module proxy configuration.
Required parameters
Optional parameters
NoneSample output
The command does not return output.
Examples
Batch mode example usage:
$AdminTask deleteWebModuleProxyConfig myApplication {-deployedObjectProxyConfigName MyWebModule}
AdminTask.deleteWebModuleProxyConfig('myApplication', '[-deployedObjectProxyConfigName MyWebModule]')
AdminTask.deleteWebModuleProxyConfig(myApplication, ['-deployedObjectProxyConfigName', 'MyWebModule'])
Interactive mode example usage:
$AdminTask deleteWebModuleProxyConfig {-interactive}
AdminTask.deleteWebModuleProxyConfig('-interactive')