After utilizing Postman to test my web service, I was able to find the WS's response in the http response body.
However, when I made a call using ajax in my web application, I encountered an issue where I could no longer locate the response. The tab simply displayed a message indicating "This request has no response data available."
Below is the ajax call that I made:
$.ajax({
url: url,
method: "POST",
data: params,
success:function(response) {
console.log(response); // unfortunately, no console output here!
console.log('response');
},
error:function(){
console.log("error");
}
});