-
why java call out policy is disable on apigee cloud?
-
how can we run sql queries on apigee cloud without using bass while retrieving our db from cloud?
-
I have made the db on this “https://mlab.com” cloud and connecting with apigee cloud using this " mongodb://:@ds145573.mlab.com:45573/demodb " URL shows on mlab while substituting my db user name and password but its not connecting with apigee cloud.
var http = require('http');
http.createServer(function (req, res){
var MongoClient = require('mongodb');
var url = "mongodb:// : @ ds145573.mlab.com:45573/demodb";
MongoClient.connect(url, function(err, db) {
if (err) throw err;
db.close();
res.write("connected");
res.end();
});
});
shows this error, could anyone please tell my mistake?
{"fault":{"faultstring":"Script node executed prematurely: Script index.js exited with status code 0","detail":{"errorcode":"scripts.node.runtime.ScriptExitedError"}}}