通过 Web 服务访问 Microsoft Office SharePoint 2007
我既没有 SharePoint 经验,也没有 Web 服务经验,但应该开发一个对 Microsoft Office SharePoint 2007 Web 服务器的简单访问。我要做的就是向那里的表添加一条记录,也许从这个表或其他表中读出一些信息。访问应该从 JavaServlet 完成。
您能告诉我在哪里可以找到有关此主题的教程或其他对初学者有用的信息吗?
谢谢您的信息! 萨伊1962
I have no experience either with SharePoint, nor with Web services, but should develop a simple access to our Microsoft Office SharePoint 2007 Web server. What I have to do is to add a record to a table there, and perhaps read out some information from this or other tables. The access should be done from a JavaServlet.
Can you say where to find a tutorial about this subject or other useful information for a beginner?
Thank you for your information!
Sae1962
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速 Google 搜索发现了以下 MSDN 文章。 http://msdn.microsoft.com/en- us/library/bb862916(v=office.12).aspx
我过去曾使用过 Sharepoint Web 服务,但它们的文档非常糟糕。当时和我一起工作的一位微软 MVP 告诉我,这是因为它们最初是微软工程师事后才设计和开发的,不建议在生产中使用。然而,这是几年前的事了,所以也许现在已经改变了。
更好的方法是在 Sharepoint 中编写一个 portlet,公开您自己的 Web 服务接口,以利用更安全的对象模型执行与 Sharepoint 相关的任务。
A quick Google search turned up the following MSDN article. http://msdn.microsoft.com/en-us/library/bb862916(v=office.12).aspx
I have used Sharepoint web services in the past however the documentation for them was abysmal. A Microsoft MVP who I was working with at the time told me that was because they were originally designed and developed as an afterthought for Microsoft engineers and they are not recommended to use in production. This was years ago however so perhaps this has changed now.
The better method would be to write a portlet in Sharepoint that exposes your own web service interface to perform Sharepoint related tasks utilizing the object model which is safer.