-
-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error (when upgrade from 0.9.51 to 0.9.10) wsdl: is not a supported type. #67
Comments
this is the error debug:
|
i think a ineed to write my solucion, the "fetchWSDL" method from "wsdl" class in the last version "0.9.10", has been changed and doesn't scan the imported schemas, I copy the old version method form version "0.5.9.1" and all its working correctly now |
Hugonauta
changed the title
Error wsdl when upgrade
Error wsdl: is not a supported type when upgrade
Oct 2, 2020
Hugonauta
changed the title
Error wsdl: is not a supported type when upgrade
Error (when upgrade from 0.9.51 to 0.9.10) wsdl: is not a supported type.
Oct 2, 2020
McArrow
added a commit
to McArrow/nusoap
that referenced
this issue
Feb 23, 2021
f3l1x
pushed a commit
that referenced
this issue
Mar 12, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Recently I update my project on laravel from 5.8 to 8 and nusoap to the last version, 0.9.10, but y got and erro when call a soap service that was working normally before the upgrade
my code:
//llamar a SOAP tigo:
$lcUrl="My URL soap service";
$client = new \nusoap_client($lcUrl, 'wsdl');
$client->soap_defencoding = 'UTF-8';
$client->decode_utf8 = FALSE;
//parametros q envio
$param = array(
'key' => SecurityKey::SecurityKeyIdentification,
'parametros' => $tcParametros
);
//llamando al método y pasándole el array con los parámetros
$lcRespuestaTigo = $client->call('consultarEstado', $param);
and i got the error:
"wsdl error: "My URL"/:consultarEstado^ (consultarEstado^) is not a supported type."
The text was updated successfully, but these errors were encountered: