Dynamics 4.0.7 Web 服务中缺少程序集
我添加了 MS Dynamics 4.0.7 的 Web 服务参考。我正在 VS 2010 中进行开发,但缺少 Microsoft.CRM.SDK.Messages 命名空间。 Messages 命名空间之前的所有内容都工作正常。
我正在研究一个使用 WhoAmIRequest 和 WhoAmIResponse 类的基本示例,但由于缺少程序集,我无法进一步了解。
谢谢
I have added a web service reference for MS Dynamics 4.0.7. I'm developing in VS 2010 and I'm missing Microsoft.CRM.SDK.Messages namespace. Everything up to Messages namespace works fine.
I'm working on a basic example which uses WhoAmIRequest and WhoAmIResponse classes, but I can't get any further due to missing assemblies.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
缺少的命名空间是 SDK 程序集的一部分。它不包含在网络参考中。我假设您指的是类 MessageName。
请记住,您可以使用 Web 引用或 sdk 程序集,但不能同时使用两者,因为在这种情况下会出现类型冲突。
The namespace which is missing is part of the SDK assemblies. It is not included in the web reference. I assume you refer to the class MessageName.
Keep in mind that you could use either the web reference or the sdk assemblies, but not both at the same time as you will get type conflicts in this case.
WhoAmIRequest 和 WhoAmIResponse 消息包含在 Web 参考 (crmservice) 中。
您可以这样获取当前用户:
The WhoAmIRequest and WhoAmIResponse messages are included in the web reference (crmservice).
You can get the current user like this: