Drupal-Salesforce 与 NuSOAP
我们有一个使用 Salesforce 模块进行集成的 Drupal 6 应用程序 (PHP 5)。 在我们当前的服务器上,一切运行良好,但我们正在迁移到不允许 Salesforce 模块所依赖的 PHP SOAP 扩展的服务器。 NuSOAP 确实可以在新服务器上运行。
从我们最初的努力来看,修补 Salesforce 模块以使用 NuSOAP 是一项非常困难的任务。 有谁知道我们可以寻求替代方案,或者可能为迁移到 NuSOAP 提供帮助?
We have a Drupal 6 application (PHP 5) using the Salesforce module for integration. Everything works great on our current server, but we are moving to a server which does not allow the PHP SOAP extension, which the Salesforce module relies upon. NuSOAP does work on the new server.
From our initial effort, it's a very difficult task to patch the Salesforce module to use NuSOAP. Does anyone know of alternatives we can pursue, or perhaps provide assistance with the move to NuSOAP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Zend SOAP 客户端,我认为这可以工作也没有 PHP 扩展。
无论如何,我不会用十英尺的阵列来接触 NuSOAP,它已经非常过时了。 最新版本是在 2005 年。
Check out the Zend SOAP client, I think that can work without the PHP extension as well.
In any case, I wouldn't touch NuSOAP with a ten foot array, it's very outdated. Latest release was in 2005.
考虑到使用 Salesforce 和集成的成本,您对自己的服务器没有足够的控制权来启用内置 SOAP 扩展,这听起来很奇怪。
正如 Mikl 所说,您仍然可以在 Zend Framework 中使用 Zend SOAP,但在 PHP 中它无法达到内置扩展的性能; 而且 ZF 的发展仍然相当快,这意味着维护成本可能会很高,这与默认的 SOAP 扩展不同。
我不想使用 NuSOAP,因为它处于未维护状态。
我认为在继续您的计划之前您确实应该重新考虑您的 PHP 配置。
It seems eerie to read that, given the cost of going with Salesforce and integrating, you don't have enough control over your own server to enable the builtin SOAP extension.
As Mikl said, you can still use Zend SOAP in the Zend Framework, but being in PHP it cannot reach the performance of the builtin extension; and ZF still evolves rather fast, meaning a dependency which can be costly to maintain, unlike the default SOAP extension.
And I would not want to use NuSOAP, due to its unmaintained state.
I think you really should reconsider your PHP configuration before continuing as you plan.