同じ問題が発生していました。soap apiにアクセスする必要があるorocrmブリッジをインストールし、所定の手順に従ってsoapロールとユーザーを構成してから、接続を試みました::
ログを掘り下げた後、私はこのエラーに気づきました:
[2017-07-03 16:57:46] app.CRITICAL: MageCheck
error: 0: [message]
SOAP-ERROR: Parsing WSDL: Couldn't load from
'https://my.magento.store/index.php/api/v2_soap/index/?wsdl=1' :
failed to load external entity
"https://my.magento.store/index.php/api/v2_soap/index/?wsdl=1"
[request]
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:login>
<username xsi:type="xsd:string">orocrm</username>
<apiKey xsi:type="xsd:string">***</apiKey>
</ns1:login>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
[response]
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>WSDL</faultcode>
<faultstring>
SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://my.magento.store/index.php/api/v2_soap/index/?wsdl=1' :
failed to load external entity "https://my.magento.store/index.php/api/v2_soap/index/?wsdl=1"
</faultstring>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
[code] 500 [] []
この問題が発生した理由を理解しました。実際、これはorocrmではなく、magentoに関係していました。それはファイアウォールの問題でした。実際、私はCRMサーバーがMagento APIを攻撃することを許可するルールを正しく追加しましたが、これはそれ自体に到達する必要があります!したがって、いくつかの悩みの後、自分(magentoサーバー)が独自のapi(一種の外部ルックアップ)に到達できるように、magentoサーバーのファイアウォールにルールを追加します...
とにかく、私はこれが誰かに数時間を節約することを願っています