Currently, only http protocol is supported.
To enable db instances that are only available through https, a few changes have to be made.
Switch to xmlrpc.createSecureClient if https is needed.
|
var client = xmlrpc.createClient(assign({}, defaultRPCoptions, options)) |
It is yet not decided on how to trigger switching to https.
Idea:
const ex = require('@existdb/node-exist')
ex.connect({
'secure': true
})
Currently, only
httpprotocol is supported.To enable db instances that are only available through https, a few changes have to be made.
Switch to
xmlrpc.createSecureClientif https is needed.node-exist/components/connection.js
Line 17 in 0b8ef3e
It is yet not decided on how to trigger switching to https.
Idea: