如何使用 Rails 应用程序提取 Sharepoint 列表?
我想启用 Rails 应用程序从共享点列表中提取数据以更新模型。有人把这两件事联系起来了吗?
I would like to enable a rails app to pull from a sharepoint list in order to update a model. Has anybody meshed up these two things?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用 SharePoint Web 服务?你必须使用 SOAP 库
访问 wsdl 并使用指定的凭据
http://yoursharepoint-site/_vti_bin/Lists。 asmx?wsdl
您可以使用多种 Web 服务方法来操作 List.asmx Web 服务上的列表。
我正在用 PHP 实现它的代码,这个链接可以帮助我开始访问 Web 服务并使用
GetListItems
方法http://davidsit.wordpress.com/2010/02/23/reading-a-sharepoint-list -with-php/
你就会明白了
Have you tried to use the SharePoint Web service? you have to use SOAP library
to access the wsdl and to use the specified credential
http://yoursharepoint-site/_vti_bin/Lists.asmx?wsdl
There's multitude of web-service methods you could use to manipulate list on List.asmx web service.
I was implementing a code in PHP for it, and this link that help me to get started to access the web-service and use
GetListItems
methodhttp://davidsit.wordpress.com/2010/02/23/reading-a-sharepoint-list-with-php/
you'll get the idea