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
First of all, thank you for this library!
I spotted an odd behaviour recently, though.
Parsing Salesforce Metadata WSDL (https://raw.githubusercontent.com/developerforce/Force.com-Toolkit-for-PHP/master/soapclient/metadata.wsdl.xml) gives pretty much data, but a list of available operations is empty.
This seems to be incorrect. The same file parsed with Ruby's wasabi SOAP library gives a correct list.
wasabi
The text was updated successfully, but these errors were encountered:
I was able to get the list of operations by setting allow_empty_soap_actions in the options. The following worked for me:
allow_empty_soap_actions
{:ok, wsdl} = Soap.init_model("https://raw.githubusercontent.com/developerforce/Force.com-Toolkit-for-PHP/master/soapclient/metadata.wsdl.xml", :url, allow_empty_soap_actions: true)
Sorry, something went wrong.
No branches or pull requests
First of all, thank you for this library!
I spotted an odd behaviour recently, though.
Parsing Salesforce Metadata WSDL (https://raw.githubusercontent.com/developerforce/Force.com-Toolkit-for-PHP/master/soapclient/metadata.wsdl.xml) gives pretty much data, but a list of available operations is empty.
This seems to be incorrect. The same file parsed with Ruby's
wasabi
SOAP library gives a correct list.The text was updated successfully, but these errors were encountered: