setDefaultSIBWSOutboundPort command
Use the setDefaultSIBWSOutboundPort command to set the default service integration bus-enabled web services outbound port.
To run the command, use the AdminTask object of the wsadmin scripting client.
(iSeries) (iSeries) The wsadmin scripting client is run from Qshell. (iSeries) See Configure Qshell to run WebSphere scripts .
Command-line help is provided for service integration bus commands:
- For a list of the available bus-enabled web services commands, plus a brief description of each command, enter at the wsadmin prompt:
print AdminTask.help('SIBWebServices')
- For overview help on a given command, enter at the wsadmin prompt:
print AdminTask.help('command_name')
After using the command, save the changes to the master configuration using the following command:
AdminConfig.save()
This command updates the default outbound port for an outbound service.
Target object
ObjectName of the OutboundService object whose default port is to be updated.
The default port is updated for the OutboundService, and the default routing on the service destination is updated to point at the port destination.
Required parameters
- -name
- The name of the port to be set as the default.
Conditional parameters
None.
Optional parameters
None.
Example
- Use Jython:
AdminTask.setDefaultSIBWSOutboundPort(outService, ["-name", "MyServiceSoap"])- Use Jacl:
$AdminTask setDefaultSIBWSOutboundPort $outService {-name "MyServiceSoap"}