Table of Contents
直接写soap调用webservice的问题
Jun 23, 2016 pm 01:31 PM 我有一个 http://192.168.19.134/service/api.php?wsdl
做了简单的两个函数, feedback 和 add
我使用vb调用时,用soap toolkit很容易就可以调用了
Dim ss As New SoapClient30 ss.MSSoapInit "http://192.168.19.134/service/api.php?wsdl"MsgBox ss.feedback("zzzz")MsgBox ss.Add(34, 56)
Copy after login
但是想学习一下使用xmlhttp,通过soap来调用,应该怎么写?
url = "http://192.168.19.134/service/api.php?wsdl" oXMLHttp.Open "POST", url, False oXMLHttp.setRequestHeader "Content-Type", "text/xml; charset=utf-8" oXMLHttp.setRequestHeader "Content-length", Len(URLEncode(postData)) oXMLHttp.setRequestHeader "Accept-Language", "zh-CN" oXMLHttp.setRequestHeader "SOAPAction", "http://192.168.19.134/service/api.php?wsdl" oXMLHttp.setRequestHeader "Host", "192.168.19.134" oXMLHttp.Send URLEncode(postData)
Copy after login
postdata
postData = "<?xml version=""1.0"" encoding=""utf-8""?>" postData = postData & "<soap:Envelope xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"">" postData = postData & "<soap:Body xmlns:m=""http://192.168.19.134/service/api.php?wsdl"">" postData = postData & "<m:add>" postData = postData & "<m:aa>1</m:aa>" postData = postData & "<m:bb>2</m:bb>" postData = postData + "</m:add>" postData = postData + "</soap:Body>" postData = postData + "</soap:Envelope>"
Copy after login
我这样写的消息发过去总是收到500的错误,到底是哪里错了呢?
回复讨论(解决方案)
大哥。这里好像是php的版块。。
你的 soap 服务端支持 get 或 post 方式吗?
支持
你的 soap 服务端支持 get 或 post 方式吗?
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article
Repo: How To Revive Teammates
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
3 weeks ago
By DDD
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot tools Tags

Hot Article
Repo: How To Revive Teammates
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
3 weeks ago
By DDD
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

11 Best PHP URL Shortener Scripts (Free and Premium)

Working with Flash Session Data in Laravel

Build a React App With a Laravel Back End: Part 2, React

Simplified HTTP Response Mocking in Laravel Tests

cURL in PHP: How to Use the PHP cURL Extension in REST APIs

12 Best PHP Chat Scripts on CodeCanyon
