Beiträge getagged mit REST

Yet Another Try: A REST Client with Jersey and Scala

[UPDATE] I pushed the code as SJersey to Github. For usage examples check out the test code here [/UPDATE] The are many awesome REST frameworks out there, for Java and for Scala as well. Most of the concepts do cover the server side. Important I know, but where are the smart client side APIs/DSLs? There [...]

, , , , , ,

1 Kommentar

Neo4j REST Server, GWT and JIT Part 3

This is a Proof of Concept (from GTUG BootCamp 2010), which is: Try to code a complete client side data-load (from some REST services) and graph visualization using Neo4j REST server, the Java Script Visualization Framework JIT and Google Web Toolkit. This is a followup to Part 2 I integrated what was made by Sascha [...]

, , , ,

5 Kommentare

Neo4j REST Server, GWT and JIT Part 2

This is a Proof of Concept (from GTUG BootCamp 2010), which is: Try to code a complete client side data-load (from some REST services) and graph visualization using Neo4j REST server, the Java Script Visualization Framework JIT and Google Web Toolkit. This is a followup to Part 1 that stopped by loading all Nodes of [...]

, , , ,

Keine Kommentare

Neo4j REST Server, GWT and JIT Part 1

This is a Proof of Concept (from GTUG BootCamp 2010), which is: Try to code a complete client side data-load (from some REST services) and graph visualization using Neo4j REST server, the Java Script Visualization Framework JIT and Google Web Toolkit. [update] this is how it looks like today [/update] What to read to understand [...]

, , , ,

Keine Kommentare

REST Client calls with Scala and Jersey (JAX-RS)

[UPDATE] this post is really old. I’ve written a new one: klick [/UPDATE] Usually client calls to Jersey (see API) are looking like this: ?View Code SCALA1 2 3 4 5 6 … WebResource resource = client.resource(baseURI); Units units = resource.path("units/" + id).accept(MediaType.APPLICATION_XML). get(Units.class); … Using many different HTTP method calls with changing paths is [...]

, ,

Keine Kommentare