jQuery SOAP Client

授权协议 未知
开发语言
所属分类 jQuery 插件、 其他jQuery插件
软件类型 开源软件
地区 不详
投 递 者 宰父嘉胜
操作系统 未知
开源组织
适用人群 未知
 软件概览

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
}

  • java中动态代理实现机制 前言: 代理模式是常用的java设计模式,它的特征是代理类与委托类有同样的接口,代理类主要负责为委托类预处理消息.过滤消息.把消息转发给委托类,以及事后处理消息等.代理类与委托类之间通常会存在关联关系 ... PostgreSQL Replication之第一章 理解复制概念(1) PostgreSQL Replication系列翻译自PostgreSQL Replic

  • 连续查找动态WebService的资料 方法 依然困难重重 不知道这个算不算希望 WebService 是基于HTTP协议的一种传输方式 本质是传递XML 但是这个XML又不是普通的XML 他是一个要符合SOAP体的XML 这个SOAP体又要符合SOAP协议才行 举个例子 你写信邮出去 邮局需要你的信封上有收信人 收信人地址 寄信人地址 以及邮票 这样就符合了邮局的协议 邮局就会给你邮寄信件 而信

  • 我有一个WCF服务,我想将它作为RESTfull服务和SOAP服务公开。 以前有人做过这样的事吗? #1楼 MSDN现在似乎有一篇文章: https://msdn.microsoft.com/en-us/library/bb412196(v=vs.110).aspx 介绍: 默认情况下,Windows Communication Foundation(WCF)使端点仅对SOAP客户端可用。 在如何

  • 1.candidates 1. apache cxf javascript client 2.jquery.soap git hub rep 3.angular soap git hub rep Prefer : 3 angular soap (simple) 2. usage bower install -s angular-soap

  • 跨域WebService请求 ——Nginx+SOAP服务+Ajax客户端 sf2gis@163.com 2015年12月14日   1 目标:将WebService和客户端部署在不同的服务器,由客户端请求服务。 2 原理:Nginx将不同域的HTTP服务、网站放入统一的域中,规避跨域问题。 不同的服务器位置于不同的域。JavaScript安全性不允许POST的跨域请求(GET可以与服务器配合使用

  • 转自其它网页,用来记下学习。 今天我们将视角集中在 REST 上,它是继 SOAP 以后,另一种广泛使用的 Web 服务。与 SOAP 不同,REST 并没有 WSDL 的概念,也没有叫做“信封”的东西,因为 REST 主张用一种简单粗暴的方式来表达数据,传递的数据格式可以是 JSON 格式,也可以是 XML 格式,这完全由您来决定。 REST 全称是 Representational State

  • 我正在尝试创建一个Web服务,但在此之前,我试图找到一个我在互联网上找到的简单示例,但我不断收到以下错误: Fatal error: Uncaught SoapFault exception: [Client] looks like we got no XML document in C:\Documents and Settings\geoff\My Documents\Websites\jqu

  • 支持android webview调用,请求wsdl使用异步,加timeout配置,否则在服务未启用时,页面会卡死,很长时间(几分钟)async:true,timeout:2000(毫秒) 调式android webview页面小技巧:USB连接手机,在PC edge浏览器(chrome浏览器是chrome://)中键入edge://inspect即可,找到webview,点击inspect,查看