<?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: Error 92 in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29906#M15688</link>
    <description>&lt;P&gt;Are you using SIM, or weblink?&lt;/P&gt;&lt;P&gt;&lt;U&gt;Simple Integration Method (SIM) Suggestions&lt;/U&gt;:&lt;BR /&gt;&lt;BR /&gt;1. You will receive this error if there are variables being sent that are not applicable to SIM. Two of the variables that are most commonly incorrect include:&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;x_adc_relay_response&lt;/EM&gt; - the variable name should be sent as &lt;EM&gt;x_relay_response&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;x_adc_relay_url&lt;/EM&gt; - the variable name should be sent as &lt;EM&gt;x_relay_url&lt;/EM&gt;.&lt;BR /&gt;&lt;BR /&gt;2. You will receive this error if the proper fingerprint hash variables are not being sent with the transaction request. The variables that need to be included (with appropriate values):&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;x_fp_hash&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;x_fp_sequence&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;x_fp_timestamp&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;These variables are used in creating and then passing the fingerprint hash with the transaction request. Authorize.Net then uses the passed variables and the stored transaction key to attempt to create the same fingerprint hash. If the two fingerprints match, we accept the transaction. If not, the transaction request is refused.&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Weblink Integration Suggestions&lt;/U&gt;:&lt;BR /&gt;&lt;BR /&gt;You will receive this error if Weblink has been disabled on your account in error. When logging into your Authorize.net account you may be prompted to disable Weblink. However this should only be disabled if you have already successfully upgraded to SIM or AIM. If you have not successfully upgraded, and have disabled the Weblink connection method then transactions from your website will return Error 92.&lt;BR /&gt;&lt;BR /&gt;If you have disabled Weblink in error, please call Merchant Support at 877-447-3938 so we may re-enable the option while you complete your upgrade to SIM or AIM.&lt;BR /&gt;&lt;BR /&gt;For documentation on SIM and AIM please visit &lt;A target="_blank" href="http://developer.authorize.net/guides/"&gt;http://developer.authorize.net/guides/&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Sat, 22 Sep 2012 00:39:52 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2012-09-22T00:39:52Z</dc:date>
    <item>
      <title>Error 92</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29898#M15684</link>
      <description>&lt;P&gt;I have a shopping cart integration that has been working fine for several years. I am now duplicating the integration for an additional product. I have used the same settings in the orginial cart yet I am getting error 92. "The gateway no longer supports the requested method of integration".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error 92 fix suggestions says that:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Sending site needs to be a secure site. It is.&lt;/P&gt;&lt;P&gt;The&amp;nbsp;other suggestion had to do with x_delim_data&amp;nbsp; (I've tried it as 'True' and without it)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why am I getting this error 92 when i am using the same settings as the integration that have been working for year?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are the values I am using: (asp code)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; response.write "&amp;lt;input type=hidden name=x_card_num value='" &amp;amp; session("realcc") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;response.write "&amp;lt;input type=hidden name=x_exp_date value='" &amp;amp; rs.fields("exp_date") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; response.write "&amp;lt;input type=hidden name=x_test_request value=TRUE&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; response.write "&amp;lt;input type=hidden name=x_Ship_To_Address value='" &amp;amp; rs.fields("ship_address") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; response.write "&amp;lt;input type=hidden name=x_Ship_To_City value='" &amp;amp; rs.fields("ship_city") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;response.write "&amp;lt;input type=hidden name=x_Ship_To_State value='" &amp;amp; rs.fields("ship_state") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;response.write "&amp;lt;input type=hidden name=x_Ship_To_Zip value='" &amp;amp; rs.fields("ship_zip") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;response.write "&amp;lt;input type=hidden name=x_Ship_To_Country value='" &amp;amp; rs.fields("ship_country") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; response.write "&amp;lt;input type=hidden name=x_Ship_To_First_Name value='" &amp;amp; rsCustomer.fields("fname") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; response.write "&amp;lt;input type=hidden name=x_Ship_To_Last_Name value='" &amp;amp; rsCustomer.fields("lname") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; response.write "&amp;lt;input type=hidden name=x_First_Name value='" &amp;amp; rsCustomer.fields("fname") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; response.write "&amp;lt;input type=hidden name=x_Last_Name value='" &amp;amp; rsCustomer.fields("lname") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;response.write "&amp;lt;input type=hidden name=x_Address value='" &amp;amp; rsCustomer.fields("address1") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;response.write "&amp;lt;input type=hidden name=x_City value='" &amp;amp; rsCustomer.fields("city") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;response.write "&amp;lt;input type=hidden name=x_State value='" &amp;amp; rsCustomer.fields("state") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;response.write "&amp;lt;input type=hidden name=x_Zip value='" &amp;amp; rsCustomer.fields("zip") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;response.write "&amp;lt;input type=hidden name=x_Country value='" &amp;amp; rsCustomer.fields("country") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;response.write "&amp;lt;input type=hidden name=x_Phone value='" &amp;amp; rsCustomer.fields("phone") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;response.write "&amp;lt;input type=hidden name=x_Fax value='" &amp;amp; rsCustomer.fields("fax") &amp;amp; "'&amp;gt;"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;response.write "&amp;lt;input type=hidden name=x_Email value='" &amp;amp; rsCustomer.fields("email") &amp;amp; "'&amp;gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;response.write "&amp;lt;INPUT TYPE=hidden NAME=x_Relay_Response VALUE=true&amp;gt;"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;response.write "&amp;lt;INPUT TYPE=hidden NAME=x_delim_data&amp;nbsp; VALUE=true&amp;gt;"&amp;nbsp; &lt;STRONG&gt;(this was not being used originally, then I added it - did not change the error)&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;response.write "&amp;lt;INPUT TYPE=hidden NAME=x_Relay_URL value='" &amp;amp; sitelink&amp;nbsp; &amp;amp; "'&amp;gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Sep 2012 23:42:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29898#M15684</guid>
      <dc:creator>aqdotcom</dc:creator>
      <dc:date>2012-09-21T23:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error 92</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29906#M15688</link>
      <description>&lt;P&gt;Are you using SIM, or weblink?&lt;/P&gt;&lt;P&gt;&lt;U&gt;Simple Integration Method (SIM) Suggestions&lt;/U&gt;:&lt;BR /&gt;&lt;BR /&gt;1. You will receive this error if there are variables being sent that are not applicable to SIM. Two of the variables that are most commonly incorrect include:&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;x_adc_relay_response&lt;/EM&gt; - the variable name should be sent as &lt;EM&gt;x_relay_response&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;x_adc_relay_url&lt;/EM&gt; - the variable name should be sent as &lt;EM&gt;x_relay_url&lt;/EM&gt;.&lt;BR /&gt;&lt;BR /&gt;2. You will receive this error if the proper fingerprint hash variables are not being sent with the transaction request. The variables that need to be included (with appropriate values):&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;x_fp_hash&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;x_fp_sequence&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;x_fp_timestamp&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;These variables are used in creating and then passing the fingerprint hash with the transaction request. Authorize.Net then uses the passed variables and the stored transaction key to attempt to create the same fingerprint hash. If the two fingerprints match, we accept the transaction. If not, the transaction request is refused.&lt;BR /&gt;&lt;BR /&gt;&lt;U&gt;Weblink Integration Suggestions&lt;/U&gt;:&lt;BR /&gt;&lt;BR /&gt;You will receive this error if Weblink has been disabled on your account in error. When logging into your Authorize.net account you may be prompted to disable Weblink. However this should only be disabled if you have already successfully upgraded to SIM or AIM. If you have not successfully upgraded, and have disabled the Weblink connection method then transactions from your website will return Error 92.&lt;BR /&gt;&lt;BR /&gt;If you have disabled Weblink in error, please call Merchant Support at 877-447-3938 so we may re-enable the option while you complete your upgrade to SIM or AIM.&lt;BR /&gt;&lt;BR /&gt;For documentation on SIM and AIM please visit &lt;A target="_blank" href="http://developer.authorize.net/guides/"&gt;http://developer.authorize.net/guides/&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Sep 2012 00:39:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29906#M15688</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-09-22T00:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error 92</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29910#M15690</link>
      <description>&lt;P&gt;I am using the AIM integration method. I am using same form values used on a shopping cart transaction that is working and has been working fine for years.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why would I getting error 92 in this new transaction that I am testing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I am using is displayed above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Sep 2012 15:05:13 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29910#M15690</guid>
      <dc:creator>aqdotcom</dc:creator>
      <dc:date>2012-09-22T15:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error 92</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29912#M15691</link>
      <description>&lt;P&gt;Ok, I made a mistake - I am using the SIM method and I am missing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;x_fp_hash&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;x_fp_sequence&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;x_fp_timestamp&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will fix that and try it out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Sat, 22 Sep 2012 15:55:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Error-92/m-p/29912#M15691</guid>
      <dc:creator>aqdotcom</dc:creator>
      <dc:date>2012-09-22T15:55:42Z</dc:date>
    </item>
  </channel>
</rss>

