Re: Fwd: wicket 1.5-rc2 and aggregate jar for osgi

2011-04-27 Thread Eike Kettner
this thread on felix mailing list: > > http://old.nabble.com/A-better-life%3A-quick-webapp-deploy-to31334158.html > > I'll go into details point by point. > > On Fri, Apr 8, 2011 at 3:29 PM, Eike Kettner wrote: > > > Hi Daniele, > > > > I might have not

Re: [osgi] package org.apache.wicket.request exported either from core and request packages

2011-04-26 Thread Eike Kettner
Hi Daniele, On [Tue, 26.04.2011 12:19], Daniele Dellafiore wrote: > On Tue, Apr 26, 2011 at 11:48 AM, Eike Kettner wrote: > > > the "uber-jar" is only concerning wicket, not any war bundle. while it > > would be of course "nicer" to have all wicket jars as

Re: [osgi] package org.apache.wicket.request exported either from core and request packages

2011-04-26 Thread Eike Kettner
the "uber-jar" is only concerning wicket, not any war bundle. while it would be of course "nicer" to have all wicket jars as separate bundles available out of the box. but one solution I find quite ok is creating one bundle out of core, request and util. this will then be a uber-jar that brings wic

Re: Fwd: wicket 1.5-rc2 and aggregate jar for osgi

2011-04-08 Thread Eike Kettner
Hi Daniele, I might have not understood your concern well enough... But here is what I do: I deploy a really small war file (without any deps of course) into the osgi container (I use felix...). There is another bundle from pax, called pax-web-extender, that "listens" for war files coming into the

Re: wicket 1.5-rc2 and aggregate jar for osgi

2011-03-15 Thread Eike Kettner
core > projects few days after Wicket releases. > > Other opinions/suggestions ? > > martin-g > > On Tue, Mar 15, 2011 at 3:05 PM, Eike Kettner wrote: > > > Hi, > > > > I'm using wicket 1.5-RC1 in an OSGi container. There was an issue when > > upgradi

wicket 1.5-rc2 and aggregate jar for osgi

2011-03-15 Thread Eike Kettner
Hi, I'm using wicket 1.5-RC1 in an OSGi container. There was an issue when upgrading related to package names (https://issues.apache.org/jira/browse/WICKET-3088) Now I tried upgrading to 1.5-rc2 and found that there is no aggregate jar file anymore. I then read the discussion-thread "[discuss] Ho

Re: RestartResponseAtInterceptPage

2011-01-11 Thread Eike Kettner
ts IRequestHandler and does the same. > If you think it should be in the framework then file a ticket in Jira for > improvement. > > On Tue, Jan 11, 2011 at 1:09 PM, Eike Kettner wrote: > > > Hi > > > > For wicket 1.5.x I created a custo

RestartResponseAtInterceptPage

2011-01-11 Thread Eike Kettner
Hi For wicket 1.5.x I created a custom RequestHandler that also renders pages. Now I like to use this handler in RestartResponseAtInterceptPageException. But the class only accepts a Page, and then schedules a RenderingPageRequestHandler. Is there any reason why not having a custom handler be the

Re: why is there no redirectToIntercept *Target*

2010-10-07 Thread Eike Kettner
pageMap.redirectToInterceptPage(SomePageIdontCareAbout.class); //reset the target .. cycle.setRequestTarget(target); regards, Eike On [Mon, 27.09.2010 23:36], Eike Kettner wrote: > Hi! > I found two methods redirectToInterceptPage(Class) and > redirectToInterceptPage(Page). I was wondering why th

Re: Authorization using PageParameters

2010-10-06 Thread Eike Kettner
Hi Peter, this probably not the best way, I don't know, but I would start with throwing an UnauthorizedInstantiationException in my page constructor. regards, Eike On [Wed, 06.10.2010 13:53], Peter Munro wrote: > Hi all, > > I'm confused... I'd like to setup authorization for a page, where the

Re: Wicket 1.5 and OSGi

2010-10-04 Thread Eike Kettner
Hi Martin, added WICKET-3088. Thank you for your support! Eike On [Sun, 03.10.2010 17:36], Martin Grigorov wrote: > Hi Eike, > > Please file a bug in Jira with link to this mail thread. > > On Sun, Oct 3, 2010 at 2:33 PM, Eike Kettner wrote: > > > Hi Martin > >

Re: Wicket 1.5 and OSGi

2010-10-03 Thread Eike Kettner
wicket-request, wicket, > wicket-xyz, ...) and maven-bnd-plugin to add the OSGi stuff in > META-INF/MANIFEST.MF. > > Since Wicket's artefacts are not splitted in -api and -impl .jars I don't > see a reason not to mix them all in one bigger jar for OSGi environments. >

Re: Wicket 1.5 and OSGi

2010-10-03 Thread Eike Kettner
wicket-request, wicket, > wicket-xyz, ...) and maven-bnd-plugin to add the OSGi stuff in > META-INF/MANIFEST.MF. > > Since Wicket's artefacts are not splitted in -api and -impl .jars I don't > see a reason not to mix them all in one bigger jar for OSGi environments. >

Re: Wicket 1.5 and OSGi

2010-10-03 Thread Eike Kettner
7;s no big deal to use wicket in OSGi as a wrapped jar, but surely not as convienient as before. Is anybody having these issues with wicket 1.5+OSGi, too? Or even better, is anybody not having issues with this combination? Regards, Eike On [Fri, 01.10.2010 22:12], Eike Kettner wrote: >

Re: Wicket 1.5 and OSGi

2010-10-01 Thread Eike Kettner
o only have disjoint packages :) I usually put the artifact name in my package name, to avoid any clashes (in fact it makes sense in my module structure). Kind regards, Eike On [Fri, 01.10.2010 10:05], Martin Grigorov wrote: > Hi Elke, > > On Fri, Oct 1, 2010 at 8:34 AM, Eike Kettner w

Re: Wicket 1.5 and OSGi

2010-10-01 Thread Eike Kettner
Hi Martin, On [Fri, 01.10.2010 10:05], Martin Grigorov wrote: > Hi Elke, > > On Fri, Oct 1, 2010 at 8:34 AM, Eike Kettner wrote: > > > Hello! > > > > I developed a wicket app using OSGi (felix) where different bundles may > > contribute content to the wicke

Wicket 1.5 and OSGi

2010-09-30 Thread Eike Kettner
Hello! I developed a wicket app using OSGi (felix) where different bundles may contribute content to the wicket bundle. It works really nice using wicket 1.4.9+. Now I want to upgrade to wicket 1.5 and I run in problems starting the osgi container. It complains with the good-known classnotfound-e

why is there no redirectToIntercept *Target*

2010-09-27 Thread Eike Kettner
Hi! I found two methods redirectToInterceptPage(Class) and redirectToInterceptPage(Page). I was wondering why there is no overloaded method with a IRequestTarget as argument. I'd like to use this with a custom request target, that's why i stumbled into this. So I like to do something like this:

Re: AutoCompleteTextField uses wrong encoding?

2010-05-10 Thread Eike Kettner
Hi Matt some long time ago I had a similiar problem with AjaxEditableLabel. I used tomcat and there you need to configure the connector using "useBodyEncodingForURI=true" to make tomcat use utf8 for encoding ajax requests. eike On 10.05.2010 15:27, Matthias Keller wrote: Hi I'm usi

problem using pager inside a listview

2009-03-14 Thread Eike Kettner
hi all, I'm using a list view that renders 2 or 3 more complex panels. Each of this panel has (among other panels) a data view with a pager component. Now, when I click on one of the page links, i'm getting back to the page, but the data view shows the same results as before. I often used the P

Re: encoding issue on ajax form post (portlet)

2009-03-14 Thread Eike Kettner
Hi Francisco, i ran into a similiar problem with ajax and umlauts. in my case i had a tomcat running the webapp. and for the ajax requests, i had to configure the tomcat connector with useBodyEncodingForURI="true". then the content of ajax requests got correctly encoded (using utf8). since i didn'