0

c# で JSON オブジェクトを Web サービスに送信する Java スクリプトを作成しました。私の Web サービスには、getPerson(String text){} という json オブジェクトを取得するメソッドがあります。ajax に渡す URL がわかりません。これは私の Java スクリプトです。

<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.js"></script>

<script type="text/javascript">
    function BindJson() {

document.getElementById("demo").innerHTML=Date();

var $pString = {"firstName": "Rukshi"};

       $.ajax({
                type: "POST",
                contentType: "application/json; charset=utf-8",
                data: $pString,
                datatype: "json",
                url: "http://localhost:54884/Service1.asmx/getPerson",

                success: function (data, status) {
        alert("ok");
                },
                error: function (msg) {
        alert(msg.status);
                }
     });

}
4

0 に答える 0