/ / C#WPFでSharepoint 2003に接続 - c#、wpf、sharepoint、dll、com

C#でSharepoint 2003に接続するWPF - c#、wpf、sharepoint、dll、com

リストする必要があるWPFアプリケーションを作成していますSharepoint 2003サーバーからの休日の詳細。使用するのに適切なライブラリは何でしょうか。 COMオブジェクトに追いやられたのですか、それともSP 2003と互換性のある.NETライブラリが存在しますか?

回答:

回答№1は0

2つの方法があります:

a。 Sharepoint Webサービスを使用する

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.

b。 SharepointオブジェクトモデルとMicrosoft.Sharepoint.dllを使用する(WPFアプリケーションは、sharepointがインストールされているのと同じサーバー上で実行できます)