Reputation: 2888
What I am trying to do is hit a web service (which I built) using SSL. It doesn't seem to be working though. Some relevant information:
SOAP-ERROR: Parsing WSDL: Couldn't load from ... : failed to load external entity ...
The SSL certificate seems to be working fine otherwise. I can use HTTPS on the rest of the site; it's just the web service that's having a problem.
If I try accessing the WSDL via a browser over HTTPS, it works fine. If I try to access one of the SOAP endpoint URLs, then I get the error message.
Upvotes: 2
Views: 11887
Reputation: 13320
I'd like to point out this is likely related to your nginx configuration and for SSL there are a couple of good spots to start looking:
/etc/sysconfig/iptables/
and add a firewall rule.and last but not least....
I found this nifty guide for SOAP over SSL :) http://soapoverhttps.blogspot.ca/
Upvotes: 2