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