<?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 regarding echeck using SIM in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56339#M31139</link>
    <description>&lt;P&gt;i am using the following code for echeck payments through SIM for the live account(not testing account) but it showing error code 66&amp;nbsp;&lt;BR /&gt;PLS HELP&lt;BR /&gt;&lt;BR /&gt;&amp;lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "&lt;A href="http://www.w3.org/TR/html4/loose.dtd" target="_blank"&gt;http://www.w3.org/TR/html4/loose.dtd&lt;/A&gt;" &amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;&lt;BR /&gt;Payment Pages: Sample PHP Payment Form&lt;BR /&gt;&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;style type="text/css"&amp;gt;&lt;BR /&gt;label {&lt;BR /&gt;display: block;&lt;BR /&gt;margin: 5px 0px;&lt;BR /&gt;color: #AAA;&lt;BR /&gt;}&lt;BR /&gt;input {&lt;BR /&gt;display: block;&lt;BR /&gt;}&lt;BR /&gt;input[type=submit] {&lt;BR /&gt;margin-top: 20px;&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;&amp;lt;h1&amp;gt;Processing Please Wait...&amp;lt;/h1&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;form action="&lt;A href="https://secure2.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure2.authorize.net/gateway/transact.dll&lt;/A&gt;" method="POST" name="f1" id="frmSignUp"&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;lt;?php&lt;/P&gt;&lt;P&gt;$x_login = "xxxxxxx"; // Take from Payment Page ID in Payment Pages interface&lt;BR /&gt;$x_amount = "100";&lt;BR /&gt;srand(time()); // initialize random generator for x_fp_sequence&lt;BR /&gt;$x_fp_sequence = rand(1000, 100000) + 123456;&lt;BR /&gt;$x_invoice_num = &amp;amp;$x_fp_sequence;&lt;BR /&gt;$x_fp_timestamp = time(); // needs to be in UTC. Make sure webserver produces UTC&lt;BR /&gt;$x_currency_code = "USD";&lt;BR /&gt;$x_method = "ECHECK";&lt;BR /&gt;$x_echeck_type = "WEB";&lt;BR /&gt;$x_relay_response = "FALSE";&lt;BR /&gt;$x_delim_data = "TRUE";&lt;BR /&gt;$x_type = "AUTH_CAPTURE";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// The values that contribute to x_fp_hash&lt;BR /&gt;$hmac_data = $x_login."^".$x_fp_sequence."^".$x_fp_timestamp."^".$x_amount;&lt;BR /&gt;$x_fp_hash = hash_hmac('MD5', $hmac_data);&lt;/P&gt;&lt;P&gt;echo ('&amp;lt;input name="x_login" value="' . $x_login . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_amount" value="' . $x_amount . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_fp_sequence" value="' . $x_fp_sequence . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_invoice_num" value="' . $x_invoice_num . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_fp_timestamp" value="' . $x_fp_timestamp . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_fp_hash" value="' . $x_fp_hash . '" size="50" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_method" value="' . $x_method . '" type="hidden"&amp;gt;');&lt;BR /&gt;echo ('&amp;lt;input name="x_echeck_type" value="' . $x_echeck_type . '" type="hidden"&amp;gt;');&lt;BR /&gt;echo ('&amp;lt;input name="x_relay_response" value="' . $x_relay_response . '" type="hidden"&amp;gt;');&lt;BR /&gt;echo ('&amp;lt;input name="x_delim_data" value="' . $x_delim_data . '" type="hidden"&amp;gt;');&lt;BR /&gt;echo ('&amp;lt;input name="x_type" value="' . $x_type . '" type="hidden"&amp;gt;');&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// create parameters input in html&lt;BR /&gt;foreach ($_POST as $a =&amp;gt; $b) {&lt;BR /&gt;echo "&amp;lt;input type='hidden' name='".htmlentities($a)."' value='".htmlentities($b)."'&amp;gt;";&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;input type="hidden" name="x_show_form" value="PAYMENT_FORM"/&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script type='text/javascript'&amp;gt;document.f1.submit();&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;</description>
    <pubDate>Tue, 06 Dec 2016 17:21:44 GMT</pubDate>
    <dc:creator>krishna049</dc:creator>
    <dc:date>2016-12-06T17:21:44Z</dc:date>
    <item>
      <title>regarding echeck using SIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56339#M31139</link>
      <description>&lt;P&gt;i am using the following code for echeck payments through SIM for the live account(not testing account) but it showing error code 66&amp;nbsp;&lt;BR /&gt;PLS HELP&lt;BR /&gt;&lt;BR /&gt;&amp;lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "&lt;A href="http://www.w3.org/TR/html4/loose.dtd" target="_blank"&gt;http://www.w3.org/TR/html4/loose.dtd&lt;/A&gt;" &amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;&lt;BR /&gt;Payment Pages: Sample PHP Payment Form&lt;BR /&gt;&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;style type="text/css"&amp;gt;&lt;BR /&gt;label {&lt;BR /&gt;display: block;&lt;BR /&gt;margin: 5px 0px;&lt;BR /&gt;color: #AAA;&lt;BR /&gt;}&lt;BR /&gt;input {&lt;BR /&gt;display: block;&lt;BR /&gt;}&lt;BR /&gt;input[type=submit] {&lt;BR /&gt;margin-top: 20px;&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&lt;BR /&gt;&amp;lt;h1&amp;gt;Processing Please Wait...&amp;lt;/h1&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;form action="&lt;A href="https://secure2.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure2.authorize.net/gateway/transact.dll&lt;/A&gt;" method="POST" name="f1" id="frmSignUp"&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;lt;?php&lt;/P&gt;&lt;P&gt;$x_login = "xxxxxxx"; // Take from Payment Page ID in Payment Pages interface&lt;BR /&gt;$x_amount = "100";&lt;BR /&gt;srand(time()); // initialize random generator for x_fp_sequence&lt;BR /&gt;$x_fp_sequence = rand(1000, 100000) + 123456;&lt;BR /&gt;$x_invoice_num = &amp;amp;$x_fp_sequence;&lt;BR /&gt;$x_fp_timestamp = time(); // needs to be in UTC. Make sure webserver produces UTC&lt;BR /&gt;$x_currency_code = "USD";&lt;BR /&gt;$x_method = "ECHECK";&lt;BR /&gt;$x_echeck_type = "WEB";&lt;BR /&gt;$x_relay_response = "FALSE";&lt;BR /&gt;$x_delim_data = "TRUE";&lt;BR /&gt;$x_type = "AUTH_CAPTURE";&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// The values that contribute to x_fp_hash&lt;BR /&gt;$hmac_data = $x_login."^".$x_fp_sequence."^".$x_fp_timestamp."^".$x_amount;&lt;BR /&gt;$x_fp_hash = hash_hmac('MD5', $hmac_data);&lt;/P&gt;&lt;P&gt;echo ('&amp;lt;input name="x_login" value="' . $x_login . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_amount" value="' . $x_amount . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_fp_sequence" value="' . $x_fp_sequence . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_invoice_num" value="' . $x_invoice_num . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_fp_timestamp" value="' . $x_fp_timestamp . '" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_fp_hash" value="' . $x_fp_hash . '" size="50" type="hidden"&amp;gt;' );&lt;BR /&gt;echo ('&amp;lt;input name="x_method" value="' . $x_method . '" type="hidden"&amp;gt;');&lt;BR /&gt;echo ('&amp;lt;input name="x_echeck_type" value="' . $x_echeck_type . '" type="hidden"&amp;gt;');&lt;BR /&gt;echo ('&amp;lt;input name="x_relay_response" value="' . $x_relay_response . '" type="hidden"&amp;gt;');&lt;BR /&gt;echo ('&amp;lt;input name="x_delim_data" value="' . $x_delim_data . '" type="hidden"&amp;gt;');&lt;BR /&gt;echo ('&amp;lt;input name="x_type" value="' . $x_type . '" type="hidden"&amp;gt;');&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// create parameters input in html&lt;BR /&gt;foreach ($_POST as $a =&amp;gt; $b) {&lt;BR /&gt;echo "&amp;lt;input type='hidden' name='".htmlentities($a)."' value='".htmlentities($b)."'&amp;gt;";&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;input type="hidden" name="x_show_form" value="PAYMENT_FORM"/&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script type='text/javascript'&amp;gt;document.f1.submit();&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/body&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2016 17:21:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56339#M31139</guid>
      <dc:creator>krishna049</dc:creator>
      <dc:date>2016-12-06T17:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: regarding echeck using SIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56340#M31140</link>
      <description>&lt;P&gt;This may help: &amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/responseCodes.html?code=66" target="_blank"&gt;https://developer.authorize.net/api/reference/responseCodes.html?code=66&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2016 19:53:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56340#M31140</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2016-12-06T19:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: regarding echeck using SIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56345#M31145</link>
      <description>&lt;P&gt;does accept.js supports echeck transactions or it is only for credit card ??&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2016 02:37:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56345#M31145</guid>
      <dc:creator>krishna049</dc:creator>
      <dc:date>2016-12-07T02:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: regarding echeck using SIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56398#M31194</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20708"&gt;@krishna049&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just cards at this time. The idea of expanding it to eCheck has been proposed, and you can vote for that here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.authorize.net/t5/Ideas/Include-ACH-in-Accept-Js/idi-p/55888" target="_blank"&gt;https://community.developer.authorize.net/t5/Ideas/Include-ACH-in-Accept-Js/idi-p/55888&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Dec 2016 00:27:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/regarding-echeck-using-SIM/m-p/56398#M31194</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2016-12-10T00:27:36Z</dc:date>
    </item>
  </channel>
</rss>

