You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The page Node.js Interface to the E2E Bridge was not found  -- Please check/update the page name used in the MultiExcerpt-Include macro

Simply add a dependency to e2e-bridge-lib in your package.json file or install it using:

npm install e2e-bridge-lib

You can find more a more detailed documentation of the package on the GitHub or NPM pages.

Usage Example

var E2EBridge = require('e2e-bridge-lib');
var bridgeInstance = new E2EBridge('localhost', 8080, 'admin', 'admin');

bridgeInstance.startXUMLService('PurchaseOrderExample', function(error){
    if(error) {
        console.error('Error occured: ' + error.errorType);
    } else {
        console.log('Startup done.');
    }
});
  • No labels