我有这两个共享点 Web 应用程序,它们位于具有不同网站集和内容的同一台服务器上。我想做的是开发一项服务,该服务将被安排在特定的服务器日期和时间运行。
第一个 Web 应用程序是一个内部站点,只允许内部用户查看该站点。虽然第二个 Web 应用程序是公共站点,但允许任何人查看该站点。
现在我想根据以下标准在两个 Web 应用程序之间进行同步:
1.) Retrieve information from internal site
-Group name
-Group description
-Group owner
-Group owner email
-Group url
-Discussion forum url
2.) Copy everything to the external site (public site) all the retrieved data that is
not found in the external site
---------------------------------------------------
Example:
http://MyInternalSite.com with subsites
Subsites:
-AGroup
-BGroup
-CGroup
And I have this external sharepoint site
http://MyExternalSite.com with subsites
Subsites:
-AGroup
-BGroup
请注意,除了 CGroup 之外,所有子站点都存在于 MyInternalSite.com 和 MyExternalSite 中。我打算同步这两个站点。
例如,今晚晚上 10 点,我将复制在 PrivateSite 中找到的所有子站点,而这些子站点在 PublicSite 中找不到。所以基本上在今晚 10 点,1 个子站点将被复制到 PublicSite,即 CGroup。
My questions:
1.) Is there some kind of a service that would work or act for this purpose,
like maybe a sharepoint-api service?
2.) What are the possible things that I need to consider before I do this?
谢谢!:)