Re: Javabin->JSon

2011-03-29 Thread paulohess
you are not helping -- View this message in context: http://lucene.472066.n3.nabble.com/Javabin-JSon-tp2750066p2750461.html Sent from the Solr - User mailing list archive at Nabble.com.

Javabin->JSon

2011-03-29 Thread paulohess
Hi guys, I have a Javabin object and I need to convert that to a JSon object. How ? pls help? I am using solrj (client) that doesn't support JSON so (wt=json) won't convert it to JSon. thanks Paulo -- View this message in context: http://lucene.472066.n3.nabble.com/Javabin-JSon-tp2750066p27500

Javabin to JSON convertor

2011-03-28 Thread paulohess
Hi guys, I have an Javabin object ( it is actually a List data structure) and I need to convert that to a JSon object. I am using "Gson" and pass my List to it: gson.toJson(myList); , the rerturn is just the same with couple of (") added to the begining and and end could anybody help here, T