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
client = Savon.client(wsdl: "http://local.magento/api/v2_soap/index?wsdl=1", read_timeout: 300) params = {:message=>{:username=>"myuser", :api_key=>"randomapikey123"}} client.operations # works. Lists all operations client.call(:login, params)
The last line gives following Error
Savon::SOAPFault: (WSDL) SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://local.magento/index.php/api/v2_soap/index/?wsdl=1' : failed to load external entity "http://local.magento/index.php/api/v2_soap/index/?wsdl=1"
The port mappings is 80:80
80:80
As you can see, it adds /index.php to the host
/index.php
Similar issue with Vagrant rjbaker/simple-magento-vagrant#7
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The last line gives following Error
Savon::SOAPFault: (WSDL) SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://local.magento/index.php/api/v2_soap/index/?wsdl=1' : failed to load external entity "http://local.magento/index.php/api/v2_soap/index/?wsdl=1"
The port mappings is
80:80
As you can see, it adds
/index.php
to the hostSimilar issue with Vagrant rjbaker/simple-magento-vagrant#7
The text was updated successfully, but these errors were encountered: