green-i
green-i

Reputation: 315

Getting Json data from another domain, within a proxy servlet

I'm working on a GWT project, in which I have to fetch some JSON data from a real web-domain. Due to SOP policy, GWT fails to get those data.

To address this, as suggested in GWT docs, I have created some proxy servlets within GWT, which in turn should call the actual JSON provider external url.

Does anybody know how should I retrieve json data from an external url, within a servlet?

Thanks

Upvotes: 2

Views: 1113

Answers (1)

BalusC
BalusC

Reputation: 1109735

Use java.net.URLConnection.

InputStream input = new URL("http://example.com/data.json").openStream();

See also:

Upvotes: 1

Related Questions