嗨,我是这个sdk的新手
“ QuickBooks在解析提供的XML文本流时发现错误”
我正在使用SDK 13
有人可以帮我吗
谢谢

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using QBFC13Lib;
using System.Globalization;
using System.Windows.Forms;

namespace testing
{
public partial class Form2 : Form
{
    public Form2()
    {
        InitializeComponent();
    }

    private void Form2_Load(object sender, EventArgs e)
    {
        bool sessionBegun = false;
        bool connectionOpen = false;
        QBSessionManager sessionManager = null;

        try
        {
            sessionManager = new QBSessionManager();

            //Create the message set request object to hold our request
            IMsgSetRequest requestMsgSet = sessionManager.CreateMsgSetRequest("US", 8, 0);
            requestMsgSet.Attributes.OnError = ENRqOnError.roeContinue;

            //Connect to QuickBooks and begin a session
            sessionManager.OpenConnection("", "QuickBook Account Import");
            connectionOpen = true;
            sessionManager.BeginSession("C:\\Users\\Public\\Documents\\Intuit\\QuickBooks\\Company Files\\***.qbw", ENOpenMode.omDontCare);
            sessionBegun = true;



                IToDoAdd ToDoAddRq = requestMsgSet.AppendToDoAddRq();
                ToDoAddRq.ReminderDate.SetValue(DateTime.ParseExact("29/4/2014", "d/M/yyyy", CultureInfo.InvariantCulture));
                //Set field value for Time
                ToDoAddRq.ReminderTime.SetValue(10, 10, 10, false);
                //Set field value for Notes
                ToDoAddRq.Notes.SetValue("abc");
                //Set field value for IsActive
                ToDoAddRq.IsActive.SetValue(true);
                //Set field value for Type
                ToDoAddRq.Type_2.SetValue(ENType.tCall);
                //Set field value for Priority
                ToDoAddRq.Priority.SetValue(ENPriority.pLow);


                //Send the request and get the response from QuickBooks
                sessionManager.DoRequests(requestMsgSet);


        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message, "Error");
        }
        finally
        {
            //End the session and close the connection to QuickBooks
            if (sessionBegun)
            {
                sessionManager.EndSession();
            }
            if (connectionOpen)
            {
                sessionManager.CloseConnection();
            }
        }
    }
}
}

最佳答案

QuickBooks qbXML API是一个版本化的API。不同版本的QuickBooks将通过不同版本的qbXML规范支持不同的功能。

开发时,您需要确保使用的qbXML API版本既支持所需的功能,又支持您的QuickBooks版本。

您当前正在使用qbXML版本8.0

 IMsgSetRequest requestMsgSet = sessionManager.CreateMsgSetRequest("US", 8, 0);


通常,QuickBooks版本比qbXML版本支持低1。例如QuickBooks 14支持qbXML版本13。QuickBooks13支持qbXML版本12。等等。这意味着现在您的目标是QuickBooks 2009。

您收到一条错误消息是因为,如果引用Intuit's docs,则仅在ToDoAdd及更高版本中支持TypePriority13.0标记。您无需在请求中包括这些值,或者使用更高版本的qbXML API。

关于c# - Quickbooks SDK 13.0 ToDoAddRq C#,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23343880/

10-17 01:56