Try going to http://mywebserverurl/mycontext/wicket
On Sat, Jul 3, 2010 at 1:16 PM, ujtordai <ujtordaikov...@gmail.com> wrote: > > Hello everybody, > > I'm new in Wicket. I use NetBeans 6.9 and Glassfish. > I made a simple J2EE project. > The project deployed successfully. > My project is a skeleton of EE app it means actually not contain any entity, > session, and only contains in the web part the pre generated classes, for > example Application.java, BasePage.java HeaderPanel.html, headerPanel.java, > HomePage.html, HomePage.java, style.css. > > My project does not work, emit the an error: > HTTP Status 404 - > type Status report > message > descriptionThe requested resource () is not available. > GlassFish Server Open Source Edition 3.0.1 > > What need to do for work the base "example"? > > Thanks. > > My web xml is: > > <?xml version="1.0" encoding="UTF-8"?> > <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://java.sun.com/xml/ns/javaee > http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> > <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>com.myapp.wicket.Application</param-value> > </init-param> > </filter> > <filter-mapping> > <filter-name>WicketApplication</filter-name> > <url-pattern>/wicket/*</url-pattern> > </filter-mapping> > <session-config> > <session-timeout> > 30 > </session-timeout> > </session-config> > <welcome-file-list> > <welcome-file/> > </welcome-file-list> > </web-app> > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/I-new-in-Wicket-how-Can-I-start-tp2277335p2277335.html > Sent from the Wicket - Dev mailing list archive at Nabble.com. >