Sample plugin-cfg.xml file
This code is an example of the contents of the plugin-cfg.xml configuration file after it has been updated by the application server. Depending on your application server configuration, the contents of your plugin-cfg.xml file may differ from this example.
In this example, the application server is hosted on machine called WEBSERVER and the HTTP server is hosted on a machine called MYISERIES.
<?xml version="1.0"?> <Config> <Log LogLevel="Error" Name="/QIBM/UserData/WebAS5/Base/default/logs/http_plugin.log"/> <VirtualHostGroup Name="default_host"> <VirtualHost Name="*:9080"/> <VirtualHost Name="WEBSERVER:8775"/> <VirtualHost Name="11.22.33.44:8775"/> <VirtualHost Name="WEBSERVER.MYCOMPANY:8775"/> </VirtualHostGroup> <ServerCluster Name="myserver_MYISERIES_default_Cluster"> <Server Name="myserver"> <Transport Hostname="MYISERIES" Port="9080" Protocol="http"/> </Server> <PrimaryServers> <Server Name="myserver"/> </PrimaryServers> </ServerCluster> <UriGroup Name="default_host_myserver_MYISERIES_default_Cluster_URIs"> <Uri AffinityCookie="JSESSIONID" Name="/snoop/*"/> <Uri AffinityCookie="JSESSIONID" Name="/hello"/> <Uri AffinityCookie="JSESSIONID" Name="/hitcount"/> <Uri AffinityCookie="JSESSIONID" Name="*.jsp"/> <Uri AffinityCookie="JSESSIONID" Name="*.jsv"/> <Uri AffinityCookie="JSESSIONID" Name="*.jsw"/> <Uri AffinityCookie="JSESSIONID" Name="/j_security_check"/> <Uri AffinityCookie="JSESSIONID" Name="/servlet/*"/> <Uri AffinityCookie="JSESSIONID" Name="/ivt/*"/> </UriGroup> <Route ServerCluster="myserver_MYISERIES_default_Cluster" UriGroup="default_host_myserver_MYISERIES_default_Cluster_URIs" VirtualHostGroup="default_host"/> </Config>