当操作接受接口时从 PHP 调用 ASMX Web 服务

发布于 2024-10-11 09:56:03 字数 219 浏览 4 评论 0原文

我有一个 .Net Web 服务,它有一个方法接受我编写的接口作为参数。我们将此接口称为 ICustomer。

您将如何从 PHP 调用此方法?

方法定义是

    [WebMethod]
    public string RegisterCustomer(ICustomer customer)
    {
     ...
    }

I have a .Net web service that has a method that accepts an Interface that I have written as a parameter. Let's call this interface ICustomer.

How would you call this method from PHP?

The method definition is

    [WebMethod]
    public string RegisterCustomer(ICustomer customer)
    {
     ...
    }

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

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

发布评论

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

评论(2

提笔落墨 2024-10-18 09:56:03

您可以在 PHP 上创建一个具有与 .NET 相同属性的 StdClass。

例如:

<?php
$object = new stdClass();
$object->Name = "Test";
$object->LastName = "More tests";
$object->AnotherAttribute = "Abc";
...

$client = new SoapClient($url);
$client->__soapCall("MethodName", array('parameters' => array('customer' => $object));
...
?>

如果我理解你的问题,是这样的。

you can create a StdClass on PHP with same attributes that in .NET.

ex:

<?php
$object = new stdClass();
$object->Name = "Test";
$object->LastName = "More tests";
$object->AnotherAttribute = "Abc";
...

$client = new SoapClient($url);
$client->__soapCall("MethodName", array('parameters' => array('customer' => $object));
...
?>

If I understand your question, is this.

ヅ她的身影、若隐若现 2024-10-18 09:56:03

肥皂?

$client = new SoapClient($url);
$result = $client->ICustomer($param);

SOAP?

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