用jquery调用web服务接受五个STRING参数?

时间:2009-06-01 19:27:25

标签: asp.net jquery ajax web-services soap

是否可以调用接受5个字符串参数而不通过json发送的webservice? (这是推荐的)我创建了一个web服务,其方法接受5个字符串参数..我有我的jquery

                $.ajax({
                type: "POST",
                url: "Service.aspx/CreateClient",
                data: "{}",
                contentType: "application/json; charset=utf-8", //// ERMMM ???
                dataType: "json", // ERMMM?
                success: function(msg) {
                    alert(msg.d);
                },
                error: function() {
                    alert('error');
                }

            });

不使用jquery的旧方法就是这样做

            this.para.add("Name", name);
            this.para.add("ClientNum", clnum);
            this.para.add("Email", email);
            this.para.add("Register", register);
            this.para.add("Message", message);

            SOAPClient.invoke(this.url, "MyService.aspx/CreateClient", this.para, true, this.completeDone, this);

在另一端它落地并填满所有参数......

推荐的方式是什么?

1 个答案:

答案 0 :(得分:1)

为什么不使用查询字符串变量并避免SOAP协议的开销?