Use the modifySCAImportHttpBinding command
to change the attributes of an HTTP import binding.
Before you begin
The modifySCAImportHttpBinding command
is run using the AdminTask object of the wsadmin scripting client.
Use
the following command to list all the SCA administrative commands.
wsadmin> $AdminTask help SCAAdminCommands
Use
the following command to get detailed help on a particular command.
wsadmin> $AdminTask help command_name
Syntax
$AdminTask modifySCAImportHttpBinding { parameters }
If a parameter is changed at the binding scope,
the syntax should be: <bindingName>realValue</bindingName>
If a parameter is changed at the method scope,
the syntax should be: <methodName>realValue</methodName>
Purpose
The modifySCAImportHttpBinding command
changes the JNDI name of one or more of the resources associated with
an HTTP import binding.
- Command name
- modifySCAImportHttpBinding
- Target
- None.
- Result
- The following circumstances cause an SCACommandException to
be thrown:
- A resource of an invalid type is specified.
- A resource is specified that does not exist.
Parameters
- moduleName
- A mandatory, unmodifiable parameter that specifies the name of
the module to which the import binding belongs.
- import
- A mandatory, unmodifiable parameter that specifies the name of
the import.
- applicationName
- An optional, unmodifiable parameter that specifies the name of
the application.
- endpointURL
- An optional parameter that specifies the endpoint URL.
- endpointHttpMethod
- An optional parameter that specifies the endpoint URL method.
- endpointHttpVersion
- An optional parameter that specifies the endpoint HTTP version.
- authAlias
- An optional parameter that specifies the authentication alias
title.
- sslConfiguration
- An optional parameter that specifies the SSL configuration.
- transferEncoding
- An optional parameter that specifies the transfer encoding.
- contentEncoding
- An optional parameter that specifies the content encoding.
- httpProxyHost
- An optional parameter that specifies the HTTP proxy host.
- httpProxyPort
- An optional parameter that specifies the HTTP proxy port.
- httpNonProxyHosts
- An optional parameter that specifies the HTTP non-proxy hosts.
- httpProxyCredential-AuthAlias
- An optional parameter that specifies the HTTP proxy credential.
- httpsProxyHost
- An optional parameter that specifies the HTTP proxy host title.
- httpsProxyPort
- An optional parameter that specifies the HTTP proxy port title.
- httpsNonProxyHosts
- An optional parameter that specifies the HTTP non-proxy hosts
title.
- httpsProxyCredential-AuthAlias
- An optional parameter that specifies the HTTPS proxy credential.
- responseReadTimeout
- An optional parameter that specifies the response read timeout.
- connectionRetries
- An optional parameter that specifies the number of connection
retries.
Examples
At the binding
scope, change the number of connection retries of an HTTP import binding
called Import1 in a module called MyMod to 3.
wsadmin> $AdminTask modifySCAImportHttpBinding {-moduleName MyMod
-import Import1 -connectionRetries <Import1>3</Import1>}
At the method scope, change the number of connection
retries of an HTTP import binding called Import1 in a module called
MyMod to 3.
wsadmin> $AdminTask modifySCAImportHttpBinding {-moduleName MyMod
-import Import1 -connectionRetries <method1>3</method1>}