Salesforce数据库集成(维护集中数据库)
我想将我的应用程序集成到 salesforce 中。为此,我是否可以在 salesforce 和我的应用程序之间维护一个集中式数据库,以便如果有人通过 salesforce 在我的应用程序中注册,它将反映我的数据库?
注册部分是通过apex程序完成的。
I want to integrate my application in salesforce. For that can I maintain a centralized database between salesforce and my application so that if a person register in my application through salesforce it will reflect my database?
The registration part is done with apex program.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Salesforce 中创建工作流规则,并让它向 Web 服务发送出站消息,其中包含数据库中所需的详细信息。
Web 服务需要实现出站消息定义的 WSDL。
You could create a Workflow rule in Salesforce and have it send an outbound message to a web service with the details you need in your database.
The web service would need to implement the WSDL defined by the outbound message.