在magento中使用Soap

发布于 2024-11-18 17:10:19 字数 896 浏览 3 评论 0 原文

我正在尝试跟踪有关如何在 magento 中使用肥皂的信息,但总是在 error.log 中收到相同的消息。

如果有人遇到类似的情况,这可以给我一些提示,我们将受到欢迎。

“PHP 致命错误:SOAP-错误:解析 WSDL:无法从“http://www.site.com/index.php/api/?wsdl”加载:无法加载外部实体“http:// /www.site.com/index.php/api/?wsdl"\n 在 /var/www/test.php 第 1 行"

$client = new SoapClient('http://www.site.com/api/?wsdl');

$session = $client->login('apiUser', 'apiKey');

$result = $client->call($session, 'somestuff.method');
$result = $client->call($session, 'somestuff.method', 'arg1');
$result = $client->call($session, 'somestuff.method', array('arg1', 'arg2', 'arg3'));
$result = $client->multiCall($session, array(
    array('somestuff.method'),
    array('somestuff.method', 'arg1'),
    array('somestuff.method', array('arg1', 'arg2'))
));


// If you don't need the session anymore
$client->endSession($session);

I'm trying to follow the information about how to use soap in magento, but always get same message in error.log

If any one experience something similar, that could give me some tip, it will be welcome.

"PHP Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://www.site.com/index.php/api/?wsdl' : failed to load external entity "http://www.site.com/index.php/api/?wsdl"\n in /var/www/test.php on line 1"

$client = new SoapClient('http://www.site.com/api/?wsdl');

$session = $client->login('apiUser', 'apiKey');

$result = $client->call($session, 'somestuff.method');
$result = $client->call($session, 'somestuff.method', 'arg1');
$result = $client->call($session, 'somestuff.method', array('arg1', 'arg2', 'arg3'));
$result = $client->multiCall($session, array(
    array('somestuff.method'),
    array('somestuff.method', 'arg1'),
    array('somestuff.method', array('arg1', 'arg2'))
));


// If you don't need the session anymore
$client->endSession($session);

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

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

发布评论

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

评论(1

会傲 2024-11-25 17:10:19

如果 SOAP 代码中有 www.site.com,请将其替换为 localhost 或任何适合您的服务器的正确 URL。您还需要根据 somestuff.method 替换为真实对象和方法rel="nofollow">Magento 文档

where you have www.site.com in your SOAP code, replace it with localhost or whatever the correct URL is for your server. You'll also need to replace somestuff.method with real objects and methods as per the Magento documentation

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