The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: jQuery and Ajax in Microsoft.NET and Oracle AS
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

Koteswararao MallisettiPosted Oct 16, 2010, 5:22 AM
--------------------------- Message from webpage --------------------------- Cannot process the message because the content type 'application/json; charset=soap+xml' was not the expected type 'application/soap+xml; charset=utf-8'. --------------------------- OK --------------------------- i got this error when implement your mechanism for my service that is simple function take one string arg and return same thing . i using following javascript code: {$.ajax({ type: "POST", cache: false, url: "http://localhost/TestWeb/Service.svc/DoWork", data: { s: "koti" }, contentType: "application/json; charset=soap+xml", dataType: "json", success: function(msg) { $('#result').text(msg.d); }, error: function(msg) { alert(msg.statusText); } })