Re: [Wicket-user] WicketFilter NPE if filter-mapping is servlet-name rather than url-mapping

2007-06-25 Thread Eelco Hillenius
> So I guess I'm wondering if there's any chance getFilterPath could be > massaged to allow servlet-name as well? Could you please open a feature request[1] for that? Cheers, Eelco [1] http://issues.apache.org/jira/browse/WICKET -

[Wicket-user] WicketFilter NPE if filter-mapping is servlet-name rather than url-mapping

2007-06-25 Thread James Renfro
Hi All, I'm working in 1.3.0 snapshot. Two or three weeks ago it used to be possible to use a filter-mapping like this one: my.wicket.filter my.servlet But it looks like a recent change to getFilterPath now forces you to use url-mapping instead. This was encouraged before in a

Re: [Wicket-user] WicketFilter doesn't work in Weblogic [Wicket 1.3]

2007-05-11 Thread Johan Compagner
http://www.wicketstuff.org/maven/repository/org/apache/wicket/wicket/1.3.0-incubating-SNAPSHOT/ On 5/11/07, dukejansen <[EMAIL PROTECTED]> wrote: Hmm, interesting. The code I'm looking at, from the beta1 snapshot, looks more like this: String path = request.getServletPath();

Re: [Wicket-user] WicketFilter doesn't work in Weblogic [Wicket 1.3]

2007-05-11 Thread dukejansen
Hmm, interesting. The code I'm looking at, from the beta1 snapshot, looks more like this: String path = request.getServletPath(); if (servletMode) { path = request.getPathInfo(); // No path info => roo

Re: [Wicket-user] WicketFilter doesn't work in Weblogic [Wicket 1.3]

2007-05-11 Thread Johan Compagner
we only use servletpath when we are in servlet mode: public String getRelativePath(HttpServletRequest request) { String path = Strings.stripJSessionId(request.getRequestURI()); String contextPath = request.getContextPath(); path = path.substring(contextPath.length());

Re: [Wicket-user] WicketFilter doesn't work in Weblogic [Wicket 1.3]

2007-05-10 Thread dukejansen
Probably would be wise to look at all calls to HttpServletRequest.getServletPath. -- View this message in context: http://www.nabble.com/WicketFilter-doesn%27t-work-in-Weblogic--Wicket-1.3--tf3724994.html#a10424543 Sent from the Wicket - User mailing list archive at Nabble.com. ---

[Wicket-user] WicketFilter doesn't work in Weblogic [Wicket 1.3]

2007-05-10 Thread dukejansen
I believe I have identified a rather serious bug in WicketFilter. I'm using a recent 1.3 snapshot, and I have recently updated our application to leverage the WicketFilter instead of WicketServlet. This is working great in Tomcat, but when we deploy to our Weblogic server, Wicket dies an ugly dea

Re: [Wicket-user] WicketFilter problem with isWicketRequest()

2007-01-18 Thread Al Maw
Al Maw wrote: > I've tried to replicate this using the 1.x branch, but can't. > Are you using 2.x? Argh. Just seen your second post that says you're using 1.3. Also, I take it back - I can replicate it (needed to back out some other changes that probably fix this too, which I'm working on). See

Re: [Wicket-user] WicketFilter problem with isWicketRequest()

2007-01-18 Thread Al Maw
I've tried to replicate this using the 1.x branch, but can't. Are you using 2.x? There have been some fixes recently related to URL parsing. If you're using 1.x, try updating and let me know how you get on. If you're still having issues, please do zip up a quickstart and attach it to a JIRA issu

Re: [Wicket-user] WicketFilter problem with isWicketRequest()

2007-01-18 Thread ChuckDeal
I feel like I just saw some some messages, not exactly like my problem, but still about resolving urls properly (perhaps on the apache list). Anyway, I was just curious if there was something else I can do to help. I don't know that submitting a quickstart will help because it should happen with

Re: [Wicket-user] WicketFilter problem with isWicketRequest()

2007-01-04 Thread ChuckDeal
aimsWicket wicket.protocol.http.WicketFilter applicationClassName com.csc.aims.framework.AIMSApplication filterPath app aimsWicket /app/* Johan Compagner wrote: > > what does your web.xml look like (the filter and the filtermapping) > > On

Re: [Wicket-user] WicketFilter problem with isWicketRequest()

2006-12-22 Thread Johan Compagner
what does your web.xml look like (the filter and the filtermapping) On 12/22/06, ChuckDeal <[EMAIL PROTECTED]> wrote: This path works to load my app: http://localhost:2467/aims/app This one doesn't: http://localhost:2467/aims/app/ <-- note the ending slash When tracing through the WicketFi

Re: [Wicket-user] WicketFilter problem with isWicketRequest()

2006-12-22 Thread ChuckDeal
Sorry, that would be 1.3-SNAPSHOT (built from latest on 22DEC2006) ChuckDeal wrote: > > > This path works to load my app: http://localhost:2467/aims/app > This one doesn't: http://localhost:2467/aims/app/ <-- note the ending > slash > > When tracing through the WicketFilter code, it looks l

[Wicket-user] WicketFilter problem with isWicketRequest()

2006-12-22 Thread ChuckDeal
This path works to load my app: http://localhost:2467/aims/app This one doesn't: http://localhost:2467/aims/app/ <-- note the ending slash When tracing through the WicketFilter code, it looks like isWicketRequest() can't deal with it so it delegates to webApplication.getRequestCycleProcessor()

Re: [Wicket-user] WicketFilter

2006-12-08 Thread Eelco Hillenius
If you're not using 2.0 or 1.3 you have to use WicketServlet (as the others said). Otherwise, you're having class path troubles and you have to look at how you set up JBoss. Eelco On 12/8/06, Lost Still Lost <[EMAIL PROTECTED]> wrote: > > Hello, > > I am working on a rather simple example of a

Re: [Wicket-user] WicketFilter

2006-12-08 Thread Martijn Dashorst
Except if he is using trunk from wicket-1.x, but there can still be demons. Martijn On 12/8/06, Erik van Oosten <[EMAIL PROTECTED]> wrote: > Hello Yuri, > > Which version of Wicket are you using? > > If it is not Wicket 2.0, you should replace WicketFilter with WicketServlet. > > Regards, > E

Re: [Wicket-user] WicketFilter

2006-12-08 Thread Erik van Oosten
Hello Yuri, Which version of Wicket are you using? If it is not Wicket 2.0, you should replace WicketFilter with WicketServlet. Regards, Erik. Lost Still Lost schreef: > Hello, > > I am working on a rather simple example of a wicket-webapplication. > Unfortunately it is not working prop

Re: [Wicket-user] WicketFilter

2006-12-08 Thread Lost Still Lost
Hello, I am working on a rather simple example of a wicket-webapplication. Unfortunately it is not working properly.I got this Exception in JBOSS-4.0.5 10:27:24,546 INFO [[/helloworld]] Marking servlet HelloWorldApplication as unavailable10:27:24,546 ERROR [[/helloworld]] Servlet /helloworld th