0.2.9 • Published 7 years ago

connect-bridge-node v0.2.9

Weekly downloads
3
License
GPL2
Repository
github
Last release
7 years ago

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.

0.2.9

7 years ago

0.2.8

7 years ago

0.2.7

7 years ago

0.2.6

9 years ago

0.2.5

9 years ago

0.2.4

9 years ago

0.2.3

9 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago