Sending Variables To another case in Processmaker using __SoapCall routeCase method and getting the error Not Found. Yet in working in the __SoapCall'login'.
Below is my PHP Code in processmaker
$client = new soapclient(
$wsdlUrl,
[
'cache_wsdl' => WSDL_CACHE_NONE,
'trace' => true,
'exceptions' => true,
'stream_context' => stream_context_create($opts),
'verifyhost' => false
]
);
$client->__setLocation($endpoint);
$params2 = [
[
'sessionId' => $sessionId,
'caseId' => $caseId,
'delIndex' => $delIndex
]
];
try{
//dd($client,$params);
$result2 = $client->__SoapCall('routeCase', $params2);
}catch (Exception $e){
throw new Exception("Soap request failed! Response: ".$e->getMessage());
}
The error I am getting is ** Soap request failed! Response: Not Found**
What issue causes the Not Found error?