Use the addSIBWSInboundPort command to add a service integration bus-enabled web services inbound port.
To run the command, use the AdminTask object of the wsadmin scripting client.
The wsadmin scripting client is run from Qshell. For more information, see Configuring Qshell to run WebSphere® Application Server scripts.
print AdminTask.help('SIBWebServices')
print AdminTask.help('command_name')
AdminConfig.save()
This command adds the configuration for an InboundPort to an InboundService.
If the port name is already in use by another InboundPort for the InboundService, or the specified endpoint listener does not exist, the command fails.
If the templatePort is specified but does not exist in the InboundService template WSDL, the command fails.
If there is no BusConnectionProperty for the InboundService bus, then one is created with the default reply destination name.
Either specify the node and server, or specify the cluster.
ObjectName of the InboundService to which the port is to be added.
inPort = AdminTask.addSIBWSInboundPort(inService, ["-name", "MyServiceSoap", "-endpointListener", "SOAPHTTP1", "-node", "MyNode", "-server", "server1"] )
set inPort [$AdminTask addSIBWSInboundPort $inService {-name "MyServiceSoap" -endpointListener "SOAPHTTP1" -node "MyNode" -server "server1"}]