"Error in filter start tag" --- this is a web.xml parsing error? The snippet you included is not complete. web.xml content should be wrapped in <web-app>. Refer to the sample at http://wicket.apache.org/learn/examples/helloworld.html.
If that is not the problem, please post the full, verbatim error output. On Fri, Aug 5, 2011 at 9:22 AM, srinash <[email protected]> wrote: > Hi All, Can you please let me know why i get a deployment error when I set > up > the filter in the web.xml. The structure of the web.xml is, I had posted > this earlier - guess in the general forums, please bear with me. > > <filter> > <filter-name>HelloWorldApplication</filter-name> > > <filter-class>org.apache.wicket.protocol.http.WicketFilter</filter-class> > <init-param> > <param-name>applicationClassName</param-name> > > > <param-value>com.dev.wicket.apps.helloworld.HelloWorldApplication</param-value> > </init-param> > <init-param> > <param-name>configuration</param-name> > <param-value>deployment</param-value> > </init-param> > </filter> > <filter-mapping> > <filter-name>HelloWorldApplication</filter-name> > <url-pattern>/apps/HelloWorldApplication/*</url-pattern> > </filter-mapping> > > the error that is got is Error in filter start tag, some direction will be > really helpful > > Thank you > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/error-during-deployment-tp3721621p3721621.html > Sent from the Users forum mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
