[Solved] Unable to use SOAP extension in module

Hi!
I’ve installed Soap Server Extension for Yii2. Configured a test controller and works perfectly. Then I duplicated the contreller inside the module I’m working on, changed namespace and it doesn’t work, i get a 404 Not Found page error. Other controllers and actions, not related to soap extension works.
I think the problem is in these lines:

public function actions()
{
return [
‘hello’ => ‘mongosoft\soapserver\Action’,
];
}

I tryed changing ‘mongosoft\soapserver\Action’ in different ways with no luck… any suggestion?
Thanks in advance,
Nicola

Solved, i had to remove rules in urlManager!