28. A web application is hosted on an application server that receives HTTP requests from a third party application named myApp. The URlGroup mapping for this application is called default_host_myApp. The development team asks a system administrator to configure the HTTP plug-in to prevent
routing requests to any application server except serverl. The following exhibit shows the parts of the plugin-cfg.xml file that are relevant for myApp. The UriGroups for other applications are not shown in the exhibit.
<VirtualHostGroup Name="default_host">
<VirtualHost Name="*:9080"/>
<VirtualHost Name="*:9081"/>
<VirtualHost Name="*:80"/>
<VirtualHost Name="*:9443"/>
<VirtualHost Name="*:9444"/>
<VirtualHost Name="*:443"/>
</VirtualHostGroup>
<ServerCluster Name="myCluster">
<Server CloneID="a10000001" LoadBalanceWeight="2" MaxConnections="-1" Name="server1">
<Transport Hostname="machine1" Port="9080" Protocol="http"/>
<Transport Hostname="machine1" Port="9443" Protocol="https">
</Transport>
</Server>
<Server CloneID="b20000002" LoadBalanceWeight="2" MaxConnections="-1" Name="server2">
<Transport Hostname="machine2" Port="9081" Protocol="http"/>
<Transport Hostname="machine2" Port="9444" Protocol="https"/>
</Server>
</ServerCluster>
<UriGroup Name="default_host_myApp">
<Uri Name="/myApp/*"/>
<Uri Name="/myAppAdmin/*"/>
</UriGroup>
<Route ServerCluster="myCluster" UriGroup="default_host_myApp" VirtualHostGroup="default_host"/>
What should the administrator do to the plugin-cfg.xml file to ensure that requests for default_host_myApp URIGroup are routed only to machine1?
Selecione uma das seguintes: