Questions tagged [qbwc]

The QuickBooks Web Connector provides an API for interfacing web-based applications with desktop Intuit QuickBooks software.

Quickbooks Web Connector(QBWC) allows you to create calls without writing your own desktop application to perform them. In essence, QBWC is middleware that performs the calls for you. It does this by placing a call to your application, authenticating, and then processing calls via a queue you establish. Calls continue until your application tells it to stop.

To set up QBWC to make calls to your remote application, you will need to create a QWC file.

77 questions
0
votes
1 answer

Various QBWC errors when adding .qwc file to QuickBooks WebConnect

I am using the PHP-devkit found at https://github.com/consolibyte/quickbooks-php I have QuickBooks Web Connector 2.2.0.80 installed (newest version at this time) I am running QuickBooks Desktop 2018 US enterprise edition I removed first line of…
Derek Joseph Olson
  • 738
  • 1
  • 7
  • 22
0
votes
1 answer

QuickBooks Web Connector Error: The element 'QBXML' is used but not declared in the DTD/Schema

I have a web server connecting to QuickBooks Desktop via the Web Connector. Most of my transaction types are working, but I have a few which are not. When I run them through the XML validator, I get this error: Requested validation for QB Web…
user3302970
  • 51
  • 1
  • 2
0
votes
1 answer

Fix an error in PHP QBWC Dev Kit

I am trying to export from QB to MySQL some tables. This particular program was running well, but I am getting the following error:20170719.19:19:48 UTC:- QBWebConnector.SOAPWebService.do_receiveResponseXML() : hresult="" 20170719.19:19:48 UTC …
0
votes
2 answers

QBWC: "Index Out Of Range" in do_authenticate()

I'm using QuickBooks WebConnector 2.2.0.71 and my WCF web service (on .NET 4.6.1). After pressing "Update selected" in WebConnector serverVersion and clientVersion requests successfully processed, but authenticate failed: 20170705.06:31:00 UTC :…
smg
  • 1,096
  • 2
  • 11
  • 27
0
votes
0 answers

I am using the Consolibyte PHP Quickbooks connect. I am getting an error after connecting to quickbooks, something went wrong fetching user token

I am using the Consolibyte PHP Quickbooks connect. I am getting an error after connecting to quickbooks: something went wrong fetching user token If I try again I get the error: ErrorException in IntuitAnywhere.php line 468: Undefined index: …
0
votes
1 answer

Quickbooks Desktop Web Connector can I make an inventory adjustment based on item's id or other attribute.?

I have a program that can adjust quickbooks item/product on hand quantity through making an inventoryAdjustment. Currently i can only adjust the inventory by matching the item name. is there any other attribute i can use (item serial#, item id) to…
WABBIT0111
  • 2,233
  • 2
  • 18
  • 30
0
votes
1 answer

Modifying a RecievePayment with QB Web Connector

When I modify a payment using the RecievePaymentMod request, I need to supply the txnID of the payment. Then in the response, it sends back a txnID (don't know if it's the same or not, haven't put it into practice yet). If I have to modify the same…
user3826040
0
votes
0 answers

Quickbooks Webservice Connector not connecting to python web service

I am trying to connect Quickbooks Webservice Connector to a python webservice but the connection is not being established. I think the problem is with my .qwc file. Below is the code for the .qwc file.
Hassan Zaheer
  • 1,361
  • 2
  • 20
  • 34
0
votes
1 answer

Can't authenticate using Quickbooks web connector / CFML

I am attempting to implement a Quickbooks Web connector (QBWC) in Railo 4.x
0
votes
1 answer

QBWC ItemQueryRq error

I am using Web Connector to add/edit items in QuickBooks If item already exist then I am updating that item and then generate sales order. I have a one customer compiling that sales order is not generating. I checked company file item is already in…
0
votes
1 answer

Unable to update 2 domains at the same time in quickbook via QBWC

i need to update customer & vendor in quickbook at once but i got error. //Here my code package com.company.product.wsai.qb.ws.endpoint; import java.io.StringWriter; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import…
Yasa
  • 332
  • 4
  • 21
0
votes
1 answer

QuickBooks 14 Web Connector (QBWC) Samples

I am very newbie QBWC, I have downloaded sample (WCWebService-ASP.NET(C#)) from QB website and reviewing the "QBWC_proguide", but I am getting an error during add applicaiton in QBWC, that is invalid when I add a qbxml(Add Customer) file. Unxpected…
NavaDeebanS
  • 35
  • 1
  • 7
0
votes
1 answer

Detect VOIDed invoices from quickbooks

Our system pulls lots of data from quickbooks using the QBWC/QBXML. We also poll TxnDeletedQuery to get a list of deleted invoices, etc... How do I query for or detect a 'Voided' invoice? I don't see anything in the InvoiceQueryRs schema that would…
J Webb
  • 701
  • 1
  • 9
  • 13
0
votes
1 answer

Missing TxnLineID for LineGroup in SalesReceiptAdd

Working with examples I found I was able to add a SalesReceipt via QB WebConnector using QBXML. Specifically I was adding a LineGroup (SalesReceiptLineGroupAdd) - and after adding that group I need to modify it. Well to modify it I need the…
0
votes
1 answer

How to get payment terms data from QuickBooks

I am using COM objects to integrate QuickBooks data to my application. I am able to get paymentmethod using IPaymentMethodRetList. Like : IPaymentMethodQuery CustQ = requestSet.AppendPaymentMethodQueryRq(); IMsgSetResponse responseSet =…
Kavitha
  • 1,447
  • 2
  • 22
  • 37