Loading TOC...

admin.foreignClusterGetXdqpSslAllowSslv3

admin.foreignClusterGetXdqpSslAllowSslv3(
   config as element(configuration),
   cluster-id as (Number|String)
) as Boolean

Summary

This function returns true if the SSL v3 protocol is enabled for the foreign cluster. Otherwise, false is returned.

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

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  const cfg = admin.getConfiguration()
  const fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA")
  admin.foreignClusterGetXdqpSslAllowSslv3(cfg, fcl)

   //Returns 'true' if the SSL v3 protocol is enabled for the foreign cluster.
   //Otherwise, 'false'. 
    

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