Re: Serve Json in request and response

2011-05-05 Thread Martin Grigorov
ew this message in context: > http://apache-wicket.1842946.n4.nabble.com/Serve-Json-in-request-and-response-tp3491991p3498250.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe,

RE: Serve Json in request and response

2011-05-05 Thread Mathias Nilsson
way of sending parameters to a json parser? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Serve-Json-in-request-and-response-tp3491991p3498250.html Sent from the Users forum mailing list archive at Nabble.com. -

RE: Serve Json in request and response

2011-05-03 Thread Hielke Hoeve
And another: http://jackson.codehaus.org/ (This library is also used in WiQuery) Hielke -Original Message- From: jcgarciam [mailto:jcgarc...@gmail.com] Sent: dinsdag 3 mei 2011 13:48 To: users@wicket.apache.org Subject: Re: Serve Json in request and response Just adding another json

Re: Serve Json in request and response

2011-05-03 Thread robert.mcguinness
maybe this will help: http://code.google.com/p/wicket-rest/ -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Serve-Json-in-request-and-response-tp3491991p3492685.html Sent from the Users forum mailing list archive at Nabble.com

Re: Serve Json in request and response

2011-05-03 Thread jcgarciam
[hidden > email]<http://user/SendEmail.jtp?type=node&node=3492239&i=1&by-user=t> > > > > -- > If you reply to this email, your message will be added to the discussion > below: > > http://apache-wicket.1842946.n4.nabble.com/Serve-Json-in

RE: Serve Json in request and response

2011-05-03 Thread Wilhelmsen Tor Iver
> I can use dopost and doget but how to handle Json request? JSON is just data representation, there are some Java libraries out there to deal with JSON formatted data (e.g. Jettison at http://jettison.codehaus.org/ or JSON.simple at http://code.google.com/p/json-simple/ ). But if you want to u

Re: Serve Json in request and response

2011-05-03 Thread Mathias Nilsson
Ok, And if I should use a servlet. Where do I go from there? I can use dopost and doget but how to handle Json request? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Serve-Json-in-request-and-response-tp3491991p3492203.html Sent from the Users forum mailing list

Re: Serve Json in request and response

2011-05-03 Thread Maarten Billemont
On 03 May 2011, at 10:20, Wicket wrote: > Hi, > > When serving json I have built a WebService that responds with json and takes > json as request. > > @WebMethod > @WebResult( name = "JsonResponse" ) > public String onJsonRequest( @WebParam( name = "JsonRequest" ) String > jsonRequest ); > >

Serve Json in request and response

2011-05-03 Thread Wicket
Hi, When serving json I have built a WebService that responds with json and takes json as request. @WebMethod @WebResult( name = "JsonResponse" ) public String onJsonRequest( @WebParam( name = "JsonRequest" ) String jsonRequest ); I was wondering if I could handle this entirely in Wicket?