Created
September 25, 2011 14:39
-
-
Save whaley/1240658 to your computer and use it in GitHub Desktop.
JAXRS Multiple Content Types Output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [whaley@sunspot ~] | |
| > curl -H"Accept:application/json" 'http://localhost:8080/rest-sample/service/player/whaley?playerClass=Soldier' | |
| {"player":{"nickname":"whaley","playerClass":"Soldier"}} | |
| [whaley@sunspot ~] | |
| > curl -H"Accept:application/xml" 'http://localhost:8080/rest-sample/service/player/whaley?playerClass=Soldier' | |
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?><player><nickname>whaley</nickname><playerClass>Soldier</playerClass></player> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment