将 Drupal 与 OpenERP 集成
我们有一个需求,需要将 OpenERP
与 Drupal
集成。
我进行了调查,但找不到任何可以完成所需工作的 Drupal 插件/模块。
我还调查并发现OpenERP
基于客户端服务器架构,其中服务器公开基于XMl-RPC/SOAP
的Web服务,客户端将这些服务用于所有业务操作和所有用户行动。
更多信息可以在此处找到。
根据文档,所有业务处理是在服务器上完成的。
因此考虑到这种设计,并考虑到我们可以在 drupal 中创建可以执行 xml-prc/soap
操作的自定义模块,看来我们可以将 drupal
与 集成>OpenERP
。
这是唯一的方法,还是我错过了一些东西。
任何帮助将不胜感激。
We have a requirement that we need to integrate OpenERP
with Drupal
.
I investigated but could not find any Drupal addon/module which will do the desired job.
I also investigated and found that OpenERP
is based on client server architecture, where Server exposes XMl-RPC/SOAP
based webservices and client uses these services for all business operations and all user actions.
More information can be found here.
As per from the document, all the business processing is done on the server.
So considering this design in mind, and considering that we can create custom modules in drupal which can perform xml-prc/soap
operations, it seems we can integrate drupal
with OpenERP
.
Is this the only way, or i am missing something.
Any help would be highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
供您参考,
OpenERP
不支持SOAP
Web 服务,因此您肯定需要使用XML-RPC< 开发
drupal
模块/code> 网络服务!这是由
openerp_doc
示例 > 使用xml-rpc
Web 服务进行PHP
集成for your information
OpenERP
doesn't supportSOAP
web services, so thats sure you need to developdrupal
module usingXML-RPC
Web Services !Here is an example provided by
openerp_doc
forPHP
integration usingxml-rpc
web services我没有任何将
OpenERP
与其他应用程序集成的经验,但 Web 服务应该是可行的方法。也许您可以通过研究其他人如何将OpenERP
与其他解决方案(例如Magento
、Prestashop
、ezPublish
)链接起来而受益。 ...最后,
OpenERP EAI
出现了另一个有趣的解决方案,Terminatooor
。顺便说一句,似乎其他人也在研究这个问题: http://openerp.netquatro.com/openerp_cms< /a>
无论如何,如果有一个
Drupal
集成模块那就太好了!希望有帮助
最好的
I don't have any experience in integrating
OpenERP
with other applications but web services should be the way to go. May be you can benefit from studying how others did to linkOpenERP
with other solutions likeMagento
,Prestashop
,ezPublish
...Lastly an other interesting solution appeared for
OpenERP EAI
,Terminatooor
.And by the way, seems like others are working on this too: http://openerp.netquatro.com/openerp_cms
Anyway, it would be great to have a
Drupal
integration module !Hope it helps
Bests