How can I access the WCF Service through JavaScript?
My problem is, I have to access the operation contracts through the JavaScript (my website is not Ajax enabled).
Pre
Look at the code on the link that I have sent before. Sure U can implement it yourself but it well be a huge effort duplication.
First, your WCF service must have:
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
Then, on the javascript side, change the
"Content-Type", "application/x-www-form-urlencoded"
To
"Content-Type", "application/json"
Remember that the response will be json formated, so having a parser could be useful.
Why you don't want to use external libs?