Tag: quickbooks

它可以从QuickBooks QBM文件中获取SQL表。 那里可能有一个SQLite数据库?

如果我可以将表格导出为SQL或CSV或其他可行的格式,它将简化我们软件的数据导入。 我们经常从QuickBooks导出并导入到我们的软件中,如果我们能够获得客户的QBM文件,然后在我们的最后完成其他任务,那将更简单快捷。 我们已经将单个报告导出到CSV文件,但这是一个手动过程,我们希望用QBM到SQL工具(或CSV文件或制表符分隔的文件或其他可行格式)replace。

无法为SOAP Node.js制定响应对象

我正在编写SOAP Node.js Web服务使用node-soap ,我无法弄清楚如何正确地制定响应。 我正在使用Web连接器将Web应用程序与QuickBooks 2013集成在一起。 客户端将请求进行身份validation,我可以logging传递的参数,所以我知道它被调用,但我无法得到正确的答复。 该文件说,它期待一个string数组作为响应。 WSDL的相关部分如下所示: <s:element name="authenticateResponse"> <s:complexType> <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="authenticateResult" type="tns:ArrayOfString" /> </s:sequence> </s:complexType> </s:element> <s:complexType name="ArrayOfString"> <s:sequence> <s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" /> </s:sequence> </s:complexType> <wsdl:message name="authenticateSoapOut"> <wsdl:part name="parameters" element="tns:authenticateResponse" /> </wsdl:message> <wsdl:operation name="authenticate"> <wsdl:input message="tns:authenticateSoapIn" /> <wsdl:output message="tns:authenticateSoapOut" /> </wsdl:operation> <wsdl:operation name="authenticate"> <soap:operation soapAction="http://developer.intuit.com/authenticate" style="document" […]