Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "User:Rick.barkhouse.oracle.com/Test1"

(Removing all content from page)
Line 1: Line 1:
 +
<div style="margin:5px;float:right;border:1px solid #000000;padding:5px">__TOC__</div>
  
 +
=Dynamic JAXB: Flickr Example=
 +
 +
This example will demonstrate how to use MOXy's Dynamic JAXB features to work with public JSON and XML  feeds, without having to create concrete Java classes.
 +
 +
==Getting JSON from Reddit==
 +
 +
Reddit provides a public JSON feed using the following URL format:
 +
 +
<code lang="text">
 +
http://www.reddit.com/r/science/top/.json?sort=top&t=day&limit=5
 +
</code>

Revision as of 11:55, 28 May 2013

Dynamic JAXB: Flickr Example

This example will demonstrate how to use MOXy's Dynamic JAXB features to work with public JSON and XML feeds, without having to create concrete Java classes.

Getting JSON from Reddit

Reddit provides a public JSON feed using the following URL format:

http://www.reddit.com/r/science/top/.json?sort=top&t=day&limit=5

Back to the top