2.5 Setting the Servlet URL Pattern
The Repository Servlet processes browser requests that use the URL pattern specified for the “replets” servlet in the web.xml file for the sree webapp. The configuration for the default pattern (“/Reports”) is shown below.
<servlet>
<servlet-name>replets</servlet-name>
<servletclass>inetsoft.sree.web.ServletRepository</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>replets</servlet-name>
<url-pattern>/Reports</url-pattern>
</servlet-mapping>
The Administration Servlet processes requests that use the URL pattern specified for the “manager” servlet in the web.xml file for the sree webapp. The configuration for the default pattern (“/EnterpriseManager”) is shown below.
<servlet>
<servlet-name>manager</servlet-name>
<servlet-class>inetsoft.sree.adm.AdmServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>manager</servlet-name>
<url-pattern>/EnterpriseManager</url-pattern>
</servlet-mapping>
| << 2.4 Editing the Servlet and Server URL | © 1996-2013 InetSoft Technology Corporation (v11.4) | 2.6 Monitoring Servlet Status >> |