<?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: Coming from PayPal and Need guidance in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22823#M12321</link>
    <description>&lt;P&gt;Under "DOWNLOADS" on top of the page then "sample code".&lt;/P&gt;</description>
    <pubDate>Wed, 08 Feb 2012 12:17:20 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2012-02-08T12:17:20Z</dc:date>
    <item>
      <title>Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22707#M12265</link>
      <description>&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;We are new to authorize.net and would like to go this foute in favor of our current paypal process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are a youth sports group where parents register their children for tournaments.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. enter player information and select tournaments on first page (ASP)&lt;/P&gt;&lt;P&gt;2. save entered information on previous form in access db, presents payment page with paypal paynow button&lt;/P&gt;&lt;P&gt;3. paynow button when clicked routes the customer to paypal via the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;input type="hidden" name="cmd" value="_xclick"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="business" value="&lt;A target="_blank" href="mailto:paypal@xxxx﻿.com" rel="nofollow"&gt;paypal@xxxx.com&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="item_name" value="&amp;lt;%=Request.Form("email")%&amp;gt;"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="amount" value="&amp;lt;%=(feeplus)%&amp;gt;"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="item_number" value="&amp;lt;%=(REGID)%&amp;gt;"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="no_shipping" value="0"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="no_note" value="1"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="currency_code" value="USD"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="notify_url" value="&lt;A target="_blank" href="http://www.xxxx.com/register/ipnPayPal.asp" rel="nofollow"&gt;http://www.xxxx.com/register/ipnPayPal.asp&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;input type="hidden" name="return" value="&lt;A target="_blank" href="http://www.xxxx.com/" rel="nofollow"&gt;http://www.xxxx.com&lt;/A&gt;"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the transaction is complete in paypal, the ipnpaypal.asp is executed automatically on our site to post paid to the transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we do this with authorize.net and are there any practice native ASP examples we can use?&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 06 Feb 2012 23:42:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22707#M12265</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-06T23:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22721#M12272</link>
      <description>&lt;P&gt;Yes, the most similar API would be SIM. ASP isn't officially supported by Authorize.net any more, but there are code examples for ASP Classic which may work for you, or which you can convert:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://developer.authorize.net/resources/files/samplecode/asp_sim.zip"&gt;https://developer.authorize.net/resources/files/samplecode/asp_sim.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also take a look at the documentation PDF:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://www.authorize.net/support/SIM_guide.pdf"&gt;http://www.authorize.net/support/SIM_guide.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;!--#INCLUDE FILE=”simlib.asp”--&amp;gt; &lt;BR /&gt;&amp;lt;FORM METHOD=POST ACTION= "&lt;A target="_blank" href="https://secure.authorize.net/gateway/"&gt;https://secure.authorize.net/gateway/&lt;/A&gt; &lt;BR /&gt;transact.dll"&amp;gt; &lt;BR /&gt;&amp;lt;% ret = InsertFP (APIloginid, sequence, amount, txnkey) %&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_version" VALUE="3.1"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_login" VALUE="the merchant’s API Login &lt;BR /&gt;ID"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_show_form" VALUE="PAYMENT_FORM"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_method" VALUE="CC"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_amount" VALUE="9.95"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=SUBMIT VALUE="Click here for the secure payment form"&amp;gt; &lt;BR /&gt;&amp;lt;/FORM&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 07 Feb 2012 05:34:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22721#M12272</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-02-07T05:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22739#M12280</link>
      <description>&lt;P&gt;So how does my system know that payment was made?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2012 12:27:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22739#M12280</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-07T12:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22743#M12282</link>
      <description>&lt;P&gt;Part of the registration system is that we update our access file with the players that have registered and currently when paypal processing is complete they execute the IPN module on our site that updates the record paid.&amp;nbsp; How do I obtain status information as to the result of the trasaction and update my access DB?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2012 14:11:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22743#M12282</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-07T14:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22759#M12290</link>
      <description>&lt;P&gt;Well, the easiest way would probably be to turn on relay response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;!--#INCLUDE FILE= "simlib.asp"--&amp;gt; &lt;BR /&gt;&amp;lt;FORM METHOD=POST ACTION= &lt;BR /&gt;"&lt;A target="_blank" href="https://secure.authorize.net/gateway/transact.dll"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;"&amp;gt; &lt;BR /&gt;&amp;lt;% ret = InsertFP (APIloginid, sequence, amount, txnkey) %&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_login" VALUE="the merchant’s API Login ID"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_version" VALUE="3.1"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_method" VALUE="CC"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_show_form" VALUE="PAYMENT_FORM"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_amount" VALUE="9.95"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_relay_response" VALUE="TRUE"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_relay_url" VALUE="Any valid URL"&amp;gt; &lt;BR /&gt;&amp;lt;INPUT TYPE=SUBMIT VALUE="Click here for the secure payment form"&amp;gt; &lt;BR /&gt;&amp;lt;/FORM&amp;gt;&lt;/PRE&gt;&lt;P&gt;Note that you have to also go into your control panel and set the relay response URL there to match the one you specify here, otherwise it will be rejected. The relay URL then receives the POST, determines if it's a valid transmission from Authorize.net and if the transaction went through ok, then sends back another URL that Authorize.net forwards the customer to for their receipt. Here is the PHP version so you can get a basic idea of the structure. I've added some notes and cleaned it up slightly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php
require_once 'anet_php_sdk/AuthorizeNet.php'; // The SDK 
$redirect_url = "&lt;A target="_blank" href="http://YOUR_DOMAIN.com/receipt_page.php"&gt;http://YOUR_DOMAIN.com/receipt_page.php&lt;/A&gt;"; // Where the user will end up. 
$api_login_id = 'YOUR_API_LOGIN_ID'; 
$md5_setting = ""; // Your MD5 Setting 
$response = new AuthorizeNetSIM($api_login_id, $md5_setting); 
if ($response-&amp;gt;isAuthorizeNet()) {   // Can ignore this if not using MD5 setting
if ($response-&amp;gt;approved)       // Check response code to see if it's 1
   { 
       // Update your database
       $redirect_url .= '?response_code=1&amp;amp;transaction_id=' . $response-&amp;gt;transaction_id; 
   } 
   else 
   {
       $redirect_url .= '?response_code='.$response-&amp;gt;response_code . '&amp;amp;response_reason_text=' . $response-&amp;gt;response_reason_text; 
   } 
   // Send the Javascript back to AuthorizeNet, which will redirect user back to your site. 
   echo AuthorizeNetDPM::getRelayResponseSnippet($redirect_url); 
} 
else 
{ 
echo "Error. Check your MD5 Setting."; 
}
?&amp;gt; &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2012 15:32:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22759#M12290</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-02-07T15:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22797#M12308</link>
      <description>&lt;P&gt;does anyone have a sample asp version of the response url?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2012 00:25:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22797#M12308</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-08T00:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22823#M12321</link>
      <description>&lt;P&gt;Under "DOWNLOADS" on top of the page then "sample code".&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2012 12:17:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22823#M12321</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-02-08T12:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22833#M12326</link>
      <description>&lt;P&gt;I guess my biggest concern is that we are not sure which process we should use and try and integration with our registration DB which is&amp;nbsp; access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are most familiar with ASP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All we need to do is be able to have our parents fil out a registration form then be given a payment page, once they pay we just need something to update our registration db that they have in fact paid.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Very simple with paypal, but does not seem to be with authorize.net.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;am I wrong????&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2012 14:01:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22833#M12326</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-08T14:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22843#M12331</link>
      <description>&lt;P&gt;Just like TJPride said, sound like PayPal is close to SIM.&lt;/P&gt;&lt;P&gt;Have you read the &lt;A target="_self" href="http://developer.authorize.net/guides/SIM/"&gt;SIM documentation&lt;/A&gt;? Personal, I think they are very simple. And they have sample code in ASP classic code.&lt;/P&gt;&lt;P&gt;Form Post -&amp;gt; Authorize.net CC entry -&amp;gt; relay response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just pass registration info along as merchant defined fields to authorize.net and get it back in the relay response post.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2012 15:49:06 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22843#M12331</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-02-08T15:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22873#M12346</link>
      <description>&lt;P&gt;tried to run the code but am getting include file not found&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://secure.authorize.net/gateway/"&gt;https://secure.authorize.net/gateway/&lt;/A&gt; transact.dll&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2012 22:53:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22873#M12346</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-08T22:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22875#M12347</link>
      <description>&lt;P&gt;tried to run the following but keep getting simlib.asp not found when infact it is there&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "&lt;A target="_blank" href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;html xmlns="&lt;A target="_blank" href="http://www.w3.org/1999/xhtml"&gt;http://www.w3.org/1999/xhtml&lt;/A&gt;"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;Untitled 1&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;&amp;lt;!--#INCLUDE FILE=”simlib.asp”--&amp;gt;&lt;BR /&gt;&amp;lt;FORM METHOD=POST ACTION= "&lt;A target="_blank" href="https://secure.authorize.net/gateway/transact.dll"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;% ret = InsertFP (APIloginid, sequence, amount, txnkey) %&amp;gt;&lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_version" VALUE="3.1"&amp;gt;&lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_login" VALUE="hidden"&amp;gt;&lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_show_form" VALUE="PAYMENT_FORM"&amp;gt;&lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_method" VALUE="CC"&amp;gt;&lt;BR /&gt;&amp;lt;INPUT TYPE=HIDDEN NAME="x_amount" VALUE="9.95"&amp;gt;&lt;BR /&gt;&amp;lt;INPUT TYPE=SUBMIT VALUE="Click here for the secure payment form"&amp;gt;&lt;BR /&gt;&amp;lt;/FORM&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2012 23:21:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22875#M12347</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-08T23:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22877#M12348</link>
      <description>&lt;P&gt;Is your code and simlib.asp in the same folder?&lt;/P&gt;&lt;P&gt;Also did you download and look at the sample code. they are different then that in the documentation.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2012 23:54:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22877#M12348</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-02-08T23:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22885#M12352</link>
      <description>&lt;P&gt;Okay made some progress, got the code to run on my site and got the submit button to display however when I click it I get the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following errors have occurred.&lt;/P&gt;&lt;P&gt;(99) This transaction cannot be accepted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the cade I placed in my ASP checkout&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;lt;INPUT type='hidden' name='x_login' value='blanked out' /&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;lt;INPUT type='hidden' name='x_transactionKey' value='blanked out' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;INPUT type='hidden' name='x_amount' value='&amp;lt;%=(feeplus)%&amp;gt;' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;INPUT type='hidden' name='x_description' value='2012 Try-Out Fee' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;INPUT type='hidden' name='x_invoice_num' value='&amp;lt;%=(REGID)%&amp;gt;' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;INPUT type='hidden' name='x_fp_sequence' value='&amp;lt;%=(sequence)%&amp;gt;' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;INPUT type='hidden' name='x_fp_timestamp' value='&amp;lt;%=(timestamp)%&amp;gt;' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;INPUT type='hidden' name='x_fp_hash' value='&amp;lt;%=(fingerprint)%&amp;gt;' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;INPUT type='hidden' name='x_test_request' value='False' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;INPUT type='hidden' name='x_show_form' value='PAYMENT_FORM' /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;input type='submit' value='Submit Payment' /&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2012 00:56:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22885#M12352</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-09T00:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22887#M12353</link>
      <description>&lt;P&gt;DO NOT pass x_transactionKey.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And here the tool to test &lt;EM&gt;x_fp_hash.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://developer.authorize.net/tools/responsecode99/"&gt;https://developer.authorize.net/tools/responsecode99/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2012 01:00:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22887#M12353</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-02-09T01:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22889#M12354</link>
      <description>&lt;P&gt;okay confused I still get 99&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I did the page you gave me I got a fingerprint, passed that and still got a 99&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;plus fingerprint was equal too&lt;/P&gt;&lt;P&gt;fingerprint = HMAC (transactionKey, loginID &amp;amp; "^" &amp;amp; sequence &amp;amp; "^" &amp;amp; timeStamp &amp;amp; "^" &amp;amp; amount &amp;amp; "^")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any other hints on how to get around this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;should I pass x_trans_key?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2012 01:59:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22889#M12354</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-09T01:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22891#M12355</link>
      <description>&lt;P&gt;Okay got it to work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can I get shipping information not to show, are there options to tell it what to show and perhaps pass some of the information?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;once detail is submitted what happens where do I return to?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2012 02:14:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22891#M12355</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-09T02:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22899#M12359</link>
      <description>&lt;P&gt;I was able to get the hosted payment form to display on the sandbox, we have signed up for a authorize.net account but while we are waiting I am wondering what happens in the flow next after the user fills out the Hosted Payment form.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Do I have at my disposal (the asp page that called the hosted payment form)&amp;nbsp;the result of the payment?&amp;nbsp; Somehow I need to post into our regiatration DB that&amp;nbsp;payment is completed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2012 11:33:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22899#M12359</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-09T11:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22901#M12360</link>
      <description>&lt;P&gt;The setting for fields show on the credit card entry screen is on the merchant account&lt;/P&gt;&lt;P&gt;Account - Settings - Payment Form - Form Fields.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_self" href="http://developer.authorize.net/guides/SIM/Receipt_Options/Receipt_Options.htm"&gt;Receipt Options&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Once the info is submitted can either do&lt;/P&gt;&lt;P&gt;&lt;A target="_self" href="http://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Relay-Response-Basics-and-Troubleshooting/ba-p/9536"&gt;Relay Response Basics and Troubleshooting&lt;/A&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;hosted receipt page&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2012 12:25:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22901#M12360</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-02-09T12:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22905#M12362</link>
      <description>&lt;P&gt;I implemented the following code I found (relay response asp) which worked but curious as to what generated the email back to the buyer?&amp;nbsp; I would like to make sure I get a copy and would like to change the title of the email.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2012 13:14:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22905#M12362</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-09T13:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Coming from PayPal and Need guidance</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22907#M12363</link>
      <description>&lt;P&gt;&amp;lt;% Response.Expires = 0&lt;/P&gt;&lt;P&gt;Dim ResponseCode, ResponseReasonText, ResponseReasonCode, ResponseSubcode, AVS, ReceiptLink, TransID&lt;BR /&gt;Dim Amount, AuthCode&lt;/P&gt;&lt;P&gt;' Retrieving and defining Form Data from Post command body from Authorize.Net&lt;BR /&gt;ResponseCode = Trim(Request.Form("x_response_code"))&lt;BR /&gt;ResponseReasonText = Trim(Request.Form("x_response_reason_text"))&lt;BR /&gt;ResponseReasonCode = Trim(Request.Form("x_response_reason_code"))&lt;BR /&gt;AVS = Trim(Request.Form("x_avs_code"))&lt;BR /&gt;TransID = Trim(Request.Form("x_Trans_ID"))&lt;BR /&gt;AuthCode = Trim(Request.Form("x_Auth_Code"))&lt;BR /&gt;Amount = Trim(Request.Form("x_Amount"))&lt;BR /&gt;ReceiptLink = "&lt;A target="_blank" href="http://www.authorizenet.com/"&gt;http://www.authorizenet.com&lt;/A&gt;"&lt;/P&gt;&lt;P&gt;'Print a receipt page %&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;title&amp;gt;Transaction Receipt Page&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&amp;gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;body bgcolor="#FFFFFF"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;% 'Test to see if this is a test transaction.&lt;BR /&gt;&amp;nbsp;If TransID = "0" and ResponseCode = "1" Then&lt;BR /&gt;&amp;nbsp;'If so, print it to the screen, so we know that the transaction will not be processed. %&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;lt;table align="center"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;th&amp;gt;&amp;lt;font size="5" color="red" face="arial"&amp;gt;TEST MODE&amp;lt;/font&amp;gt;&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;th valign="top"&amp;gt;&amp;lt;font size="1" color="black" face="arial"&amp;gt;This&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;transaction will &amp;lt;u&amp;gt;NOT&amp;lt;/u&amp;gt; be processed because your account is in&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Test Mode.&amp;lt;/font&amp;gt;&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/table&amp;gt;&lt;BR /&gt;&amp;lt;% End If %&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;br&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;br&amp;gt;&lt;BR /&gt;&amp;lt;% 'Test to see if the transaction resulted in Approvavl, Decline or Error&lt;BR /&gt;&amp;nbsp;Select Case ResponseCode&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Case "1" %&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;table align="center"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;th&amp;gt;&amp;lt;font size="3" color="#000000" face="Verdana, Arial, Helvetica, sans-serif"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;This transaction has been approved.&amp;lt;/font&amp;gt;&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/table&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;% Case "2" %&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;lt;table align="center"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;th width="312"&amp;gt;&amp;lt;font size="3" color="#000000" face="Verdana, Arial, Helvetica, sans-serif"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;This transaction has been declined.&amp;lt;/font&amp;gt;&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/table&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;% Case Else %&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;lt;table align="center"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;th colspan="2"&amp;gt;&amp;lt;font size="3" color="Red" face="Verdana, Arial, Helvetica, sans-serif"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;There was an error processing this transaction.&amp;lt;/font&amp;gt;&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/table&amp;gt;&lt;BR /&gt;&amp;lt;% End Select %&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;lt;br&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;br&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;table align="center" width="60%"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;tr&amp;gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;td align="right" width=175 valign=top&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&amp;lt;b&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Amount:&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;td align="left"&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;$&amp;lt;%= Amount %&amp;gt;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;td align="right" width=175 valign=top&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&amp;lt;b&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Transaction ID:&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td align="left"&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&lt;BR /&gt;&amp;lt;% Select Case TransID&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Case "0"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Response.Write "Not Applicable."&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Case Else&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Response.Write TransID&lt;BR /&gt;End Select %&amp;gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;td align="right" width=175 valign=top&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&amp;lt;b&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Authorization Code:&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td align="left"&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&lt;BR /&gt;&amp;lt;% Select Case AuthCode&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Case "000000"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Response.Write "Not Applicable."&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Case Else&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Response.Write AuthCode&lt;BR /&gt;&amp;nbsp;End Select %&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;td align="right" width=175 valign=top&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&amp;lt;b&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response Reason:&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td align="left"&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;(&amp;lt;%= ResponseReasonCode %&amp;gt;)&amp;amp;nbsp;&amp;lt;%= ResponseReasonText %&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;font size="1" color="black" face="arial"&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;td align="right" width=175 valign=top&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&amp;lt;b&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Address Verification:&amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td align="left"&amp;gt;&amp;lt;font size="2" color="black" face="arial"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;% 'Turn the AVS code into the corresponding text string.&lt;BR /&gt;&amp;nbsp;Select Case AVS&lt;BR /&gt;&amp;nbsp;Case "A"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Address (Street) matches, ZIP does not."&lt;BR /&gt;&amp;nbsp;Case "B"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Address Information Not Provided for AVS Check."&lt;BR /&gt;&amp;nbsp;Case "C"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Street address and Postal Code not verified for international transaction due to incompatible formats. (Acquirer sent both street address and Postal Code.)"&amp;nbsp;&lt;BR /&gt;&amp;nbsp;Case "D"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "International Transaction:&amp;nbsp; Street address and Postal Code match."&lt;BR /&gt;&amp;nbsp;Case "E"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "AVS Error."&lt;BR /&gt;&amp;nbsp;Case "G"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Non U.S. Card Issuing Bank."&lt;BR /&gt;&amp;nbsp;Case "N"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "No Match on Address (Street) or ZIP."&lt;BR /&gt;&amp;nbsp;Case "P"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "AVS not applicable for this transaction."&lt;BR /&gt;&amp;nbsp;Case "R"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Retry. System unavailable or timed out."&lt;BR /&gt;&amp;nbsp;Case "S"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Service not supported by issuer."&lt;BR /&gt;&amp;nbsp;Case "U"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Address information is unavailable."&lt;BR /&gt;&amp;nbsp;Case "W"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "9 digit ZIP matches, Address (Street) does not."&lt;BR /&gt;&amp;nbsp;Case "X"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Address (Street) and 9 digit ZIP match."&lt;BR /&gt;&amp;nbsp;Case "Y"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "Address (Street) and 5 digit ZIP match."&lt;BR /&gt;&amp;nbsp;Case "Z"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "5 digit ZIP matches, Address (Street) does not."&lt;BR /&gt;&amp;nbsp;Case Else&lt;BR /&gt;&amp;nbsp;&amp;nbsp;Response.Write "The address verification system returned an unknown value."&lt;BR /&gt;End Select %&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/table&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;/html&amp;gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2012 13:15:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Coming-from-PayPal-and-Need-guidance/m-p/22907#M12363</guid>
      <dc:creator>pinkstonm</dc:creator>
      <dc:date>2012-02-09T13:15:28Z</dc:date>
    </item>
  </channel>
</rss>

