I want to post a JSON object from my page to a Rest WS. But when I am posting json through jQuery ajax call as output I am getting a HTML page with \"HTTP Status 405
datatype should be dataType: 'json'
dataType: 'json'
If you are using contentType: "application/json", , then you should stringify your data.
contentType: "application/json",
data:JSON.stringify(jsonObj),