<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to set the address parameters for AVS verification in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27884#M14723</link>
    <description>&lt;P&gt;It look like x_test_request need to be "false" not true.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Jul 2012 11:34:31 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2012-07-12T11:34:31Z</dc:date>
    <item>
      <title>How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27812#M14687</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to the authorize.net,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently am trying to integrate authorize.net with java for credit card processing, In this i want to check the billing address of the customer with Credit card billing address. But am not able to check whether the address is correctly validating or not. am using dummy credit card number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;below is the code snippet which am using now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;URL post_url = new URL("&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;");&lt;BR /&gt;//AuthnetAIM authnet = new AuthnetAIM();&lt;BR /&gt;Hashtable post_values = new Hashtable();&lt;/P&gt;&lt;P&gt;// the API Login ID and Transaction Key must be replaced with valid values&lt;BR /&gt;post_values.put("x_login", LOGIN_ID);&lt;BR /&gt;post_values.put("x_tran_key", TRANSACTION_KEY);&lt;/P&gt;&lt;P&gt;post_values.put("x_version", "3.1");&lt;BR /&gt;post_values.put("x_delim_data", "TRUE");&lt;BR /&gt;post_values.put("x_delim_char", "|");&lt;BR /&gt;post_values.put("x_relay_response", "FALSE");&lt;/P&gt;&lt;P&gt;post_values.put("x_type", "AUTH_CAPTURE");&lt;BR /&gt;post_values.put("x_method", "CC");&lt;BR /&gt;post_values.put("x_card_num", "4111111111111111");&lt;BR /&gt;post_values.put("x_exp_date", "0115");&lt;/P&gt;&lt;P&gt;post_values.put("x_amount", "0.99");&lt;BR /&gt;post_values.put("x_description", "Sample Transaction");&lt;/P&gt;&lt;P&gt;post_values.put("x_first_name", "John");&lt;BR /&gt;post_values.put("x_last_name", "Doe");&lt;BR /&gt;post_values.put("x_address", "1234 Street");&lt;BR /&gt;post_values.put("x_state", "Mumbai");&lt;BR /&gt;post_values.put("x_zip", "98004asdf");&lt;BR /&gt;// Additional fields can be added here as outlined in the AIM integration&lt;BR /&gt;// guide at: &lt;A target="_blank" href="http://developer.authorize.net"&gt;http://developer.authorize.net&lt;/A&gt;&lt;/P&gt;&lt;P&gt;// This section takes the input fields and converts them to the proper format&lt;BR /&gt;// for an http post. For example: "x_login=username&amp;amp;x_tran_key=a1B2c3D4"&lt;BR /&gt;StringBuffer post_string = new StringBuffer();&lt;BR /&gt;Enumeration keys = post_values.keys();&lt;BR /&gt;while (keys.hasMoreElements()) {&lt;BR /&gt;String key = URLEncoder.encode(keys.nextElement().toString(), "UTF-8");&lt;BR /&gt;String value = URLEncoder.encode(post_values.get(key).toString(), "UTF-8");&lt;BR /&gt;post_string.append(key + "=" + value + "&amp;amp;");&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;// The following section provides an example of how to add line item details to&lt;BR /&gt;// the post string. Because line items may consist of multiple values with the&lt;BR /&gt;// same key/name, they cannot be simply added into the above array.&lt;BR /&gt;//&lt;BR /&gt;// This section is commented out by default.&lt;BR /&gt;/*&lt;BR /&gt;String[] line_items = {&lt;BR /&gt;"item1&amp;lt;|&amp;gt;golf balls&amp;lt;|&amp;gt;&amp;lt;|&amp;gt;2&amp;lt;|&amp;gt;18.95&amp;lt;|&amp;gt;Y",&lt;BR /&gt;"item2&amp;lt;|&amp;gt;golf bag&amp;lt;|&amp;gt;Wilson golf carry bag, red&amp;lt;|&amp;gt;1&amp;lt;|&amp;gt;39.99&amp;lt;|&amp;gt;Y",&lt;BR /&gt;"item3&amp;lt;|&amp;gt;book&amp;lt;|&amp;gt;Golf for Dummies&amp;lt;|&amp;gt;1&amp;lt;|&amp;gt;21.99&amp;lt;|&amp;gt;Y"};&lt;/P&gt;&lt;P&gt;for (int i = 0; i &amp;lt; line_items.length; i++) {&lt;BR /&gt;String value = line_items[i];&lt;BR /&gt;post_string.append("&amp;amp;x_line_item=" + URLEncoder.encode(value));&lt;BR /&gt;}&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;// Open a URLConnection to the specified post url&lt;BR /&gt;URLConnection connection = post_url.openConnection();&lt;BR /&gt;connection.setDoOutput(true);&lt;BR /&gt;connection.setUseCaches(false);&lt;/P&gt;&lt;P&gt;// this line is not necessarily required but fixes a bug with some servers&lt;BR /&gt;connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");&lt;/P&gt;&lt;P&gt;// submit the post_string and close the connection&lt;BR /&gt;DataOutputStream requestObject = new DataOutputStream(connection.getOutputStream());&lt;BR /&gt;requestObject.write(post_string.toString().getBytes());&lt;BR /&gt;requestObject.flush();&lt;BR /&gt;requestObject.close();&lt;/P&gt;&lt;P&gt;// process and read the gateway response&lt;BR /&gt;BufferedReader rawResponse = new BufferedReader(new InputStreamReader(connection.getInputStream()));&lt;BR /&gt;String line;&lt;BR /&gt;String responseData = rawResponse.readLine();&lt;BR /&gt;rawResponse.close();&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the above code, even when am trying to check with state as MUMBAI its working.&amp;nbsp;&lt;BR /&gt;Can any one please help me how exactly i need to set the address.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Harsha.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 14:55:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27812#M14687</guid>
      <dc:creator>harshakiran184</dc:creator>
      <dc:date>2012-07-11T14:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27822#M14692</link>
      <description>&lt;P&gt;Did you change the setting in the merchant account?&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://test.authorize.net"&gt;https://test.authorize.net&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Account - Settings - Security Settings -&amp;nbsp;Address Verification Service&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For test account, it will return "P" on avs response. to test the other response&lt;/P&gt;&lt;P&gt;read &lt;A target="_blank" href="http://community.developer.authorize.net/t5/Integration-and-Testing/Triggering-Specific-Transaction-Responses-Using-Test-Account/td-p/4361"&gt;http://community.developer.authorize.net/t5/Integration-and-Testing/Triggering-Specific-Transaction-Responses-Using-Test-Account/td-p/4361&lt;/A&gt;&lt;/P&gt;&lt;P&gt;CC# is &lt;SPAN&gt;4222222222222 and need to set &amp;nbsp;x_test_request=TRUE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 15:11:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27822#M14692</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-07-11T15:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27826#M14694</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi Raynor,&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When am trying to use the below CC#4222222222222 , am getting the transaction is declained,&lt;/P&gt;&lt;P&gt;i again tested with my old CC#4111111111111111, its working fine. i dont know what might be the issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;between what " x_test_request "&amp;nbsp;this will do ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and i enabled the allow radio button for N,A,Z,W,Y in authorize.net setting -&amp;gt; AVS &amp;gt;page&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help me&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;harsha.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 15:29:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27826#M14694</guid>
      <dc:creator>harshakiran184</dc:creator>
      <dc:date>2012-07-11T15:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27828#M14695</link>
      <description>&lt;P&gt;I guess I not sure what you try to do?&lt;/P&gt;&lt;P&gt;You will need to read &lt;A target="_blank" href="https://community.developer.cybersource.com/t5/Integration-and-Testing/Triggering-Specific-Transaction-Responses-Using-Test-Account/td-p/4361"&gt;http://community.developer.authorize.net/t5/Integration-and-Testing/Triggering-Specific-Transaction-Responses-Using-Test-Account/td-p/4361&lt;/A&gt; to use the CC#&amp;nbsp;4222222222222&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test account will return AVS "P" unless you are using the 4222222222222 to get a specific response. That why 4111111111111111 will work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AIM documentation is &lt;A target="_self" href="http://developer.authorize.net/guides/AIM/"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 15:50:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27828#M14695</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-07-11T15:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27832#M14697</link>
      <description>&lt;P&gt;Ohh!!!..i got you. so even i use the CC#4222222222222,i will get the AVS response as 'P' as am using the test account&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;am i right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks alot for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Harsha.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 16:22:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27832#M14697</guid>
      <dc:creator>harshakiran184</dc:creator>
      <dc:date>2012-07-11T16:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27834#M14698</link>
      <description>&lt;P&gt;No. Please READ &lt;A target="_blank" href="http://community.developer.authorize.net/t5/Integration-and-Testing/Triggering-Specific-Transaction-Responses-Using-Test-Account/td-p/4361"&gt;http://community.developer.authorize.net/t5/Integration-and-Testing/Triggering-Specific-Transaction-Responses-Using-Test-Account/td-p/4361&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 16:41:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27834#M14698</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-07-11T16:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27882#M14722</link>
      <description>&lt;P&gt;Hi Raynot,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for asking the same questions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested with the CC# you provided and with the different zip codes and am seeing only P as AVS response.&lt;/P&gt;&lt;P&gt;i made few changes like in settings page Payment form-&amp;gt;form feilds -&amp;gt; i enabled required check box for address and zip code columns under customer billing information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the response code :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;responseData -- &amp;gt; 2|2|29|(TESTMODE)&lt;STRONG&gt; The Paymentech identification numbers are in&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;correct. Call Merchant Service Provider&lt;/STRONG&gt;.|000000|&lt;STRONG&gt;P&lt;/STRONG&gt;|0||Sample Transaction|29.00|CC&lt;BR /&gt;|auth_capture||John|Doe||1234 Street||WA|&lt;STRONG&gt;46203&lt;/STRONG&gt;||||||||||||||||||5C355C1B74459ACB&lt;BR /&gt;3ECD7DE803990F4C|||||||||||||XXXX2222|||||||||||||||||&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Harsha.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2012 06:07:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27882#M14722</guid>
      <dc:creator>harshakiran184</dc:creator>
      <dc:date>2012-07-12T06:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27884#M14723</link>
      <description>&lt;P&gt;It look like x_test_request need to be "false" not true.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2012 11:34:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27884#M14723</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-07-12T11:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27886#M14724</link>
      <description>&lt;P&gt;Hi Raynor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tested by changing it to false&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2|2|27|The transaction has been declined because of an AVS mismatch. The address provided does not match billing address of cardholder.|P84UAM|&lt;STRONG&gt;E&lt;/STRONG&gt;|2173586282||Sample Transaction|1.00|CC|auth_capture||John|Doe||1234 Street||WA|46203||||||||||||||||||3F75447B12295927300E1B7593B59A5A|P|2|||||||||||XXXX2222|Visa||||||||||||||||&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the above result what is P84UAMrefers to and now i got AVS COde as E..i think its working now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually my requirement is to authorize the credit card credentials wether the customer billing address is same as credit card billing address of card holder or not and the credit card number is valid or not..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i dont want the amount to be debited from the credit card.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please suggest me what to do in this case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Harsha.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2012 12:23:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27886#M14724</guid>
      <dc:creator>harshakiran184</dc:creator>
      <dc:date>2012-07-12T12:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27888#M14725</link>
      <description>&lt;P&gt;From the above result what is P84UAM refers to&lt;/P&gt;&lt;P&gt;Since it is the fifth field, it is the Authorization Code&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/guides/AIM/Transaction_Response/Fields_in_the_Payment_Gateway_Response.htm"&gt;http://developer.authorize.net/guides/AIM/Transaction_Response/Fields_in_the_Payment_Gateway_Response.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually my requirement is to authorize the credit card credentials wether the customer billing address is same as credit card billing address of card holder or not and the credit card number is valid or not..&lt;/P&gt;&lt;P&gt;Check all the box on the AVS settings. That will reject everything unless AVS is process and match. credit card# is done on the issuer end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i dont want the amount to be debited from the credit card.&lt;/P&gt;&lt;P&gt;If the card is decline, no amount will be charge. Or do you mean testing the card? do a auth_only then void for that.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2012 13:19:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27888#M14725</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-07-12T13:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27890#M14726</link>
      <description>&lt;P&gt;Hi Raynor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks alot for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;yes i just wanted to check only the AVS and the card. i will use AUTH_ONLY.&amp;nbsp;&lt;/P&gt;&lt;P&gt;so i need to check under Allow section on AVS settings right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks alot mate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Harsha.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2012 14:10:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27890#M14726</guid>
      <dc:creator>harshakiran184</dc:creator>
      <dc:date>2012-07-12T14:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27892#M14727</link>
      <description>&lt;P&gt;If you want to make sure AVS get process, check all the reject checkboxs.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2012 14:17:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27892#M14727</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-07-12T14:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to set the address parameters for AVS verification</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27894#M14728</link>
      <description>&lt;P&gt;Thanks alot for your help..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Harsha&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jul 2012 14:46:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-set-the-address-parameters-for-AVS-verification/m-p/27894#M14728</guid>
      <dc:creator>harshakiran184</dc:creator>
      <dc:date>2012-07-12T14:46:29Z</dc:date>
    </item>
  </channel>
</rss>

