jQuery SOAP Client

程序名称:jQuery SOAP Client

授权协议: 未知

操作系统: 未知

开发语言:

jQuery SOAP Client 介绍

This is a jQuery implementation of SOAP Client and it is based on another
jQuery plug-in called xmlObjectifier.

This library provides an easy way to communicate with SOAP web services from
the client-side javascript (all domain restrictions are still there).
SOAPClient supports complex/nested request objects as well as attributes and
values within request object nodes. You can also set Header objects as well.

Practical example of how to use SOAPClient can be found on my site by
following Demo link. I also have included a simple ASP.NET Proxy example that
will resolve Cross-Browser Restrictions (if you’re running IIS w/ ASP.NET)

Example
var soapBody = new SOAPObject(“testObject”); //Create a new request object
soapBody.attr(“type”,”test”); //Setting attributes of that object
soapBody.val(“Hello World”); //Setting value of that object

//You can also use chained method that looks like this:
// var soapBody = new SOAPObject(“testObject”).attr(“type”,”test”).val(“Hello
World”);

//Create a new SOAP Request
var sr = new SOAPRequest(“MyAction”, soapBody); //Request is ready to be sent

//Lets send it
SOAPClient.Proxy = "http://my-ws.com/webservice/”; //Specify web-service
address or a proxy file
SOAPClient.SendRequest(sr, processResponse); //Send request to server and
assign a callback

function processResponse(respObj) {
//respObj is a JSON equivalent of SOAP Response XML (all namespaces are
dropped)
//… do something with response
}

jQuery SOAP Client 官网

http://plugins.jquery.com/project/jqSOAPClient

相关编程语言

多功能下拉选择插件 SelectPage 简洁而强大的下拉分...
AutoComplete 是一个 jQuery Mobile 的插件,用于实...
Combogrid 是一个jQuery插件用于为输入框添加高级自...
Autobox2这个jQuery插件,可以用于创建类似于Facebo...
Link Scraper TextBox 是一个文本框的扩展插件,当你...
Awesomplete 超小超好用的超漂亮的 autocomplete 框...