From: John M. <jo...@ea...> - 2002-03-11 15:19:07
|
It looks like JBuilder changes the WEB.XML file and removes: <filter> <filter-name>simper</filter-name> <filter-class>org.netmeme.simper.Simper</filter-class> <init-param> <param-name>initClass</param-name> <param-value>org.netmeme.simper.demo.DemoInit</param-value> </init-param> </filter> <!-- Map the filter to everything (JSP pages and Struts Actions). That way the JSP pages can use persistence as well - hopefully, in a read-only capacity. --> <filter-mapping> <filter-name>simper</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> Actually, it replaces the web.xml and saves the old version as web.xml~. I replaced the web.xml and everthing works in Tomcat... Still cannot run from JBuilder. -----Original Message----- From: John Menke [mailto:jo...@ea...] Sent: Monday, March 11, 2002 9:46 AM To: simper-users Subject: Cannot retrieve ActionForwards collection I am trying to run the examples in Jbuilder and get: javax.servlet.ServletException: Cannot create rewrite URL: java.net.MalformedURLException: Cannot retrieve ActionForwards collection I know it was running previously from within Tomcat.... strange...cannot figure out what changed. -john |