我正在创建一个 WPF 应用程序,它应该列出来自 Sharepoint 2003 服务器的假期详细信息。什么是合适的库?我是降级为 COM 对象还是存在与 SP 2003 兼容的 .NET 库?
问问题
335 次
1 回答
0
有2种方式:
一个。使用 Sharepoint 网络服务
Suppose your sharepoint server URL is as follows
https://MyDomain/MySite/default.aspx
Then replace default.aspx with /_vti_bin/lists.asmx to get list of web services expose by sharepoint.
https://MyDomain/MySite/_vti_bin/lists.asmx
This will provide you with list of all operations exposed by service.
You can use GetList to get calendar list and check if you get desired result.
湾。Uisng Sharepoint 对象模型和 Microsoft.Sharepoint.dll(WPF 应用程序可以在安装了 sharepoint 的同一台服务器上运行)
于 2013-09-05T11:50:58.363 回答