Skip To Content

Пример: публикация сервиса с использованием файла определения сервиса

Файд определения сервиса (.sd) заключает сервис в один передаваемый файл, при необходимости включающий исходные ГИС-данные. Затем инструмент геообработки Загрузить определение сервиса передает определение сервиса на сайт ArcGIS Server и публикует его. Вы можете вызвать инструмент из пакета сайта ArcPy, включенного в ArcGIS Server.

В следующем примере Python выполняется цикл по заданной папке на машине Microsoft Windows, находит определения сервисов, содержащиеся в папке (за исключением подпапок), и публикует их на автономном сайте ArcGIS Server, указанном с помощью файла подключения (.ags).

Для запуска инструмента требуется локальное расположение данных, содержащее файлы определения сервиса, путь к файлу подключения ArcGIS Server и имя целевой папки на сайте ArcGIS Server.

# Publishes all service definitions in an operating system directory
#  (excluding subfolders). Services are published but not started.
# Import required modules
import arcpy
import os

# Define path to SD files on local machine
sdDir = "C:/data/sd_files"

# Provide path to ArcGIS Server connection file
con = "C:/projects/publishing_project/arcgis on myserver_6443.ags"

# Destination folder name on ArcGIS Server
serverFolder = "ScriptPublish"

# Loop through all items in local directory
sdList = os.listdir(sdDir)

for sd in sdList:
    
    # Construct path to item
    extension = os.path.splitext(sd)[1]  # Get file extension
    sdPath = os.path.join(sdDir, sd)

    # Check if item is an SD file and, if so, try to publish
    if os.path.isfile(sdPath) and extension == ".sd":    
        try:     
            arcpy.UploadServiceDefinition_server(sdPath, con, "", "", "EXISTING", serverFolder, "STOPPED")
            print("Published " + sd + " with no errors reported.")
            
        except:
            print("Could not complete publishing operation for " + sd + ".")

        print(arcpy.GetMessages())