0

MethodCRM api には、この例が .Net にあります

Dim arrUpdateFieldsArray(1) As String
Dim arrUpdateValueArray(1) As String

arrUpdateFieldsArray(0) = Me.txtUpdateField1.Text
arrUpdateValueArray(0) = Me.txtUpdateValue1.Text
arrUpdateFieldsArray(1) = Me.txtUpdateField12Text
arrUpdateValueArray(1) = Me.txtUpdateValue2.Text

'Call the MethodAPI to update the record
sResult = wbsMethodAPI.MethodAPIUpdateV2(sCompanyAccount, sUserName, sPassword, "", _sUpdateTable, arrUpdateFrieldsArray, arrUpdateValueArray, intRecordID)
wbsMethodAPI = Nothing

これと同等のものを構築しようとしましたが、成功しませんでした。これが私が試したものです

<CFSCRIPT>
    s = "salesRep,CustomerType";
    array1 = s.split(",");
    s = "#Signature_RepName#,#Payment_CompanyType#";
    array2 = s.split(",");

    string = CreateObject("java", "java.lang.String");
    array = CreateObject("java", "java.lang.reflect.Array");
    cookies = array.newInstance(string.getClass(), 3);
    array.set(cookies, 0, "salesRep");
    array.set(cookies, 1, "CustomerType");

    string2 = CreateObject("java", "java.lang.String");
    array2 = CreateObject("java", "java.lang.reflect.Array");
    cookies2 = array2.newInstance(string.getClass(), 3);
    array2.set(cookies2, 0, "#Signature_RepName#");
    array2.set(cookies2, 1, "#Payment_CompanyType#");
</CFSCRIPT>

<cfhttp url="https://www.methodintegration.com/MethodAPI/service.asmx/MethodAPIUpdateV2" method="GET"> 
    <cfhttpparam type="URL" name="strCompanyAccount" value="xxxx"/>
    <cfhttpparam type="URL" name="strLogin" value="xxxx"/>
    <cfhttpparam type="URL" name="strPassword" value="xxxx"/>
    <cfhttpparam type="URL" name="strSessionID" value=""/>
    <cfhttpparam type="URL" name="strTable" value="Customer"/>
    <cfhttpparam type="URL" name="arrUpdateFieldsArray" value=#cookies#/>
    <cfhttpparam type="URL" name="arrUpdateValueArray" value=#cookies2#/>
    <cfhttpparam type="URL" name="intRecordID" value="#customerid#"/>
</cfhttp>

私が間違っていることを教えてください。ティア

4

1 に答える 1

4

http://www.methodintegration.com/Method-API-for-QuickBooks-CRM.aspxによると、これらはSOAP Webサービスだと思います。証明: https://www.methodintegration.com/MethodAPI/service.asmx?wsdl

したがって、cfinvokeそれらを消費するために使用します。

<cfinvoke 
     webservice="https://www.methodintegration.com/MethodAPI/service.asmx?wsdl" 
     method="MethodAPIUpdateV2" 
     returnVariable="ws" >
    <cfinvokeargument name="strCompanyAccount" value="" />
    <cfinvokeargument name="strLogin" value="" />
    <cfinvokeargument name="strPassword" value="" />
    <cfinvokeargument name="strSessionID" value="" />
    <cfinvokeargument name="strTable" value="" />
    <cfinvokeargument name="arrUpdateFieldsArray" value="" />
    <cfinvokeargument name="arrUpdateValueArray" value="" />
    <cfinvokeargument name="intRecordID" value="" />
</cfinvoke>

また

<cfset wbsMethodAPI 
   = createObject("webservice",
                  "https://www.methodintegration.com/MethodAPI/service.asmx?wsdl")>
<cfset ws = wbsMethodAPI.MethodAPIUpdateV2(
  strLogin="", strCompanyAccount="", strTable="", arrUpdateValueArray="", 
  arrUpdateFieldsArray="", intRecordID="", strPassword="", strSessionID="")>

参照: http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-78b4.html

2 つの配列のタイプは ですtns:ArrayOfString。次を参照してください: http://forums.adobe.com/message/4337438

于 2012-12-18T00:41:02.740 に答える