Sharepoint 2007 开发入门
我们有一个 ASP.NET 网站,我们在内部使用它来进行一些项目跟踪和各种工作。我们希望集成其中的一些部分,以便与 Sharepoint2007 WSS 共存。
基本上,我们真正需要做的是能够将项目添加到 Sharepoint 站点之一的列表中。
我不知道从哪里开始。我在网上查了一下,但似乎过于复杂。有没有可以让我轻松入门的快速入门指南?
We have an ASP.NET website that we use internally to do some project tracking and various work. We would like to integrate some pieces of it to co-exist with 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.
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SharePoint Web 服务将是一个合乎逻辑的起点。在我看来,这将是在 ASP.NET 和 SharePoint 之间构建交互的最简单方法。
可用 Web 服务列表可以在 MSDN 上找到。
如果将项目添加到列表是主要目标,请查看
列表
Web 服务。随着范围缩小到 Web 服务,您当然可以在线找到教程/参考资料。但是,这篇 InfoQ 帖子Trent Swanson 对 SP Web 服务进行了很好的介绍。请注意,他们建议使用 XSD 文件生成 .NET 类型;在实践中,对于简单的项目,我只是使用 LINQ 自己解析 XML。我想,你可以根据自己的喜好将其变得简单或复杂。
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 theLists
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.