php:soap客户端,从类中获取数据

时间:2010-12-13 14:37:16

标签: php soap

我运行肥皂客户端:

$dir = "http://address.com/?Version=1.0,wsdl=1";

$client = new SoapClient($dir);

在这个服务器上是class:

all_user

    * return: array
    * access: public

all_user_dt[] get_user(string $id)

    * string $id

如何从这个班级获取信息? 我试试:

$client->all_user->get_user('213');

但是错了,我得到错误:

Fatal error: Uncaught SoapFault exception: [HTTP] Unauthorized in C:\www\index.php:38 Stack trace: #0 [internal function]: SoapClient->__doRequest('<?xml version="...' ...

1 个答案:

答案 0 :(得分:1)

“Uncaught SoapFault异常:HTTP 未经授权 ...”所以我猜你不被允许。
告诉SoapClient如何使用$options parameter进行身份验证。