Re: Link generation from outside of Wicket - was Re: [ANNOUNCE] Apache Wicket 6.7.0 Released!

2013-04-26 Thread Martin Grigorov
Hi, In another thread I suggested an "insane" idea but maybe it could be useful for someone. You can expose Wicket IResource as a web service. Pass it the class name as parameter and it can use normal Wicket functionality to return the full url for that page. The catch is that you need to know the

Re: Link generation from outside of Wicket - was Re: [ANNOUNCE] Apache Wicket 6.7.0 Released!

2013-04-19 Thread Guillaume Smet
On Fri, Apr 19, 2013 at 4:30 PM, Martin Grigorov wrote: > What exactly you mean by "outside of Wicket" ? > What Wicket objects you have access to ? > The application name will be needed and a base url. Usually the current > request's baseUrl is used to construct a full url. Without the base url >

Re: Link generation from outside of Wicket - was Re: [ANNOUNCE] Apache Wicket 6.7.0 Released!

2013-04-19 Thread Martin Grigorov
On Fri, Apr 19, 2013 at 5:12 PM, Guillaume Smet wrote: > Hi, > > On Thu, Apr 18, 2013 at 11:36 AM, Martijn Dashorst > wrote: > > Render a page or component to a String > > > > ComponentRenderer exposes two methods: `renderComponent` and > > `renderPage` and they do exactly what their names sugges

Link generation from outside of Wicket - was Re: [ANNOUNCE] Apache Wicket 6.7.0 Released!

2013-04-19 Thread Guillaume Smet
Hi, On Thu, Apr 18, 2013 at 11:36 AM, Martijn Dashorst wrote: > Render a page or component to a String > > ComponentRenderer exposes two methods: `renderComponent` and > `renderPage` and they do exactly what their names suggest. Happy > emailing! This is really nice. We did it in a quite complic