混搭和 SharePoint

发布于 2024-07-06 17:15:48 字数 173 浏览 6 评论 0原文

SO 中的有人可以向我提供有关与 SharePoint 平台相关的企业混搭和技术的资源列表吗?

更新(根据评论中@Spoon16的建议):- 混搭应用程序通常可以从 SharePoint 站点检索联系人列表,并在地图(也可能是 Google 地图)上显示所选联系人的地址。

Can somebody in SO please provide me with a list of resources about Enterprise Mashups and technologies related to SharePoint platform?

Update (as per suggestion of @Spoon16 in the comments):-
The mashup application may typically retrieve a list of contacts from a SharePoint site and display the address of a selected contact person on a map (again maybe Google maps).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黎歌 2024-07-13 17:15:48

有多种不同的方法可以将外部信息提取到 SharePoint 中。

要在外部应用程序中混合 SharePoint 数据:

  • Web 服务; 底层 API 的出色 Web 服务覆盖范围将允许您构建外部混搭(就像您在问题评论中提到的那样)。 具体请查看列表服务

要在 SharePoint 内部混合外部数据源:

  • 业务数据目录; 当您拥有企业版 Microsoft Office SharePoint Portal 服务器时,您可以使用业务数据目录以读/写方式与各种外部数据源进行交互。 适用于关系数据库和 Web 服务。
  • 企业搜索; SharePoint 企业搜索技术提供的索引功能非常广泛
  • RSS Web 部件 ; 允许您使用 XSLT 转换并将其应用于任何 RSS 源,并在任何 SharePoint 页面上输出结果
  • 页面查看器 Web 部件; 允许将 iframe 嵌入到任何页面上,提供将外部应用程序集成到 SharePoint 环境中的简单机制

SharePoint 具有 广泛的开发框架,使您能够利用 .NET 框架的全部功能来实现您最疯狂的混搭梦想。 如果您愿意,您甚至可以向 SharePoint 添加其他服务,以自定义方式公开基础数据(开箱即用 Web 服务未涵盖)。

There are a number of different ways to pull external information into SharePoint.

For mashing up SharePoint data in external applications:

  • Web Services; great web services coverage for the underlying API will allow you to build external mashups (like the one you mention in your question comment). Specifically take a look at the Lists Service.

For mashing up external data sources inside of SharePoint:

  • Business Data Catalog; when you have the enterprise version of Microsoft Office SharePoint Portal server you can use the Business Data Catalog to interact with a very wide variety of external datasources in a read/write fashion. Works with relational databases and web services.
  • Enterprise Search; the indexing capabilities provided by SharePoint's Enterprise search technology are extensive
  • RSS Web Part; allows you to consume and apply XSLT transform to any RSS feed and output the result on any SharePoint page
  • Page Viewer Web Part; allows an iframe to be embedded on any page, provides an easy mechanism of integrating external applications into the SharePoint environment

SharePoint has an extensive development framework that enables you to leverage the full capabilities of the .NET framework to make your wildest mashup dreams come true. You can use even add additional services to SharePoint that expose the underlying data in custom ways (not covered by the Out of the Box web services) if you like.

回忆凄美了谁 2024-07-13 17:15:48

此外,还可以自定义列表视图,以便使用 Google 地图 呈现地图。

解决方案描述

使用自定义列表来存储地理位置并在地图上将其可视化。 自定义列表基于具有自定义内容类型和渲染地图的视图的通用列表。

地图列表视图是使用自定义 XSLT 样式表和地图 JavaScript 渲染控制来实现的。

有关实施详细信息,请遵循帖子 将地图功能引入 SharePoint 2010:呈现地图列表视图

用法

对于指定的解决方案,我们只需要创建用于存储联系人的 List 实例并填充它。

保存地理位置的表格
在此处输入图像描述

地图列表视图
在此处输入图像描述

Also it is possible to customize List View in order to render Map using Google Maps.

Solution description

For storing geographical locations and visualizing it on Map is used Custom List. Custom List is based on Generic List with Custom Content Type and with View to render Map.

Map List View is implemented using custom XSLT style sheet and JavaScript rendering control for Map.

For implementation details please follow post Bringing Map functionality into SharePoint 2010: Rendering Map List View

Usage

For specified solution we only need to create List instance for storing contacts and populate it.

Form for saving of geographical locations
enter image description here

Map List View
enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文