从独立应用程序访问 Sharepoint 列表
我有一个独立应用程序,它需要访问 Sharepoint 列表。我偶然发现了几篇文章,其中提到 Web 服务是实现这一目标的方法。
但我无法找到编写 Web 服务以从共享点获取列表的分步路径。除此之外,应用程序还可以将 WSDL 文件作为输入。
请让我知道如何处理这种情况。
I have a Standalone application, which needs to access a Sharepoint list. I bumped into a few articles, mentioning Web Service is the way to go about it.
But I am unable to find a step by step path to write a web service to fetch list from sharepoint. In addition to this, the application can take a WSDL file as an input.
Please let me know how to proceed about this scenario.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 SharePoint 2007,那么 Web 服务是执行此操作的唯一方法。 以下是可用的不同 Web 服务的列表。
如果您使用的是 SharePoint 2010,则可以使用 客户端对象模型。
If you are using SharePoint 2007, then web services is the only way to do this. Here is a list of the different web services available.
If you are using SharePoint 2010 you can use the client object model.
您可以简单地使用 SharePoint Web 服务 Lists.asmx(在 SharePoint 2007 和 2010 中)
有关详细信息,http: //msdn.microsoft.com/en-us/library/lists.lists.getlist(v=office.12).aspx#Y82
You can simply use the SharePoint webservice Lists.asmx (both in SharePoint 2007 and 2010)
For more information, http://msdn.microsoft.com/en-us/library/lists.lists.getlist(v=office.12).aspx#Y82