user470714
user470714

Reputation: 2888

Can't Access SOAP Web Service Over HTTPS

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 ...

Upvotes: 2

Views: 11887

Answers (1)

crockpotveggies
crockpotveggies

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:

  1. Verify your listening port on nginx is 443
  2. Verify your proxy location is 127.0.0.1:80 (port 80 because it's HTTP, unless you customized it)
  3. If you are using CentOS, I've found iptables to be the culprit of many problems. Sometimes I just forget to open up port 443 in the firewall. To configure, go to /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

Related Questions