<?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: eChecks and SIM PHP code example in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47893#M24171</link>
    <description>&lt;P&gt;Thanks! &amp;nbsp;The link brought to another page which gave me a clue to what was wrong. &amp;nbsp;And that was....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The fingerprint requires the amount to generate correct. &amp;nbsp;I was putting the amount in the code after the fingerprint. I moved the amount variable ahead of the fingerprint and now it works! &amp;nbsp;I am getting a different error now - but I think its just because I am testing with a made up bank account number.&lt;/P&gt;</description>
    <pubDate>Sat, 11 Oct 2014 22:31:27 GMT</pubDate>
    <dc:creator>KB_developer</dc:creator>
    <dc:date>2014-10-11T22:31:27Z</dc:date>
    <item>
      <title>eChecks and SIM PHP code example</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47887#M24168</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone provide an example of code to use - for SIM and eCheck. &amp;nbsp;I have a snippet below that only results in this error:&lt;/P&gt;&lt;P&gt;The following errors have occurred.&lt;BR /&gt;(99) This transaction cannot be accepted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are using SIM with a hosted form for CC payments and that works fine. We are approved for Echeck. I'd like to use SIM, not AIM. &amp;nbsp;I took this snippet from the working CC code and changed the X_Method field to "ECHECK". &amp;nbsp;That's as far as I got. I was hoping to see the hosted form change to one in which bank info is entered instead of credit card info. When in the authorize account, I don't see anything to set on the hosted form about this, so was hoping it just sensed what to do by changing the X_method, but that is not working. &amp;nbsp;Help!? &amp;nbsp;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;form id="f" name="f" class="form-horizontal" method="post" action="&lt;A href="https://community.developer.cybersource.com/" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll"&amp;gt;&lt;/A&gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_login" value="&amp;lt;?php echo $api_login_id; ?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_fp_hash" value="&amp;lt;?php echo $fingerprint; ?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_amount" value="&amp;lt;?php echo $amount; ?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_fp_timestamp" value="&amp;lt;?php echo $fp_timestamp; ?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_fp_sequence" value="&amp;lt;?php echo $fp_sequence; ?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_description" value="&amp;lt;?php echo $description; ?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_line_item1" value="item1&amp;lt;|&amp;gt;&amp;lt;|&amp;gt;Membership Registration&amp;lt;|&amp;gt;1&amp;lt;|&amp;gt;&amp;lt;?php echo number_format($amount,2); ?&amp;gt;&amp;lt;|&amp;gt;N" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_invoice_num" value="&amp;lt;?php echo $formid; ?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_po_num" value="&amp;lt;?php echo $formtype; ?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_delim_data" value="FALSE" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_relay_always" value="TRUE" /&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="&lt;A href="http://xxxxxxx.php&amp;quot;" target="_blank"&gt;http://xxxxxxx.php"&lt;/A&gt; /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;input type='hidden' name="x_version" value="3.1"&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="ECHECK"&amp;gt;&lt;BR /&gt;&amp;lt;button type="submit" class="btn btn-success" &amp;gt;Checkout to Pay&amp;lt;/button&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Oct 2014 17:36:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47887#M24168</guid>
      <dc:creator>KB_developer</dc:creator>
      <dc:date>2014-10-11T17:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: eChecks and SIM PHP code example</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47889#M24169</link>
      <description>&lt;P&gt;oh and by the &amp;nbsp;way with the above snippet I use this reference to the library...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;require_once 'anet_php_sdk/AuthorizeNet.php'; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Oct 2014 17:53:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47889#M24169</guid>
      <dc:creator>KB_developer</dc:creator>
      <dc:date>2014-10-11T17:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: eChecks and SIM PHP code example</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47891#M24170</link>
      <description>&lt;P&gt;Is the&amp;nbsp;&lt;EM&gt;x_fp_hash&lt;/EM&gt;&amp;nbsp;&amp;nbsp; match the one from &lt;A href="https://developer.authorize.net/tools/responsecode99/" target="_blank"&gt;https://developer.authorize.net/tools/responsecode99/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Oct 2014 20:56:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47891#M24170</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-10-11T20:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: eChecks and SIM PHP code example</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47893#M24171</link>
      <description>&lt;P&gt;Thanks! &amp;nbsp;The link brought to another page which gave me a clue to what was wrong. &amp;nbsp;And that was....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The fingerprint requires the amount to generate correct. &amp;nbsp;I was putting the amount in the code after the fingerprint. I moved the amount variable ahead of the fingerprint and now it works! &amp;nbsp;I am getting a different error now - but I think its just because I am testing with a made up bank account number.&lt;/P&gt;</description>
      <pubDate>Sat, 11 Oct 2014 22:31:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/eChecks-and-SIM-PHP-code-example/m-p/47893#M24171</guid>
      <dc:creator>KB_developer</dc:creator>
      <dc:date>2014-10-11T22:31:27Z</dc:date>
    </item>
  </channel>
</rss>

