简体   繁体   English

Sharepoint 2007开发入门

[英]Getting started with Sharepoint 2007 development

We have an ASP.NET website that we use internally to do some project tracking and various work. 我们有一个ASP.NET网站,我们在内部使用它来进行一些项目跟踪和各种工作。 We would like to integrate some pieces of it to co-exist with Sharepoint2007 WSS. 我们希望将其中的某些部分与Sharepoint2007 WSS并存。

Basically what we would really need to do is be able to add items to a list in one of the Sharepoint sites. 基本上,我们真正需要做的是能够将项目添加到其中一个Sharepoint网站的列表中。

I'm not sure where to begin. 我不确定从哪里开始。 I've looked online a bit but it seems overly complicated. 我在网上看了一下,但看起来太复杂了。 Is there a quick start guide somewhere that can get me rolling with ease? 有没有可以使我轻松滚动的快速入门指南?

The SharePoint Web Services would be a logical place to start. SharePoint Web Services将是一个合理的起点。 In my opinion this would be the easiest way to build interaction between ASP.NET and SharePoint. 我认为这将是在ASP.NET和SharePoint之间建立交互的最简单方法。

A list of available web services can be found on MSDN. 可以在MSDN上找到可用的Web服务列表

If adding items to a list is the primary goal, then check out the UpdateListItems method of the Lists web service. 如果将项目添加到列表是主要目标,请签出Lists Web服务的UpdateListItems方法。

With the scope narrowed to Web Services, you can certainly find tutorials/references online. 通过将范围缩小到Web服务,您当然可以在线找到教程/参考。 However, this InfoQ post by Trent Swanson is a decent introduction to SP web services. 但是, Trent Swanson的InfoQ帖子很好地介绍了SP Web服务。 Note that they recommend generating .NET types using XSD files; 请注意,他们建议使用XSD文件生成.NET类型。 in practice, for simple projects I have simply parsed the XML myself using LINQ. 在实践中,对于简单的项目,我只是使用LINQ自己解析了XML。 You can make it as easy or complex as you like, I suppose. 我想,您可以根据自己的喜好使它变得简单或复杂。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM