The instructional information that follows consists of the most important information required for the configuration of the web.xml file. For a more thorough explanation, see Installing the Agent Filter for the Deployed Application on Agent for BEA WebLogic Server/Portal 9.2.
As consistent with the rest of this appendix, this section specifies the sample portal as the application whose deployment descriptor is modified.
The following is a conceivable location for the web.xml file for the sample portal:
/usr/local/bea/weblogic92/samples/portal/portalApp/groupspaceSampleWeb/WEB-INF
 To Install the Agent Filter for the Deployed Application
Specifically for BEA WebLogic Portal 9.2
To Install the Agent Filter for the Deployed Application
Specifically for BEA WebLogic Portal 9.2Add the <filter> elements in the deployment descriptor by specifying the <filter> and the <filter-mapping> elements immediately following the description element of the <web-app> element in the descriptor web.xml.
The following is a sample web.xml descriptor with the <filter> and the <filter-mapping> elements added:
| <web-app>
   
<filter>
     <filter-name>Agent</filter-name>
     <filter-class>com.sun.identity.agents.filter.AmAgentFilter</filter-class>
   </filter>
   <filter-mapping>
     <filter-name>Agent</filter-name>
     <url-pattern>/*</url-pattern>
   </filter-mapping>
   
</web-app>
                   |