SRD Servlet Section

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

Description

Uniface servlets run in the environment of the Web Application; the the SOAP Request Dispatcher (SRD) definition and settings are stored in the SRD 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 SRD servlet configuration section uses the following format:

<web-app>
<!-- Uniface S(oap) R(equest) D(ispatcher) Servlet -->
<servlet>
   <servlet-name>srd</servlet-name>
   <servlet-class>com.compuware.uniface.urd.SRDServlet</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 SRD servlet setting, for example MIDDLEWARE.
  • ParamValue—value of the SRD servlet setting.

Related Topics