jQuery SOAP Client
- 授权协议: 未知
- 开发语言:
- 操作系统: 未知
- 软件首页: http://plugins.jquery.com/project/jqSOAPClient
软件介绍
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
}
算法设计与实验题解
王晓东 / 电子工业 / 2006-9 / 46.00元
《算法设计与实验题解》是与普通高等教育“十一五”国家级规划教材《计算机算法设计与分析》(第2版)配套的辅助教材,对主教材中的全部习题做了解答或给出了解题思路提示,并对主教材的内容进行了扩展,有些主教材中无法讲述的较深入的主题以习题的形式展现出来。为了提高学生解决实际问题的能力,《算法设计与实验题解》还将主教材中的许多习题改造成算法实现题,要求学生设计出算法并上机实现。作者还结合精品课程建设,进行了......一起来看看 《算法设计与实验题解》 这本书的介绍吧!
