0

我有休息服务。我将此服务托管到本地系统中的 IIS 并在 mvc3 应用程序中使用。它运行没有任何错误。但是在同一个应用程序中,我无法使用远程服务器上托管的其余服务。我编写了以下 jquery 来访问它:

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

              $.ajax({
                  url: "http://portno/Student.svc/AutoComplete?Branch=Civil&RecordLimit=4&s_name=Linda",
                  type: "GET",
                  contentType: "application/json; charset=utf-8",
                  data: {},
                  dataType: "xml",
                  success: function (data) {                  
                     alert(data.documentElement.childNodes[3].textContent);
                  },
                  error: function (error) {                   
                     alert("Error: " + error.text);
                   }
              });
          });
     });

这里有什么错误吗?请帮我。谢谢你。

4

0 回答 0