{"id":15568810,"url":"https://github.com/phstc/javaquickbookswebconnector","last_synced_at":"2025-04-24T00:05:47.521Z","repository":{"id":1017311,"uuid":"844861","full_name":"phstc/JavaQuickBooksWebConnector","owner":"phstc","description":"QuickBooks Web Connector (QWC) implementation in Java","archived":false,"fork":false,"pushed_at":"2014-09-13T01:52:13.000Z","size":141,"stargazers_count":13,"open_issues_count":3,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-24T00:05:41.250Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://pablocantero.com/blog/2010/08/17/guia-pratico-do-quickbooks-web-connector-com-java/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phstc.png","metadata":{"files":{"readme":"README.rdoc","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-08-17T21:53:01.000Z","updated_at":"2023-05-17T16:57:31.000Z","dependencies_parsed_at":"2022-07-15T06:16:08.337Z","dependency_job_id":null,"html_url":"https://github.com/phstc/JavaQuickBooksWebConnector","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phstc%2FJavaQuickBooksWebConnector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phstc%2FJavaQuickBooksWebConnector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phstc%2FJavaQuickBooksWebConnector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phstc%2FJavaQuickBooksWebConnector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phstc","download_url":"https://codeload.github.com/phstc/JavaQuickBooksWebConnector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250535098,"owners_count":21446508,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-02T17:21:00.780Z","updated_at":"2025-04-24T00:05:47.500Z","avatar_url":"https://github.com/phstc.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"== QuickBooks Web Connector (QWC) implementation in Java\n\nThis implementation uses wsimport (JAX-WS) to generate the interfaces for QWC Web Services.\n\nhttp://download.oracle.com/javase/6/docs/technotes/tools/share/wsimport.html\n\n=== QWC File example.qwc\n\nThe example.qwc is needed in order to add an application in the QuickBooks Web Connector.\n\nThis example is available on the QuickBooks Web Connector Programmer Guide.\n\nhttps://member.developer.intuit.com/qbSDK-current/QBSDK7.0/doc/PDF/QBWC_proguide.pdf\n\n\n \u003c?xml version=\"1.0\"?\u003e\n \u003cQBWCXML\u003e\n   \u003cAppName\u003eWCWebService1\u003c/AppName\u003e\n   \u003cAppID\u003e\u003c/AppID\u003e\n   \u003cAppURL\u003ehttp://localhost/WCWebService/WCWebService.asmx\u003c/AppURL\u003e\n   \u003cAppDescription\u003eA short description for WCWebService1\u003c/AppDescription\u003e\n   \u003cAppSupport\u003ehttp://developer.intuit.com\u003c/AppSupport\u003e\n   \u003cUserName\u003eiqbal1\u003c/UserName\u003e\n   \u003cOwnerID\u003e{57F3B9B1-86F1-4fcc-B1EE-566DE1813D20}\u003c/OwnerID\u003e\n   \u003cFileID\u003e{90A44FB5-33D9-4815-AC85-BC87A7E7D1EB}\u003c/FileID\u003e\n   \u003cQBType\u003eQBFS\u003c/QBType\u003e\n   \u003cScheduler\u003e\n     \u003cRunEveryNMinutes\u003e2\u003c/RunEveryNMinutes\u003e\n   \u003c/Scheduler\u003e\n \u003c/QBWCXML\u003e\n\n\t\nYou must change these values based on your own configuration.\n\nPay attention on the AppURL, HTTP is only permitted for localhost, for the \"internet\" you must use HTTPS.\n\n=== Usage\n\nTo use this implementation you only need to implement the com.cantero.ws.client.QBWebConnectorSvcSoap.\n\n  @WebService(endpointInterface = \"com.cantero.ws.client.QBWebConnectorSvcSoap\")\n  public class ItemQueryRqSoapImpl implements QBWebConnectorSvcSoap {\n\n\t\nThis gist https://gist.github.com/703886 contains a sample implementation.\n\n=== To run\n\nJava SE version:\n\n package com.cantero.quickbooks.ws;\n \n import javax.xml.ws.Endpoint;\n \n public class Main {\n  public static void main(String[] args) {\n   Endpoint.publish(\"http://192.168.0.137:54321/ItemQueryRqSoapImpl\",\n   new ItemQueryRqSoapImpl());\n  }\n }\n\nSpring version - app-config.xml:\n\n \u003cbean class=\"org.springframework.remoting.jaxws.SimpleJaxWsServiceExporter\"\u003e\n \t\u003cproperty name=\"baseAddress\" value=\"http://192.168.0.137:9801/\" /\u003e\n \u003c/bean\u003e\n\n \u003cbean id=\"ItemInventoryQueryRqWS\"\n \tclass=\"com.cantero.atec.placar_online.quickbooks.ws.ItemInventoryQueryRqWS\" /\u003e\n\n\n=== More\n\nA pratical guide to integrate QWC with Java SE (in portuguese):\n\nhttp://pablocantero.com/blog/2010/08/17/guia-pratico-do-quickbooks-web-connector-com-java\n\nAn example using Spring MVC (also in portuguese):\n\nhttp://pablocantero.com/blog/2010/08/28/publicando-um-web-service-jax-ws-spring-mvc-3\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphstc%2Fjavaquickbookswebconnector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphstc%2Fjavaquickbookswebconnector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphstc%2Fjavaquickbookswebconnector/lists"}