RPG 使用的 PHP SOAP Web 服务是否需要 WSDL?
我有一个非常基本的初学者 PHP Web 服务:
<?php
function EchoText($text){
return "ECHO: ".$text;
}
$server = new SoapServer(null,
array('uri' => "urn://tyler/res"));
$server->addFunction('EchoText');
$server->handle();
?>
我了解有关 WSDL 的一些基础知识...它们“解释”如何访问 Web 服务、它具有哪些功能、该函数包含哪些参数以及返回值可能是什么。
问题 1) 我是否需要为将调用我的 Web 服务的 RPG 程序创建 WSDL?
问题 2) 如果#1 为“是”->我需要通过创建新的 .xml 文档来手动执行此操作吗?
问题 3) 如果#2 为“是”->有人可以为我提供这样一个简单的 Web 服务的示例 WSDL(我上面的示例)吗?然后我可以构建我的代码并扩展示例。
预先感谢您的任何帮助、建议或链接!
I have a very basic, beginners PHP web service:
<?php
function EchoText($text){
return "ECHO: ".$text;
}
$server = new SoapServer(null,
array('uri' => "urn://tyler/res"));
$server->addFunction('EchoText');
$server->handle();
?>
I understand some basics about WSDL's... that they "explain" how to access a web service, what functions it has, what parameters that function contains, and what the return value could be.
Question 1) do I need to create a WSDL for an RPG program which will call my web service?
Question 2) if yes to #1 -> do I need to manually do this by creating a new .xml document?
Question 3) if yes to #2 -> could someone provide me a sample WSDL for such a simple web service (my example above)? I could then build my code and expand off the example.
Thanks in advance for any help, suggestions or links!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论