HI all ! I have a problem with a SOAP client... When I send the commands, server response me with error 401. I have set gm level 3 -1 and rbac 219 (account create). The branch currently used is master.
Code in PHP :
<code>
protected $soap;
public function connect(){
try {
$soap = new \SoapClient(NULL, array(
'location' => 'http://www.galaxyserver.ovh:7878/',
"uri" => "urn:TC",
'style' => SOAP_RPC,
"trace" => 1,
"username" => "soap",
"password" => "*****"
));
$command = "account create test test";
echo $result = $soap->executeCommand(new \SoapParam($command, 'command'));
} catch (Exception $e) {
print_r($e);
}
}
</code>