xdmp.httpOptions( uri as String, [options as Object?] ) as Sequence
Sends the http OPTIONS method to the specified URI. Returns the http response for the specified URI.
Parameters | |
---|---|
uri | The URI of the document whose options response is being requested. |
options | Options with which to customize this operation. For details on the supported options, see xdmp.httpGet. |
http://marklogic.com/xdmp/privileges/xdmp-http-options
The http functions only operate on URIs that use the http or https
schemes; specifying a URI that does not begin with http://
or https://
throws an exception.
If an http function times out, it throws a socket received exception (SVC-SOCRECV).
xdmp.httpOptions("http://localhost:8000/", { "authentication" : { "method" : "digest", "username" : "myname", "password" : "mypassword" } }) => the response from the HTTP server, for example: <response xmlns="xdmp:http"> <code>302</code> <message>Found</message> <headers> <location>/use-cases/</location> <server>MarkLogic</server> <content-length>0</content-length> <connection>close</connection> </headers> </response>