1

我现在很迷茫。我正在尝试使用 Soap 客户端,但出现以下错误

Uncaught SoapFault exception: [0] Unable to load Soap extension on the server in /opt/local/apache2/htdocs/code/import.php

在 import.php 里面

导入.php

$client = new SoapClient('http://mymagentowebsite.com/api/soap/?wsdl');
$session = $client->login('api_master', 'api123');

当我进入我的 phpinfo 时,我可以看到我的肥皂客户端已启用 在此处输入图像描述

我正在使用 Macports,并且我也安装了肥皂端口扩展

以下是我在 php.ini 中找到的内容

extension=php_soap.dll
[soap]
; Enables or disables WSDL caching feature.
; http://php.net/soap.wsdl-cache-enabled
soap.wsdl_cache_enabled=1

; Sets the directory name where SOAP extension will put cache files.
; http://php.net/soap.wsdl-cache-dir
soap.wsdl_cache_dir="/tmp"

; (time to live) Sets the number of second while cached file will be used
; instead of original one.
; http://php.net/soap.wsdl-cache-ttl
soap.wsdl_cache_ttl=86400

; Sets the size of the cache limit. (Max. number of WSDL files to cache)
soap.wsdl_cache_limit = 5

我究竟做错了什么 ?

4

1 回答 1

5

我已经想通了。我的本地机器安装了 SOAP CLIENT 和 SERVER 扩展,但我调用的服务器没有。我不得不去远程服务器并安装soap扩展。我从以下得到了我的消息来源。

我很困惑,因为我认为错误指的是我的本地机器,但它指的是我的远程机器。

PHP SOAP 致命错误消息

于 2013-02-06T22:46:51.953 回答