Magento root で次のコードを実行すると
<?php
$client = new SoapClient('http://localhost/mymagento/index.php/api/v2_soap/index?wsdl=1', array('cache_wsdl' => WSDL_CACHE_NONE));
$session = $client->login('testuser', 'testuser');
$result = $client->salesOrderList($session);
echo"<pre>";
print_r($result);
echo"</pre>";
?>
次のエラーが表示されます
Fatal error: Uncaught SoapFault exception: [4] Resource path is not callable. in /var/www/html/mymagento/sales_order.php:9
Stack trace:
#0 /var/www/html/mymagento/sales_order.php(9): SoapClient->__call('salesOrderList', Array)
#1 /var/www/html/mymagento/sales_order.php(9): SoapClient->salesOrderList('98850601ed8aa6f...')
#2 {main}
thrown in /var/www/html/mymagento/sales_order.php on line 9
しかし、私が走るとき
$result = $client->salesOrderInfo($session,'100000030');
エラーは出ません。
これを修正する方法は?助けてください