A bit. Last week I checked in pluggable writer support. The API needs
a few tweaks here and there (mostly in the factory model) but the way it
works is rather straightforward.
OutputStream out = ...;
WriterFactory factory = WriterFactory.INSTANCE;
Writer writer = factory.newInstance("json");
writer.writeTo(feed, out);
>From there it's just a matter of writing the JSON writer implementation,
which, I believe, Elias is working on.
- James
joe kim wrote:
> [snip]
> One last question, JSON support. Have you and smackman made any
> progress on JSON serialization?
>
> http://smackman.com/2006/05/08/applicationatomjson/
>
> How would suggest atom+json serialization be implemented?
>
> Joe
>