I really need your support urgently, I am currently connecting to a web service of a client who has given me 2 WSDL routes to connect me. The first connects me without problem, but when applying the same structure to consume the other service, the following erro throws me:
Technical: PX000040: BEA-382505: XPath statement produced no nodes to validate
Does anyone know what this error is?
this is my code:
public function name()
{
$client = new SoapClient(“servicio?wsdl”, array(
‘location’ => “url a conectarme”,
));
$params = array(
‘objetodelmetodo’ => array(
‘parametro 1’ => ‘string’,
‘parametro 2’ => ‘string’,
‘parametro 3’ => int,
‘parametro 4’ => int,
‘parametro 5’ => int,
‘parametro 6’ => int
)
);
$response = $client->Metodo($params);
return response()->json($response);
}