在magento中使用Soap
我正在尝试跟踪有关如何在 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);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 SOAP 代码中有
www.site.com
,请将其替换为localhost
或任何适合您的服务器的正确 URL。您还需要根据 somestuff.method 替换为真实对象和方法rel="nofollow">Magento 文档where you have
www.site.com
in your SOAP code, replace it withlocalhost
or whatever the correct URL is for your server. You'll also need to replacesomestuff.method
with real objects and methods as per the Magento documentation