Categories | Question details Back To List | ||
dhtmlxGrid I use Servlet to generate grid XML data. My application was working fine when was deployed in the exploded directory structure. Once I have created a WAR file and deployed it I get no Servlet call. What would be the correct URL to use for the WAR deployment? Here is my servlet configuration from the web.xml file <servlet> <servlet-name>DataServlet</servlet-name> <servlet-class>com.scfb.DataServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>DataServlet</servlet-name> <url-pattern>/data</url-pattern> </servlet-mapping> And this is how I call it to load the grid: mygrid.loadXML(./data); This call works fine for exploded directory structure but does not for WAR. Please, suggest the solution. Thank you. Stan. Answer posted on May 11, 2007 19:38 Unfortunately we can't suggest you anything, as the problem mostly related to war file generation, than to dhtmlx component. Please check the way you generate WAR file. Probably it wasn't correct. Answer posted by Embre (Support) on Dec 10, 2014 01:43 |