添加 CRM Web 服务引用后,Retrieve 和 RetrieveMultiple 似乎返回 XlmlElement
我正在使用 CRM 4 服务器。我创建了一个简单的控制台应用程序,并使用位于 http:///mscrmservices/2007/crmservice.asmx?WSDL 的服务向其添加了 Web 服务引用
现在,根据 SDK,服务的 Retrieve 方法应返回 BusinessEntity 和 RrieveMultiple应该返回 BusinessEntityCollection。但是,在我的项目中创建的代理中,这些方法返回 XmlElement...
有什么问题?我做错了什么?
谢谢!
I'm working with a CRM 4 server. I created a simple console application and added a web service reference to it using the service that resides at http:///mscrmservices/2007/crmservice.asmx?WSDL
Now, according to the SDK, the service's Retrieve method should return BusinessEntity and RerieveMultiple should return BusinessEntityCollection. However, in the proxy that is created on my project, these methods return XmlElement...
What's the problem? what am I doing wrong?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了解决这个问题,我实际上必须使用 CRM SDK dll 并通过它们连接到服务。无论我如何尝试,添加网络引用都无法按预期工作。
To solve this problem I actually had to use the CRM SDK dlls and connect to the service via them. Adding a web reference didn't work as expected no matter what I tried.