英文:
Do the CRM SDK DLL's Use the deprecated OData v2? E.g. IOrganizationService in Plugins
问题
Microsoft正在弃用“组织数据服务”也称为“OData v2服务”。
https://powerapps.microsoft.com/en-us/blog/odata-v2-0-service-removal-date-announcement/
指南和解释重点在于检查URL“/xrmservices/2011/organizationdata.svc”的显式使用,建议检查CRM Web资源JavaScript文件。
但关于在插件或控制台应用程序中使用的CRM .NET SDK怎么办? 我们如何知道这些是否较旧/之前部署,可能使用“组织数据服务”?
还是可以确定.NET SDK的IOrganizationService
不使用这个端点?
英文:
Microsoft is deprecating the "Organization Data Service" aka "OData v2 service"
https://powerapps.microsoft.com/en-us/blog/odata-v2-0-service-removal-date-announcement/
The guidance and explanation focuses on checking for explicit usage of the URL /xrmservices/2011/organizationdata.svc
, says to check CRM Web Resource JavaScript files.
But what about the CRM .NET SDK's used in Plugins, or Console Apps? How do we know if those are older/deployed a while ago, maybe using the "Organization Data Service"?
Or is it a given that the .NET SDK IOrganizationService
does NOT use this endpoint?
答案1
得分: 1
根据我所知,.NET SDK 从未使用过 OData 2.0 端点,因此使用 .NET SDK 的 .NET 部分(插件、控制台应用程序、自定义工作流活动)不受 OData 2.0 移除的影响。
OData 2.0 移除主要影响 JavaScript 和 Web 资源,如果您正在使用第三方组件(如自定义库而不是官方 CRM SDK),您需要检查它们以确保。
英文:
As far as I know the .NET SDK never used the OData 2.0 endpoint, so .NET parts using the .NET SDK (plugins, console apps, custom workflow activities) are not impacted by the OData 2.0 removal.
The OData 2.0 removal mostly affects JavaScript and Web Resources, if you are using a third-party component (like a custom library and not the official CRM SDK) you need to check them just to be sure.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论