我需要能够扩展在云中运行的 CRM 2011。我需要能够从一个完全独立的互联网网站执行 CRUD 操作。我有什么选择?我对 CRM 的经验为零。我刚刚发现只能在 CRM 的上下文中访问 OOB Web 服务。
问问题
2500 次
2 回答
8
我刚刚发现只能在 CRM 的上下文中访问 OOB Web 服务。
这仅适用于 REST 端点。不适用于其他端点。如果您使用 .NET 作为基础,则可以访问IOrganizationService ,或者您可以通过 SOAP 访问 Web 服务。
于 2011-05-09T19:47:27.377 回答
1
CRM 2011 exposes webservices through oData and SOAP endpoints. If you are using CRM 2011 Online you can hit these endpoints over the internet. If hosting CRM yourself, you can set it up for IFD (Internet Facing Deploy). I would suggest taking a look at the CRM 2011 SDK for oData and SOAP examples.
于 2011-05-07T04:46:48.093 回答