jQuery SOAP Client

码农软件 · 软件分类 · 其他jQuery插件 · 2020-01-14 11:14:00

软件介绍

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
}

本文地址:https://codercto.com/soft/d/23353.html

逆流而上

逆流而上

阿里巴巴集团成长集编委会 / 电子工业出版社 / 2017-11 / 59.00

本书是阿里巴巴集团荣耀背后的技术血泪史。全书通过分享业务运行过程中各个领域发生的典型“踩坑”案例,帮助大家快速提升自我及团队协作,学习到宝贵的处理经验及实践方案,为互联网生产系统的稳定共同努力。从基础架构、中间件、数据库、云计算、大数据等技术领域中不断积累经验,颠覆技术瓶颈,不断创新以适应不断增长的需求。 本书主要面向互联网技术从业人员和在校师生,使读者能够通过此书基本了解阿里在各技术领域的能力,......一起来看看 《逆流而上》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试