Click here to Skip to main content
15,893,486 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I'm making a call to WCF services from javascript.
When I run the application in Console I'm getting the following error:
**Failed to load resource: the server responded with a status of 405 (Method Not Allowed)
 http://localhost:8732/IServices/RoleService/json/Role/{engineer}
 XMLHttpRequest cannot load
 http:/http://localhost:8732/IServices/RoleService/json/Role/{engineer}Origin
 http://localhost:3952  is not allowed by Access-Control-Allow-Origin.**

My code is like..
JavaScript
<script src="~/Scripts/jquery-1.5.2.min.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
debugger
function GetRoles() {
$("#btnWCFREST").click(function () {
  $.ajax({
    async: true,
    url:"http://localhost:8732/IServices/RoleService/json/Role/doctor",
    type: "GET",
    dataType: "json",
    contentType: "application/json; charset=utf-8",
    success: function (msg) {
                   alert(msg);
               },
    error: function (msg) {
                   alert("Failed");
               }
    });
    });
    }
  </script>

How can I fix this issue?
I am running the application in localhost
Thanks,,
Posted
Updated 29-Aug-12 20:53pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900