<?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 Need help getting DPM to work in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-help-getting-DPM-to-work/m-p/57792#M32482</link>
    <description>&lt;P&gt;First off, I am using DPM because my understanding is that Accept.js does not support e-check and the whole reason that I am involved in making this update is to add e-check support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to rewrite a classic ASP page for DPM in VB.Net using razor syntax. I have repeatedly received the error response:&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;&lt;SPAN&gt;(13) The merchant login ID or password is invalid or the account is inactive.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I know the default response. I am using the wrong login in or posting to the wrong URL. I am posting using the same URL that my current ASP page is posting to and I am using the same x_login value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also, if I go to this URL:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://secure.authorize.net/gateway/transact.dll?x_version=3.1&amp;amp;x_type=AUTH_ONLY&amp;amp;x_amount=1.99&amp;amp;x_card_num=4111111111111111&amp;amp;x_exp_date=0615&amp;amp;x_delim_data=TRUE&amp;amp;x_relay_response=FALSE&amp;amp;x_login=MY_LOGIN_HERE&amp;amp;x_tran_key=MY_KEY_HERE" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll?x_version=3.1&amp;amp;x_type=AUTH_ONLY&amp;amp;x_amount=1.99&amp;amp;x_card_num=4111111111111111&amp;amp;x_exp_date=0615&amp;amp;x_delim_data=TRUE&amp;amp;x_relay_response=FALSE&amp;amp;x_login=MY_LOGIN_HERE&amp;amp;x_tran_key=MY_KEY_HERE&lt;/A&gt; it returns that the credit card has expired. If I enter an invalid x_login on that url it returns "The merchant login ID or password is invalid or the account is inactive." If I enter my valid x_login and an invalid x_tran_key I receive "This transaction cannot be accepted."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So, I know that my x_login is correct and that I am posting to the correct URL.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In order to eliminate any coding issues, I put together a simple form just to post static information to the URL:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;form method="POST" action="https://secure.authorize.net/gateway/transact.dll"&amp;gt; 

&amp;lt;input type=hidden id="x_login" name="x_login" value='MY_LOGIN'/&amp;gt;
&amp;lt;input type=hidden id="x_cust_id" name="x_cust_id" value='106400289'/&amp;gt;
&amp;lt;input type=hidden id="x_card_num" name="x_card_num" value='5424000000000015'/&amp;gt;
&amp;lt;input type=hidden id="x_exp_date" name="x_exp_date" value='12-17'/&amp;gt;
&amp;lt;input type=hidden id="x_card_code" name="x_card_code" value='123'/&amp;gt;
&amp;lt;input type=hidden id="x_fp_hash" name="x_fp_hash" value='84EFB49E5F4A8F7CB3EEB3C6A1B2B305'/&amp;gt;
&amp;lt;input type=hidden id="x_amount" name="x_amount" value='123.60'/&amp;gt;
&amp;lt;input type=hidden id="x_fp_timestamp" name="x_fp_timestamp" value='1493038728'/&amp;gt;
&amp;lt;input type=hidden id="x_fp_sequence" name="x_fp_sequence" value='531'/&amp;gt;
&amp;lt;input type=hidden id="x_relay_url" name="x_relay_url" value='https://www.my.com/CCPayment2.vbhtml'/&amp;gt;
&amp;lt;input type=hidden id="x_relay_response" name="x_relay_response" value='Y'/&amp;gt;
&amp;lt;input type=hidden id="x_type" name="x_type" value='AUTH_CAPTURE'/&amp;gt;
&amp;lt;input type=hidden id="x_currency_code" name="x_currency_code" value='USD'/&amp;gt;
&amp;lt;input type=hidden id="x_version" name="x_version" value='3.1'/&amp;gt;
&amp;lt;input type=hidden id="x_invoice_num" name="x_invoice_num" value='2'/&amp;gt;

&amp;lt;input type="submit"/&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;I verified that my hash value was correct using the link at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://developer.authorize.net/api/reference/responseCode99.html" target="_blank"&gt;http://developer.authorize.net/api/reference/responseCode99.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This returns the error message:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(13) The merchant login ID or password is invalid or the account is inactive.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In researching I did find where one developer received that message because he used the same test card and amount and evidently that message is returned as the result of a duplicate. So I changed the amount, the card, the time stapm, and the hash and tried again with the same result. I also used both the "name" and "id" within the hiddden fields since I have seen references to both of those.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would appreciate any help that anyone can provide. If I can't see any light on this issue by the end of the day I am not going to have a choice but to look at using a different processor. I am up against time and even though I will have to change a number of internal processes to switch to another processor, I am on a deadline to have e-check working by the end of the week.&lt;/SPAN&gt;&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;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Apr 2017 14:46:02 GMT</pubDate>
    <dc:creator>TonyS</dc:creator>
    <dc:date>2017-04-24T14:46:02Z</dc:date>
    <item>
      <title>Need help getting DPM to work</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-help-getting-DPM-to-work/m-p/57792#M32482</link>
      <description>&lt;P&gt;First off, I am using DPM because my understanding is that Accept.js does not support e-check and the whole reason that I am involved in making this update is to add e-check support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to rewrite a classic ASP page for DPM in VB.Net using razor syntax. I have repeatedly received the error response:&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;&lt;SPAN&gt;(13) The merchant login ID or password is invalid or the account is inactive.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I know the default response. I am using the wrong login in or posting to the wrong URL. I am posting using the same URL that my current ASP page is posting to and I am using the same x_login value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also, if I go to this URL:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://secure.authorize.net/gateway/transact.dll?x_version=3.1&amp;amp;x_type=AUTH_ONLY&amp;amp;x_amount=1.99&amp;amp;x_card_num=4111111111111111&amp;amp;x_exp_date=0615&amp;amp;x_delim_data=TRUE&amp;amp;x_relay_response=FALSE&amp;amp;x_login=MY_LOGIN_HERE&amp;amp;x_tran_key=MY_KEY_HERE" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll?x_version=3.1&amp;amp;x_type=AUTH_ONLY&amp;amp;x_amount=1.99&amp;amp;x_card_num=4111111111111111&amp;amp;x_exp_date=0615&amp;amp;x_delim_data=TRUE&amp;amp;x_relay_response=FALSE&amp;amp;x_login=MY_LOGIN_HERE&amp;amp;x_tran_key=MY_KEY_HERE&lt;/A&gt; it returns that the credit card has expired. If I enter an invalid x_login on that url it returns "The merchant login ID or password is invalid or the account is inactive." If I enter my valid x_login and an invalid x_tran_key I receive "This transaction cannot be accepted."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So, I know that my x_login is correct and that I am posting to the correct URL.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In order to eliminate any coding issues, I put together a simple form just to post static information to the URL:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;form method="POST" action="https://secure.authorize.net/gateway/transact.dll"&amp;gt; 

&amp;lt;input type=hidden id="x_login" name="x_login" value='MY_LOGIN'/&amp;gt;
&amp;lt;input type=hidden id="x_cust_id" name="x_cust_id" value='106400289'/&amp;gt;
&amp;lt;input type=hidden id="x_card_num" name="x_card_num" value='5424000000000015'/&amp;gt;
&amp;lt;input type=hidden id="x_exp_date" name="x_exp_date" value='12-17'/&amp;gt;
&amp;lt;input type=hidden id="x_card_code" name="x_card_code" value='123'/&amp;gt;
&amp;lt;input type=hidden id="x_fp_hash" name="x_fp_hash" value='84EFB49E5F4A8F7CB3EEB3C6A1B2B305'/&amp;gt;
&amp;lt;input type=hidden id="x_amount" name="x_amount" value='123.60'/&amp;gt;
&amp;lt;input type=hidden id="x_fp_timestamp" name="x_fp_timestamp" value='1493038728'/&amp;gt;
&amp;lt;input type=hidden id="x_fp_sequence" name="x_fp_sequence" value='531'/&amp;gt;
&amp;lt;input type=hidden id="x_relay_url" name="x_relay_url" value='https://www.my.com/CCPayment2.vbhtml'/&amp;gt;
&amp;lt;input type=hidden id="x_relay_response" name="x_relay_response" value='Y'/&amp;gt;
&amp;lt;input type=hidden id="x_type" name="x_type" value='AUTH_CAPTURE'/&amp;gt;
&amp;lt;input type=hidden id="x_currency_code" name="x_currency_code" value='USD'/&amp;gt;
&amp;lt;input type=hidden id="x_version" name="x_version" value='3.1'/&amp;gt;
&amp;lt;input type=hidden id="x_invoice_num" name="x_invoice_num" value='2'/&amp;gt;

&amp;lt;input type="submit"/&amp;gt;
&amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;I verified that my hash value was correct using the link at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://developer.authorize.net/api/reference/responseCode99.html" target="_blank"&gt;http://developer.authorize.net/api/reference/responseCode99.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This returns the error message:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(13) The merchant login ID or password is invalid or the account is inactive.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In researching I did find where one developer received that message because he used the same test card and amount and evidently that message is returned as the result of a duplicate. So I changed the amount, the card, the time stapm, and the hash and tried again with the same result. I also used both the "name" and "id" within the hiddden fields since I have seen references to both of those.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would appreciate any help that anyone can provide. If I can't see any light on this issue by the end of the day I am not going to have a choice but to look at using a different processor. I am up against time and even though I will have to change a number of internal processes to switch to another processor, I am on a deadline to have e-check working by the end of the week.&lt;/SPAN&gt;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2017 14:46:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-help-getting-DPM-to-work/m-p/57792#M32482</guid>
      <dc:creator>TonyS</dc:creator>
      <dc:date>2017-04-24T14:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need help getting DPM to work</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-help-getting-DPM-to-work/m-p/57795#M32485</link>
      <description>&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;DIV class="vote"&gt;&lt;SPAN class="vote-count-post "&gt;0&lt;/SPAN&gt;&lt;A title="This answer is not useful" target="_blank"&gt;down vote&lt;/A&gt;accept&lt;/DIV&gt;&lt;/TD&gt;&lt;TD&gt;&lt;DIV class="post-text"&gt;&lt;P&gt;In case anyone else is looking for an answer to this in the future, the message:&lt;/P&gt;&lt;P&gt;(13) The merchant login ID or password is invalid or the account is inactive.&lt;/P&gt;&lt;P&gt;evidently appears for more reasons than supplying the wrong login id or connecting to the wrong url at least as far as DPM is concerned.&lt;/P&gt;&lt;P&gt;In my instance, the refresh on my link "&lt;A href="https://www.my.com/CCPayment2.vbhtml" target="_blank" rel="nofollow noreferrer"&gt;https://www.my.com/CCPayment2.vbhtml&lt;/A&gt;" contained an invalid URL. Once I discovered and fixed this, everything worked fine.&lt;/P&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 25 Apr 2017 14:05:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-help-getting-DPM-to-work/m-p/57795#M32485</guid>
      <dc:creator>TonyS</dc:creator>
      <dc:date>2017-04-25T14:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need help getting DPM to work</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-help-getting-DPM-to-work/m-p/75716#M47244</link>
      <description>&lt;P&gt;When I run your coldfusion script posted I get&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3 , 2 , 13 , The merchant login ID or password is invalid or the account is inactive&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please help.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Apr 2021 19:54:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Need-help-getting-DPM-to-work/m-p/75716#M47244</guid>
      <dc:creator>Comdev12</dc:creator>
      <dc:date>2021-04-11T19:54:15Z</dc:date>
    </item>
  </channel>
</rss>

