本文介绍了Quickbooks 与我期望的

问题描述

我有一个使用 Quickbooks SDK 版本 13 构建的自制 C++ 应用程序.该应用程序的目的是让我通过从网络端口接收 XML 字符串来与 Quickbooks 对话.我可以使用

I have a homemade C++ app built using the Quickbooks SDK version 13. The purpose of the app is to allow me to talk to Quickbooks by receiving an XML string from a network port. I'm able to communicate using

<?xml version="1.0" encoding="utf-8"?>
<?

...输出是这样的:

<?xml version="1.0" ?>
<

SDK 13 版显然应该可以使用这些发行说明来自 Intuit 声明 Quickbooks Enterprise 14.0与

Version 13 of the SDK is obviously supposed to be able to use version 13 of

为什么 Quickbooks 告诉我它只能使用

Why is Quickbooks telling me it can only use

抱歉,我之前忘记提到将 <? 更改为 <?code> 或任何高于 2.1 的值都会返回 80040428 错误,这意味着当前请求处理器不支持该请求."另外,如果我使用 <?,我仍然得到 .

Sorry I forgot to mention before that changing <? to <? or any value above 2.1 returns an error of 80040428 which means "The current request processor does not support the request." Also, if I use <?, I still get <Supported.

推荐答案

因为您只使用 2.1.只需使用不同的版本.2.1 大约 15 岁.

Because you're only using 2.1. Just use a different version. 2.1 is about 15 years old.

改变这个:

对于这样的事情:

这篇关于Quickbooks 与我期望的

09-15 23:56