Re: Purely XML / JSON Result Page

2011-11-17 Thread TH Lim
Thanks for the tips. I some help here too (in case anyone looking for the similar solution) http://stackoverflow.com/questions/2086732/dynamic-markup-in-wicket -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Purely-XML-JSON-Result-Page-tp4075558p4079390.html Sent

Re: Purely XML / JSON Result Page

2011-11-17 Thread Igor Vaynberg
why use a page at all? why not simple mount a resource or a IRequestHandler that writes out json? -igor On Thu, Nov 17, 2011 at 1:11 AM, TH Lim ssh...@gmail.com wrote: Thanks for the tips. I some help here too (in case anyone looking for the similar solution)

Re: Purely XML / JSON Result Page

2011-11-15 Thread Martin Grigorov
See org.apache.wicket.markup.IMarkupResourceStreamProvider On Wed, Nov 16, 2011 at 9:31 AM, TH Lim ssh...@gmail.com wrote: With Wicket 1.5, can we have a WebPage that serves XML / JSON without having an associated XML or HTML page? I understood how XMLPage.java example works but I just wander