You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I declared soap_server inside a class method, and i want to bind receiver method to the one inside the class.
class Gateway extends ControllerPublic_Abstract
{
public function messageReceiver() {
$this->abc();
}
public function actionSms()
{
$server = new soap_server();
$server->configureWSDL('MOReceiver', 'urn:MOReceiver', 'http://domain.com/gateway/sms');
// $server->wsdl->schemaTargetNamespace=$ns;
$server->soap_defencoding = 'UTF-8';
$server->register(
'Gateway.messageReceiver',
PointK_ControllerPublic_GateWay.messageReceiver doesn't work
The text was updated successfully, but these errors were encountered:
Hello @aaveidt ,
I know it has been a while, but if it still has not resolved it would be interesting to post the complete code to analyze better. With just that snippet of code I did not understand exactly what it was trying to do.
I declared soap_server inside a class method, and i want to bind receiver method to the one inside the class.
PointK_ControllerPublic_GateWay.messageReceiver
doesn't workThe text was updated successfully, but these errors were encountered: