Advertisement
Advertisement
| 09.26.2008 at 08:32AM PDT, ID: 23766392 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: |
<cfhttp method="post" url="https://test.authorize.net/gateway/transact.dll"> <!-- First, we pass the required fields for this particular transaction type (CC/AUTH_CAPTURE), using the CFHTTPPARAM tag for each value --> <!--- Required Fields ---> <cfhttpparam name="x_login" type="formfield" value="asdfasdfvY5"> <cfhttpparam name="x_tran_key" type="formfield" value="9pasdfsdafR8a54P"> <cfhttpparam name="x_method" type="formfield" value="CC"> <cfhttpparam name="x_type" type="formfield" value="AUTH_CAPTURE"> <cfhttpparam name="x_amount" type="formfield" value="19.99"> <cfhttpparam name="x_delim_data" type="formfield" value="TRUE"> <cfhttpparam name="x_delim_char" type="formfield" value="|"> <cfhttpparam name="x_relay_response" type="formfield" value="FALSE"> <cfhttpparam name="x_card_num" type="formfield" value="4111111111111111"> <cfhttpparam name="x_exp_date" type="formfield" value="05/09"> <!--- Not Required ---> <cfhttpparam name="x_version" type="formfield" value="3.1"> <cfhttpparam name="x_invoice_num" type="formfield" value="041803-001"> <cfhttpparam name="x_description" type="formfield" value="ColdFusion: Simple AIM Example"> <cfhttpparam name="x_cust_id" type="formfield" value="SuperStore 007"> </cfhttp> <!--- Capture the Authorize.Net Gateway Response in a variable for further processing:---> <cfset api_response=cfhttp.fileContent> |