Search code examples
angularjsquickbooks

Angular App integrate with QuickBooks Web connector


I have an angular application need to integrate with Quickbooks Desktop application through web connector. I did a search around and only find node.js package for integrating with QBs web connector. Are there people there who tried to integrate using angular? thanks.


Solution

  • A viable working solution would be something as described below.

    QBWC works not as the server but as a client to a SOAP web service in pull mechanism at regular intervals from a SOAP web service.

    So a viable solution is if using angularjs for client side, use a backend interfaced via a service to store all data. Use either Java/.Net/Nodejs (again if particular about js framework try npm SOAP) tech stack to create a Web service confirming to QBWC wsdl (https://test.developer.intuit.com/QBWC/TroubleshootWebServiceFS/Service.asmx?wsdl) that will pull all the from this backend and then register this endpoint at QBWC.

    Coming to vert.x, That must work out if you make sure in vert.x you are using like any other Java code.

    How to incorporate SOAP webservices within a vertx server