当操作接受接口时从 PHP 调用 ASMX Web 服务
我有一个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 PHP 上创建一个具有与 .NET 相同属性的 StdClass。
例如:
如果我理解你的问题,是这样的。
you can create a StdClass on PHP with same attributes that in .NET.
ex:
If I understand your question, is this.
肥皂?
SOAP?