How do we specify the settings for < servlet-mapping> and <url-pattern> tag

We developed a servlet which has the following web.xml. It runs fine in Tomcat server.

WebModule1

<servlet-name>JServlet</servlet-name>

<servlet-class>jServlet.JServlet</servlet-class>

<init-param>

  <param-name>JXML</param-name>

  <param-value>JSC</param-value>

</init-param>
<servlet-name>JServlet</servlet-name>

<url-pattern>/servlet/JServletFld/*</url-pattern>

We now want to deploy it on lotus domino server. For this we specified the following settings to the servlet.properties file:

servlet.JServlet.code= jServlet.JServlet

servlet.JServlet.initArgs= JXML=JSC

Query: How do we specify the settings for and tag?

Please Advise and comment,

Vivek

Subject: How do we specify the settings for < servlet-mapping> and tag

DOMCFG.nsf???

Subject: RE: How do we specify the settings for < servlet-mapping> and tag

Thanks we will give it a try.