In an internal document at work I saw reference to an HTTP POST method for deploying content from one sharepoint site to another. Is this how deployment services actually works? There isn't much documentation from Microsoft about this.
在工作的内部文档中,我看到了一种HTTP POST方法,用于将内容从一个共享点站点部署到另一个站点。部署服务实际上是如何工作的吗?微软没有太多关于此的文档。
EDIT: Let me be more specific. Here's the quote from the document:
编辑:让我更具体一点。以下是该文件的引用:
The Content Staging Farm will publish (export) content to the production environment via an HTTP post to the Central Administration web application that administers the production public facing web application. The production application server will then import this content into the appropriate SQL Server content databases and make it available to the public.
1 个解决方案
#1
It is pretty simple:
这很简单:
- Export data from sharepoint to files on filesystem (the files can be compressed).
- Push files to server on the remote farm via HTTP.
- Import data from files on filesystem to content database (runs on server that the files were pushed to).
将数据从sharepoint导出到文件系统上的文件(可以压缩文件)。
通过HTTP将文件推送到远程服务器场上的服务器。
将文件系统上的文件中的数据导入内容数据库(在推送文件的服务器上运行)。
Remove the files.
删除文件。
#1
It is pretty simple:
这很简单:
- Export data from sharepoint to files on filesystem (the files can be compressed).
- Push files to server on the remote farm via HTTP.
- Import data from files on filesystem to content database (runs on server that the files were pushed to).
将数据从sharepoint导出到文件系统上的文件(可以压缩文件)。
通过HTTP将文件推送到远程服务器场上的服务器。
将文件系统上的文件中的数据导入内容数据库(在推送文件的服务器上运行)。
Remove the files.
删除文件。