如何在php中使用soap客户端从wsdl中获取函数列表

发布于 2024-11-07 22:53:31 字数 124 浏览 0 评论 0原文

我有一个 http: 路径和一个 wsdl 文件。 但它不适用于本地IP和服务器IP。 它只能在移动设备上工作。 我想检查这个网络服务是否工作正常。 如果工作,我想从 wsdl 获取函数列表。 怎么样?

请尽快帮助我。

I have one http: path and one wsdl file.
but it is not work in local ip and server ip.
it is work only mobile.
i want to check this webservice is working is not working.
If working, i want to get function list from wsdl.
How it?

Plz help me as soon as possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

顾冷 2024-11-14 22:53:31

这将列出该服务的可用功能:

$client = new SoapClient('http://hostsite');
var_dump($client->__getFunctions());

This will list the available functions from the service:

$client = new SoapClient('http://hostsite');
var_dump($client->__getFunctions());
缱倦旧时光 2024-11-14 22:53:31

您可以使用 BubbleSOAP php 脚本:

try{
   $client = new BubbleSOAP($wsdl_url);
   $list=$client->__getFunctionsNames();
   foreach($list as $name){
      echo $name;
   }
}
catch(Exception $e){
   echo $e->getMessage();
}

https://github.com/andreaval/Bubble-SOAP

You can use the BubbleSOAP php script:

try{
   $client = new BubbleSOAP($wsdl_url);
   $list=$client->__getFunctionsNames();
   foreach($list as $name){
      echo $name;
   }
}
catch(Exception $e){
   echo $e->getMessage();
}

https://github.com/andreaval/Bubble-SOAP

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文