WRD Servlet Section

Section of the web.xml file containing the definition and settings for the Web Request Dispatcher (WRD)

Description

Uniface servlets run in the environment of the Web Application; the Web Request Dispatcher (WRD) definition and settings are stored in the WRD servlet configuration section in the web.xml file, which is the configuration file of the Web Application (not to be confused with the Uniface WebApplication Server).

The WRD servlet configuration section uses the following format:

<web-app>
<!-- Uniface W(eb) R(equest) D(ispatcher) Servlet -->
  <servlet>
    <servlet-name>wrd</servlet-name>  
    <servlet-class>com.compuware.uniface.urd.WRDServlet</servlet-class>
    <init-param>
      <param-name>ParamName</param-name>
      <param-value>ParamValue</param-value>
    </init-param>
<!-- More servlet settings... -->
  </servlet>
<!-- More servlet definitions -->
</web-app>

where:

  • ParamName—name of the WRD servlet setting, for example MIDDLEWARE.
  • ParamValue—value of the WRD servlet setting.

Related Topics