RPG 使用的 PHP SOAP Web 服务是否需要 WSDL?

发布于 2024-12-06 09:25:51 字数 589 浏览 1 评论 0原文

我有一个非常基本的初学者 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文