Hi ,
I am trying to run a custom servlet on LSDS 7.4 but I keep getting Invalid Site error. Only the init function of the servlet is getting invoked , doGet & doPost are not getting invoked. I have a old site running on LSDS 7.3 , same servlet is running fine on LSDS 7.3 . I have compared the web.xml of both LSDS , no separate filter mapping present on LSDS 7.3 .
Steps for configuring the servlet-
---- Added servlet mapping in web.xml as below -
<servlet>
<servlet-name>cscAck</servlet-name>
<servlet-class>com.csc.app.utils.blankServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>cscAck</servlet-name>
<url-pattern>*.cscSubmit</url-pattern>
</servlet-mapping>
---Added servlet code jar to WEB_INF/lib
--- Added attribute type="external" to the <form> tag submitting to this servlet.
Any difference in configuration for LSDS 7.4 ? Where else should I look for the problem ?
Thanks!
Regards,
Ankit