帮助定义 wsdl
我正在尝试使用 NuSOAP 创建一个 Web 服务,这只有一种返回 true 或 false 的方法,我需要帮助来定义 wsdl 和 SOAP,没有在 php 中使用 SOAP 的文档,我只有 2完成天数:S
function Transfer($account, $Transactiondate, $amount, $bankID)
{
//function code
return $isValidTransfer
}
I'm trying to use NuSOAP to create a web service, this only has one method that returns true or false, I need help to define the wsdl and the SOAP, there isn't documentation to use SOAP in php and I only have 2 days to finish :S
function Transfer($account, $Transactiondate, $amount, $bankID)
{
//function code
return $isValidTransfer
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 有关于使用 SOAP 的优秀文档和示例:
http://php.net/manual/en /soapclient.soapclient.php
IBM 也有 SOAP 教程:
http://www.ibm.com/developerworks/webservices/tutorials/ws-soa-callsecurephp/index.html
http://www.ibm.com/developerworks/opensource/library/os-phpws/
PHP has excellent documentation and examples on using SOAP:
http://php.net/manual/en/soapclient.soapclient.php
IBM also has SOAP tutorials:
http://www.ibm.com/developerworks/webservices/tutorials/ws-soa-callsecurephp/index.html
http://www.ibm.com/developerworks/opensource/library/os-phpws/