如何在Heroku上使用php和soap web服务
我们在应用程序中使用SOAP客户端库,通过PHP中的API获取Salesforce
数据。
当我们运行简单的php页面时,它可以正常运行,但不能与SOAP客户端一起运行。
我们运行此命令,得到如下所示的错误
$ heroku run php www/sandbox/index-test.php
Running `php www/sandbox/index-test.php` attached to terminal... up, run.1586
PHP致命错误:SOAP-错误:解析wsdl:无法从‘soapclient/enterprise.wsdl.xml’加载:无法在第64行加载/app/www/sandbox/soapclient/SforceBaseClient.php中的外部实体"soapclient/enterprise.wsdl.xml"
解决方案
不是将xml path用作‘soapclient/enterprise.wsdl.xml’,而是需要xml文件的完整路径‘http://domain.com/soapclient/enterprise.wsdl.xml’
相关文章