The header sent back when you click the button is: 406 Not Acceptable
Your backend service is saying that the response type it is returning is not provided in the Accept-Type HTTP header in your Client request. Ref: http://en.wikipedia.org/wiki/List_of_HTTP_header_fields Find out the response (content type) returned by Service. Provide this (content type) in your request Accept header. ... 406 happens when the server cannot respond with the accept-header specified in the request. In your case it seems application/json for the response may not be acceptable to the server. from http://stackoverflow.com/questions/14251851/what-is-406-not-acceptable-response-in-http
Your backend service is saying that the response type it is returning is not provided in the Accept-Type HTTP header in your Client request.
Ref: http://en.wikipedia.org/wiki/List_of_HTTP_header_fields
...
406 happens when the server cannot respond with the accept-header specified in the request. In your case it seems application/json for the response may not be acceptable to the server.
from http://stackoverflow.com/questions/14251851/what-is-406-not-acceptable-response-in-http
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.