press.com/ http://www.antoniogoncalves.org --
GET the books in XML : curl http://localhost:8080/chapter15-service-1.0/rs/04/books GET the books in JSon : curl -H "Accept: application/json" http://localhost:8080/chapter15-service-1.0/rs/04/books
POST a book with title : curl -X POST --data-binary "H2G2" -H "Content-Type: text/plain" http://localhost:8080/chapter15-service-1.0/rs/04/books -v
POST a new book : curl -X POST --data-binary "{ \"title\":\"H2G2\", \"description\":\"Scifi IT book\", \"illustrations\":\"false\",\"isbn\":\"134-234\",\"nbOfPage\":\"241\",\"price\":\"24.0\" }" -H "Content-Type: application/json" http://localhost:8080/chapter15-service-1.0/rs/04/books -v POST a new book : curl -X POST --data-binary "
Science fiction comedy bookfalse1-84023-742-235412.5The Hitchhiker's Guide to the Galaxy" -H "Content-Type: application/xml" http://localhost:8080/chapter15-service-1.0/rs/04/books -v
DELETE a book : curl -X DELETE -H "Content-Type: text/plain" http://localhost:8080/chapter15-service-1.0/rs/04/books/2 -v