从独立应用程序访问 Sharepoint 列表

发布于 2024-11-26 01:33:18 字数 159 浏览 2 评论 0原文

我有一个独立应用程序,它需要访问 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笔芯 2024-12-03 01:33:18

如果您使用的是 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.

油饼 2024-12-03 01:33:18

您可以简单地使用 SharePoint Web 服务 Lists.asmx(在 SharePoint 2007 和 2010 中)

  1. 在您的应用程序中,添加 Web 引用“http://(sharepoint-url)/_vti_bin/lists.asmx”
  2. 完成后,您可以使用方法GetList

有关详细信息,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)

  1. In your application, add a web reference 'http://(sharepoint-url)/_vti_bin/lists.asmx'
  2. Once done, you can use the method GetList.

For more information, http://msdn.microsoft.com/en-us/library/lists.lists.getlist(v=office.12).aspx#Y82

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文