wsdl 肥皂服务器不返回 xml
我必须用 php 编写soap wsdl 服务器。 要求: 请求:两个参数表示startDate &结束日期 回复:如下
<students>
<student FirstName='Mr. A' LastName='B' />
<student FirstName='Mr. B' LastName='C' />
</students>
任何人都可以帮我编写 wsdl 文件吗?肥皂服务器满足上述要求。我尝试了很多方法,但最近四天都失败了。
请帮助编写 WSDL 文件和与 WSDL 文件通信的 SOAP 服务器,如果可能的话,测试客户端进行验证。
提前致谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 SoapServer 类:
http://www.php.net/manual/en/class.soapserver.php
请记住,此类并不总是可用:
http://www.php.net/manual/en/soap.installation.php
使用 Google,我找到了一些解释如何设置 SOAP Web 服务的教程:
<块引用>
请帮助编写 WSDL 文件和与 SOAP 服务器通信
WSDL 文件,如果可能的话,测试客户端进行验证。
恕我直言,对一个简单的问答网站抱有很高的期望......
Try the
SoapServer
class:http://www.php.net/manual/en/class.soapserver.php
Keep in mind that this class is not always available:
http://www.php.net/manual/en/soap.installation.php
Using Google I found a few tutorials explaining how to set up a SOAP web service:
IMHO quite high expectations on a simple Q&A site...