Loading TOC...

pkg:remove-server

pkg:remove-server(
   $pkgname as xs:string,
   $group as xs:string,
   $server as xs:string
) as empty-sequence()

Summary

[DEPRECATED: use cma:generate-config and cma:apply-config instead.]

Removes the configuration of the named app server from the named package.

Parameters
pkgname The name of the package from which to remove the app server configuration.
group The name of the group that contains the app server.
server The name of the app server for which to remove the configuration.

Example


xquery version "1.0-ml"; 
 
import module namespace pkg = "http://marklogic.com/manage/package" 
      at "/MarkLogic/manage/package/package.xqy";

pkg:remove-server("mypackage", "Default", "dashml")

(: Removes the configuration of the 'dashml' app server located in the 'Default'
   group from the package named, 'mypackage'. :)
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.