PHP / jQuery/AJAX +带身份验证的 POST SOAP 请求
我正在寻找使用 jQuery/AJAX 通过 SOAP 执行表单(发布)请求的方法。
我找到了以下具有 ColdFusion 背景的 jQuery/AJAX SOAP 请求解决方案。
有人知道如何用 PHP 实现它吗?
请注意:
- 需要 ssl 连接,需要
- 肥皂身份验证(用户和密码)。
非常感谢任何帮助/建议。
I was looking for way to perform form (post) request with SOAP using jQuery/AJAX.
I have found following solution for jQuery/AJAX SOAP request with ColdFusion background.
Posting XML SOAP Requests With jQuery
Anyone know how to implement that with PHP?
Please note:
- ssl connection will be required
- soap authentication(user & pass) will be required.
Any help/suggestion much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我知道这是旧的......但我遇到了这个确切的问题(我在他拥有的链接上使用代理,并且在工作中移动到新系统时我需要在 php 中使用代理。)
如果有人感兴趣,我翻译了他们的Coldfusion 代理转换为近似的 php 等效项(没有错误检查,但 jquery ajax 调用是相同的,除了 php 文件)
这里又是一个链接,可以查看调用此代理所需的 html 和 javascript/jquery。 http://www.bennadel.com/blog /1853-Posting-XML-SOAP-Requests-With-jQuery.htm
I know this is old... but I ran into this exact problem (I was using the proxy on the link he has and I needed one in php when moving to a new system at work.)
If anyone is interested, I translated their coldfusion proxy into an approximate php equivalent (no error checking, but the jquery ajax call is identical, except to a php file)
Here is a link again to see the html and javascript/jquery required for calling this proxy. http://www.bennadel.com/blog/1853-Posting-XML-SOAP-Requests-With-jQuery.htm
SOAP 请求示例:
显示单个结果示例:
显示多个结果示例:
SOAP request example:
Displaying single result example:
Displaying multiple results example:
我已经尝试使用ajax客户端使用SOAP PHP服务器,并找到工作代码
首先从此处下载nusoap库,
然后创建< strong>server.php
之后创建 client.php
ajaxSOAP.js 文件包含
I have tried SOAP PHP server with ajax client and found working code
First Download nusoap library from Here
then create server.php
after that create client.php
ajaxSOAP.js file contains