2
Answers

I am not able to get response as json. pls help me out

Ask a question
Christ X

Christ X

11y
1.3k
1

Christxavier

Member

14 Points

84 Posts

I am not able to get response as json. pls help me out.

18 minutes ago|LINK

hi, i created one wep api crud operation using MVC.  i followed this following link to create that web api. kindly go through this link for clear.

http://www.dotnetchunks.com/Article/MVC%204%20WEB%20API%20_NET%204_5/13#.UjKapManqul


I got the GET response also. but i am getting xml response. instead  i needed json response. so in that article they told to put following javascript to get JSON response but they did not mention where to put the following javascript. so blindly i put the javascript in index.cshtml<--views<---HOME(which is in solution explorer in project). because this folder only has design form. so still i am getting xml response. if i remove the javascript also, it response xml format. so, i think the javascript is not invoked or i do not know where to put the javascript correctly. so, please help from this problem. thanks a lot.

javascript file:

<script type="text/javascript">
$(document).ready(function () {

$.ajax({

type: "GET",
url: "api/customer/1",
dataType: "json",
success: function (data) {
alert(data);
}
});
});
</script>

output file.


output file:
<CustomerModel>
<Id>1</Id>
<Salary>20</Salary>
<cusName>rajesh</cusName>
/CustomerModel>
<Id>2</Id></div> 
<Salary>50</Salary>
<cusName>magesh</cusName>
</CustomerModel>

Answers (2)
Next Recommended Forum