0

プロジェクトの追跡やさまざまな作業を行うために社内で使用する ASP.NET Web サイトがあります。その一部を統合して、Sharepoint2007 WSS と共存させたいと考えています。

基本的に、本当に必要なことは、Sharepoint サイトの 1 つのリストにアイテムを追加できるようにすることです。

どこから始めればよいかわかりません。オンラインで少し調べましたが、複雑すぎるようです。簡単に始められるクイック スタート ガイドはありますか?

4

1 に答える 1

1

The SharePoint Web Services would be a logical place to start. In my opinion this would be the easiest way to build interaction between ASP.NET and SharePoint.

A list of available web services can be found on MSDN.

If adding items to a list is the primary goal, then check out the UpdateListItems method of the Lists web service.

With the scope narrowed to Web Services, you can certainly find tutorials/references online. However, this InfoQ post by Trent Swanson is a decent introduction to SP web services. Note that they recommend generating .NET types using XSD files; in practice, for simple projects I have simply parsed the XML myself using LINQ. You can make it as easy or complex as you like, I suppose.

于 2010-09-01T22:15:21.907 に答える