我已经Quick book application
安装在我的系统中。而且我创建了一些供应商和客户列表。
快速书: QuickBooks Simple Start 2010 Free Edition
数据库:QuickBooks Database Server Manager
数据库版本:11.0.1.2584
计算机名称:SYS13
在我的 Windows C# 应用程序中,我试图通过阅读Excel
. 我正在生成 XML 并基于 Excel 输入。
一切都好。但是连接并没有发生在My C# app
和之间Quick Book Database
。
我得到以下错误:
Can't connect to the database.
连接字符串:Computer Name=SYS13;Company Data=Demo VSS;Version=11.0.1.2584
我尝试连接的代码:
try
{
rp.OpenConnection("VendorAdd", "VendorAdd");
MessageBox.Show(connString);
ticket = rp.BeginSession(connString);
response = rp.ProcessRequest(ticket, input);
requestXML = input.ToString();
responseXML = response.ToString();
}
catch (System.Runtime.InteropServices.COMException ex)
{
MessageBox.Show("COM Error Description = " + ex.Message, "COM error");
return;
}
finally
{
if (ticket != null)
{
rp.EndSession(ticket);
}
if (rp != null)
{
rp.CloseConnection();
}
};
任何想法为什么?关于这个应用程序的任何示例源代码?
提前致谢,