Package Exports
- connect-bridge-node
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (connect-bridge-node) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
connect-bridge-node
This module allows to access data of Microsoft Dynamics CRM, Microsoft SharePoint and Microsoft Exchange (and others) via a commercial integration tool called Connect Bridge.
Technically the module is a wrapper around a proprietary rest service of an integration tool called Connect Bridge Server.
Usage
var cbnode = require('connect-bridge-node')('pg.connecting-software.com', 4433, 'youruser', 'yourpassword', 'your_cb_account');
function onError(err) {
console.error(err);
}
function onConnected() {
console.log('connected to Connect Bridge');
//if connected to i.e. Exchange account, you can query the appointments like this...
cbnode.execute("select * from Appointment;", [], onResult, onError);
}
function onDisconnected() {
console.log('disconnected');
}
function onResult(result)
{
console.log(result);
cbnode.disconnect(onDisconnected, onError);
}
cbnode.connect(onConnected, onError);
Developing
Tools
Created with Nodeclipse (Eclipse Marketplace, site)
Nodeclipse is free open-source project that grows with your contributions.