We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Because OpenSSL defaults calls to seclevel 2, you have to specify seclevel 1
protected function stream_context ($ssl_verifypeer = true, $options = []) { $options['http']['user_agent'] = 'PHPSoapClient'; $options['ssl']['ciphers'] = 'DEFAULT@SECLEVEL=1'; // Added to enforce compatability with AEAT if (!$ssl_verifypeer) { $options['ssl']['verify_peer'] = false; $options['ssl']['verify_peer_name'] = false; $options['ssl']['allow_self_signed'] = true; }
I tested the above and it works
The text was updated successfully, but these errors were encountered:
Merge pull request #3 from parijke/patch-1
628d5e1
Update wsdlVNif.php #2
#3 Merged, thanks a lot
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Because OpenSSL defaults calls to seclevel 2, you have to specify seclevel 1
I tested the above and it works
The text was updated successfully, but these errors were encountered: