Hi, I was successful to deploy the application at the Tomcat but in browser I receive error 404 "The requested resource (/basicPortlets/) is not available." Application is made in Eclipse. Bellow I send you web.xml where wicket.package.portlets is the package where Application.java, HomeApplication.java and HomeApplication.html are stored. Can you help me please to configure this web.xml.
Best regards, Rafal Laczek <filter> <filter-name>WicketApplication</filter-name> <filter-class>org.apache.wicket.protocol.http.WicketFilter</filter-class> <init-param> <param-name>applicationClassName</param-name> <param-value>wicket.package.portlets.Application</param-value> </init-param> </filter> <filter-mapping> <filter-name>WicketApplication</filter-name> <url-pattern>/Test/*</url-pattern> </filter-mapping> <session-config><session-timeout> 30 </session-timeout></session-config> <welcome-file-list> <welcome-file>HomeApplication.html</welcome-file> </welcome-file-list> -- You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to this group, send email to java-ee-j2ee-programming-with-passion@googlegroups.com To unsubscribe from this group, send email to java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en?hl=en