---------- Original Message ----------------------------------
From: Robert Everland <[EMAIL PROTECTED]>
>What needs to be added to this tag in order to make it comply with AIM?
>http://devex.macromedia.com/developer/gallery/info.cfm?ID=C0C7D513-2CD6-11D4
>-AA9800508B94F380&method=Full

Just looking at the tag's code, I can only tell you which of those parameters I use 
that have changed.

Instead of "X_ADC_DELIM_DATA", it's just "X_DELIM_DATA"  I have default delim and 
encapsulate characters set up on our Merchant settings, so I don't pass those 
attributes. Presumably, just remove the "ADC_" from those, as well.  And, it's 
probably "X_URL" rather than "X_ADC_URL" but I'm not positive about that.  Other than 
that, I think that's it.

Here's the http param data I use:
        <cfhttpparam type="Formfield" value="#Attributes.version#"
        name="X_Version">
        <cfhttpparam type="Formfield" value="TRUE"
        name="x_Delim_Data">
        <cfhttpparam type="Formfield" value="#Attributes.LOGIN#"
        name="X_LOGIN">
        <cfhttpparam type="Formfield" value="#Attributes.PASS#"
        name="X_PASSWORD">
        <cfhttpparam type="Formfield" value="#Attributes.METHOD#"
        name="X_METHOD">
        <cfhttpparam type="Formfield" value="#Attributes.FIRSTNAME#"
        name="X_first_name">
        <cfhttpparam type="Formfield" value="#Attributes.LASTNAME#"
        name="X_last_name">
<cfif IsDefined("attributes.COMPANY")>
        <cfhttpparam type="Formfield" value="#Attributes.COMPANY#"
        name="X_Company">
</cfif>
<cfif IsDefined("attributes.address")>
        <cfhttpparam type="Formfield" value="#Attributes.address#"
        name="X_Address">
</cfif>
<cfif IsDefined("attributes.city")>
        <cfhttpparam type="Formfield" value="#Attributes.city#"
        name="X_City">
</cfif>
<cfif IsDefined("attributes.state")>
        <cfhttpparam type="Formfield" value="#Attributes.State#"
        name="X_State">
</cfif>
<cfif IsDefined("attributes.zip")>
        <cfhttpparam type="Formfield" value="#Attributes.Zip#"
        name="X_Zip">
</cfif>
<cfif IsDefined("attributes.country")>
        <cfhttpparam type="Formfield" value="#Attributes.Country#"
        name="X_Country">
</cfif>
        <cfhttpparam type="Formfield" value="#Attributes.DESCRIPTION#"
        name="X_description">
        <cfhttpparam type="Formfield" value="#Attributes.AMOUNT#"
        name="X_AMOUNT">
        <cfhttpparam type="Formfield" value="#Attributes.AUTHTYPE#"
        name="X_TYPE">
        <cfhttpparam type="Formfield" value="#Attributes.CARDNUM#"
        name="X_CARD_NUM">
        <cfhttpparam type="Formfield" value="#Attributes.EXPDATE#"
        name="X_EXP_DATE">
        <cfif attributes.cvv2 IS NOT "">
                <cfhttpparam type="FORMFIELD" value="#attributes.cvv2#"
                name="x_Card_Code">
        </cfif>
        <cfif IsDefined("Attributes.TESTING")>
                <cfhttpparam type="Formfield" value="TRUE"
                name="x_TEST_REQUEST">
        </cfif>
        <cfif attributes.cvv2 IS NOT "">
                <cfhttpparam type="FORMFIELD" value="#attributes.cvv2#"
                name="x_Card_Code">
        </cfif>
        <cfif IsDefined("Attributes.TESTING")>
                <cfhttpparam type="Formfield" value="TRUE"
                name="x_TEST_REQUEST">
        </cfif>
        <cfif attributes.TRANS_ID IS NOT "">
                <cfhttpparam type="FORMFIELD" value="#attributes.TRANS_ID#"
                name="x_Trans_ID">
        </cfif>

Hope that's helpful.

Scott
--------------------------------
Scott Brady
http://www.scottbrady.net/ 
             
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to