Loading TOC...

admin.hostGetForeignPort

admin.hostGetForeignPort(
   config as element(configuration),
   host-id as (Number|String)
) as Number

Summary

This function returns the port used by the specified host to listen for communications from foreign hosts.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
host-id The ID of the domestic host.

Required Privileges

This operation requires at least one of the following privileges:

http://marklogic.com/xdmp/privileges/admin/host

http://marklogic.com/xdmp/privileges/admin/host/{id}

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  var cfg = admin.getConfiguration()
  var hid = xdmp.host("master.marklogic.com")
  admin.hostGetForeignPort(cfg, hid)

   //Returns the port used by the specified host to listen for foreign
   //communications. 
    

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