Components of WebSphere Application Server - Express uses HTTP transports to communicate with each other. Your application also uses HTTP transports to receive and reply to client requests.
In WebSphere Application Server - Express, version 5.1, HTTP transport functionality is a supported internal Web server that you can use in a production environment. You do not need to configure a separate HTTP server instance for your application server. However, it is recommended that you use a separate HTTP server instance, because other Web servers can offer advanced functionality and improved performance.
Before you decide which type of transport to use, consider the following limitations of the internal HTTP transports:
You can use the administrative console and wsadmin to configure HTTP transports for your application server.
Use the administrative console to configure HTTP transports
Use wsadmin to configure HTTP transports
On the CL command line, run the STRQSH (Start Qshell) command.
Run the cd command to change to the directory that contains the wsadmin tool:
cd /QIBM/ProdData/WebASE51/ASE/bin
At the wsadmin prompt, run this command to identify the application server and assign it to the server variable:
set server [$AdminConfig getid /Cell:myCell/Node:myNode/Server:myAppSvr/]
where myCell is the name of the cell that contains your application server, myNode is the name of the node that contains your application server, and myAppSvr is the name of your application server.
Run this command to identify the Web container for the application server and assign it to the wc variable:
set wc [$AdminConfig list WebContainer $server]
Run these commands to list all of the transports that belong to the Web container and assign it to the transports variable:
set transportsAttr [$AdminConfig showAttribute $wc transports] set transports [lindex $transportsAttr 0]
These commands return the transport objects from the transports attribute in a list format.
Run this command to identify the transport to be modified and assign it to the transport variable:
set transport [lindex $transports 0]
Run this command to modify the address attribute to change the host and port:
$AdminConfig modify $transport {{address {{host {myHost}} {port 9081}}}}
Run this command to save your changes:
$AdminConfig save