无法解析符号'UserProfileWebService'

时间:2011-08-18 20:45:54

标签: c# .net sharepoint

我在msdn上发现了这篇文章:http://msdn.microsoft.com/en-us/library/ms550407.aspx,我想使用提供的代码示例,但我似乎无法弄清楚如何解决UserProfileWebService

有人知道我需要添加什么参考或者是否缺少某种SDK?

另外,对于C#,还有http://www.findjar.com的替代方案吗?

感谢您的任何信息,谢谢!

注意:我是一个共享点的菜鸟,所以我可能会遗漏一些重要的数据块:(另外,我应该指出我们正在使用Sharepoint 2010,VS2010,.net4.0和客户端)对象模型远程遍历它。

1 个答案:

答案 0 :(得分:1)

User Profile Service Web服务命名空间是对Microsoft Office SharePoint Server 2007中UserProfileService.asmx Web服务的引用的任意名称。它位于 MOSSSOAP(in mosssoap.dll)汇编UserProfileWebService类位于websvcUserProfileService命名空间中。

您需要添加对Microsoft.SharePoint.Client程序集和Microsoft.SharePoint.Client.Runtime程序集的引用。

enter image description here