0

I am calling login web service.But I am not able to check what I will get from server . I do like this ? Here is my url and parameter

Here is my try http://jsfiddle.net/LsKbJ/2/

$(document).ready(function () {
        //event handler for submit button
        $("#btnSubmit").click(function () {
            //collect userName and password entered by users
            var userName = $("#username").val();
            var password = $("#password").val();

            //call the authenticate function
            authenticate(userName, password);
        });
    });

    //authenticate function to make ajax call
    function authenticate(userName, password) {
       $.ajax
    ({
        type: "POST",
        //the url where you want to sent the userName and password to
        url: "http://ii.c-cc.de/pp/REST",
        dataType: 'json',
        async: false,
        crossDomain: true,
        //json object to sent to the authentication url
        data: {Username: userName, Password: password},
        success: function () {
            //do any process for successful authentication here
        }
    })
    }
4

2 回答 2

0

我建议您创建 REST api 以使用 WCF 获取和发布数据

于 2013-10-01T08:38:21.970 回答
0

我认为您错过了服务 URL 中的方法名称 MyMethodName。还要确保控制台中没有跨源错误。您可以从服务 url的帮助页面获取方法列表。

//验证函数以进行ajax调用

url: "http://isuite.c-entron.de/CentronService/REST/MyMethodName",

例子 : url: http://isuite.c-entron.de/CentronService/REST/GetLoggedInUser

将上述验证方法 url 中的MyMethodName替换为适当的方法名称。

于 2013-10-01T08:51:46.013 回答