<?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: ASP.Net Relay Response? in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/46273#M23405</link>
    <description>&lt;P&gt;Thank you! &amp;nbsp;Been looking for hours for a solution and&amp;nbsp;EnableViewStateMac="false" did the trick!&lt;/P&gt;</description>
    <pubDate>Thu, 14 Aug 2014 15:23:22 GMT</pubDate>
    <dc:creator>djmrsc</dc:creator>
    <dc:date>2014-08-14T15:23:22Z</dc:date>
    <item>
      <title>ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/1091#M931</link>
      <description>&lt;P&gt;Ok, so I've done searches on the forums and it seems that either a) most people haven't gotten a thorough response or b) there really is no response to this question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When receiving a relay response, my asp classic code works fine... And when I code up a page to accept this same information in asp.net, it does not. My question is this: Is it not possible to use .net to accept the relay response? The only code provided for relay response is asp classic (which is what I ran the test with). It works great; however, I don't code in asp classic. :) It'd be nice to actually be able to use this data returned in a method that is not implimented in classic. Is my only option to accept the data with the classic code and send that data to another page?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2009 02:13:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/1091#M931</guid>
      <dc:creator>bburke</dc:creator>
      <dc:date>2009-12-08T02:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/1117#M950</link>
      <description>&lt;P&gt;I am having the same issue and could not find anything in the forums.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The way I got around it but not a pretty solution was what you are talking about. I basically used their example and created a classic asp page to receive the relay_response back. Then I built (response.write) a form to pass the data to an asp.net form to process the information (save to db and create email reply).&lt;/P&gt;&lt;P&gt;It works fine, except having an issue with FireFox (another post).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would be nice to be able to skip that step.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2009 19:52:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/1117#M950</guid>
      <dc:creator>kliscinsky</dc:creator>
      <dc:date>2009-12-09T19:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/1349#M1159</link>
      <description>&lt;P&gt;Imports System.Data.SqlClient&lt;/P&gt;&lt;P&gt;Partial Class PaymentResponse&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inherits System.Web.UI.Page&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x_cust_id As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x_response_code As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x_response_subcode As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x_response_reason_code As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x_response_reason_text As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x_auth_code As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x_invoice_num As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim x_trans_id As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim strEventID As String&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim strRegID As String&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '*** (Get the Payment Information from Authorization.Net) ***&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x_cust_id = Request.Form("x_cust_id")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x_response_code = Request.Form("x_response_code")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x_response_subcode = Request.Form("x_response_subcode")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x_response_reason_code = Request.Form("x_response_reason_code")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x_response_reason_text = Request.Form("x_response_reason_text")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x_auth_code = Request.Form("x_auth_code")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x_invoice_num = Request.Form("x_invoice_num")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x_trans_id = Request.Form("x_trans_id")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '*** (insert the log record indicating a payment was received) ***&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SDS_PaymentResponseLog.InsertParameters("PR_Data").DefaultValue = "Response Received: " &amp;amp; Now &amp;amp; "Customer ID: " &amp;amp; x_cust_id &amp;amp; " " &amp;amp; Request.Form.ToString&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SDS_PaymentResponseLog.Insert()&lt;/P&gt;</description>
      <pubDate>Sun, 03 Jan 2010 04:55:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/1349#M1159</guid>
      <dc:creator>jschleicher1</dc:creator>
      <dc:date>2010-01-03T04:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3847#M3514</link>
      <description>&lt;P&gt;Hi, I'm having the same problem with ASP.NET, but I can't find any example of how to do this, mixing classic ASP and ASP.NET. I never used classic ASP before and I don't know where to start. I looked at the Authorize examples in the Relay Response Section (the classic ASP example), but I don’t know how to pass that data to a ASP.NET form.&lt;BR /&gt;&lt;BR /&gt;Can you provide me some direction for me to look? Any help will be appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jul 2010 22:54:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3847#M3514</guid>
      <dc:creator>marques</dc:creator>
      <dc:date>2010-07-01T22:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3849#M3516</link>
      <description>&lt;P&gt;First let me say that I am not a ASP.NET programmer so I cannot explain things in a technical way. However, all relay response does is send a POST request to a page and then take the results of that rerquest and print them to the screen for the user to see. So, all your ASP.NET page needs to do is handle the POST request, which is the same as a&amp;nbsp;&lt;A rel="nofollow" target="_blank" href="http://www.johnconde.net/blog/all-about-authorize-nets-silent-post/"&gt;Silent Post&lt;/A&gt; request and output a recipt/confirmation to your users. It's really no different then handling a standard form submission.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 13:54:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3849#M3516</guid>
      <dc:creator>stymiee</dc:creator>
      <dc:date>2010-07-02T13:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3857#M3524</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for answer. I’m having a hard time with this issue and any help is appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a very simple ASP.NET form as a relay response page. The only thing it does (for testing purposes) is to take the values received and put them in string variables, that’s all, no database access, no email sending, etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That works fine in test mode (testMode=”TRUE”) but as soon as I change to real mode (testMode=”FALSE”) I get this message when I click the Submit button in the payment form:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;“An error occurred while trying to report this transaction to the merchant. An e-mail has been sent to the merchant informing them of the error. The following is the result of the attempt to charge your credit card.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This transaction has been approved.&lt;/P&gt;&lt;P&gt;It is advisable for you to contact the merchant to verify that you will receive the product or service.”&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Additionally I receive an email with this message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;“Your script timed out while we were trying to post transaction results to&lt;BR /&gt;it.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Transaction ID: xxxxxxxxx&lt;BR /&gt;Transaction Result: This transaction has been approved.”&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get this error 2 or 3 seconds after clicking the submit button in the payment form, so I think the problem is not a real time out, taking in account the simplicity of my page and the fact that it does work in test mode.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I talked to Authorize’s tech support and the person who spoke with me told me that I should use classic ASP in the relay response page, not ASP.NET. Maybe the problem has other causes but for now I don’t know what to do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’m aware of the fact you are not an ASP programmer, but I put here the code anyway, because is so simple. And maybe you can see something I missed. Thanks again.&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 rel="nofollow" target="_blank" href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitiona&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;l.dtd&lt;/A&gt;"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;html xmlns="&lt;A rel="nofollow" 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 runat="server"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;title&amp;gt;Authorize&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;lt;form id="form1" runat="server"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Loading...&lt;/P&gt;&lt;P&gt;&amp;nbsp; &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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Partial Public Class RespuestaAuthorize&lt;/P&gt;&lt;P&gt;&amp;nbsp; Inherits System.Web.UI.Page&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Response.Expires = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_response_code As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_response_code&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_response_code = Request.Form("x_response_code")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_response_subcode As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_response_subc&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;ode")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_response_subcode = Request.Form("x_response_subcode")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim n_x_response_reason_code As Integer = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_response_reas&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;on_code")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; n_x_response_reason_code = CInt(Request.Form("x_response_reason_code"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_response_reason_text As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_response_reas&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;on_text")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_response_reason_text = Request.Form("x_response_reason_text")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_auth_code As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_auth_code")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_auth_code = Request.Form("x_auth_code")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_avs_code As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_avs_code")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_avs_code = Request.Form("x_avs_code")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim n_x_trans_id As Integer = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_trans_id")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; n_x_trans_id = CInt(Request.Form("x_trans_id"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_invoice_num As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_invoice_num")&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_invoice_num = Request.Form("x_invoice_num")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_description As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_description")&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_description = Request.Form("x_description")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_amount As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_amount")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_amount = Request.Form("x_amount")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_method As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_method")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_method = Request.Form("x_method")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_type As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_type")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_type = Request.Form("x_type")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_cust_id As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_cust_id")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_cust_id = Request.Form("x_cust_id")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_first_name As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_first_name")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_first_name = Request.Form("x_first_name")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_last_name As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_last_name")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_last_name = Request.Form("x_last_name")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_company As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_company")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_company = Request.Form("x_company")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_address As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_address")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_address = Request.Form("x_address")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_city As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_city")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_city = Request.Form("x_city")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_state As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_state")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_state = Request.Form("x_state")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_zip As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_zip")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_zip = Request.Form("x_zip")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_country As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_country")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_country = Request.Form("x_country")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_phone As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_phone")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_phone = Request.Form("x_phone")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_fax As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_fax")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_fax = Request.Form("x_fax")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_email As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_email")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_email = Request.Form("x_email")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim de_x_tax As Decimal = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_tax")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; de_x_tax = CDec(Request.Form("x_tax"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim de_x_duty As Decimal = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_duty")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; de_x_duty = CDec(Request.Form("x_duty"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim de_x_freight As Decimal = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_freight")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; de_x_freight = CDec(Request.Form("x_freight"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_tax_exempt As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_tax_exempt")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_tax_exempt = Request.Form("x_tax_exempt")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_po_num As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_po_num")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_po_num = Request.Form("x_po_num")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_MD5_Hash As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_MD5_Hash")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_MD5_Hash = Request.Form("x_MD5_Hash")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim s_x_cvv2_resp_code As String = ""&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not String.IsNullOrEmpty(Request.Form("x_cvv2_resp_cod&lt;SPAN class="wbr"&gt;&amp;nbsp;&lt;/SPAN&gt;e")) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s_x_cvv2_resp_code = Request.Form("x_cvv2_resp_code")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;End Class&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 17:18:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3857#M3524</guid>
      <dc:creator>marques</dc:creator>
      <dc:date>2010-07-02T17:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3869#M3534</link>
      <description>&lt;P&gt;This is usually the result of an error in the page. The first thing you need to do for testing is submit a fake POST request directly to you relay response page so you can see the results in web browser. If there is an error you should see it there.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 20:42:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3869#M3534</guid>
      <dc:creator>stymiee</dc:creator>
      <dc:date>2010-07-02T20:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3872#M3537</link>
      <description>&lt;P&gt;I already did that, using your script at&lt;BR /&gt;&lt;BR /&gt;&lt;A rel="nofollow" target="_blank" href="http://www.johnconde.net/blog/all-about-authorize-nets-silent-post/"&gt;http://www.johnconde.net/blog/all-about-authorize-nets-silent-post/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It works without errors. It also works in test mode. Just did not work in real mode. Did you see all I do is to store the values I receive in string variables? How can that throw a time out error?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2010 21:07:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3872#M3537</guid>
      <dc:creator>marques</dc:creator>
      <dc:date>2010-07-02T21:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3879#M3544</link>
      <description>&lt;P&gt;I'm really sorry. It was my mistake: I was trying to cast the value of x_trans_id to Integer and that produced the error, it never happened in test mode because in that mode x_trans_id is always 0. I got confused by the error message from Authorize, the real problem was not related to a time out error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if you are having a time out message before the 10 seconds Authorize will wait to really throw a time out error, chances are that the problem is really an error in your code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jul 2010 00:52:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/3879#M3544</guid>
      <dc:creator>marques</dc:creator>
      <dc:date>2010-07-03T00:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/9840#M6412</link>
      <description>&lt;P&gt;I'm getting the same error.&amp;nbsp; No errors when I send a test post to the page.&amp;nbsp; I've even removed every line of code and I still get the errors.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2011 21:57:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/9840#M6412</guid>
      <dc:creator>psrichmond</dc:creator>
      <dc:date>2011-01-27T21:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/9856#M6419</link>
      <description>&lt;P&gt;ASP.NET users - this did the trick for me:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Page EnableViewStateMac="false"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2011 00:10:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/9856#M6419</guid>
      <dc:creator>psrichmond</dc:creator>
      <dc:date>2011-01-28T00:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/13066#M7886</link>
      <description>&lt;P&gt;Ok, I got my aspx to work after reading this thread, thanks for psrichmond.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But wouldn't there be a security issue if wer were to set EnableViewStateMac="false".&amp;nbsp; Anyone can comment on this issue?&amp;nbsp; And if there is, is there a workaround so that we can keep EnableViewStateMac='True' and get the relay response page (aspx) to work?&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2011 22:25:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/13066#M7886</guid>
      <dc:creator>franklee123</dc:creator>
      <dc:date>2011-05-23T22:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/13108#M7901</link>
      <description>&lt;P&gt;I didn't have my set to "false" and it still work. The only thing I can think of is we have static key in&lt;/P&gt;&lt;P&gt;&amp;lt;machineKey validationKey="GENERATE_YOUR_OWN" decryptionKey="GENERATE_YOUR_OWN" validation="SHA1"/&amp;gt;&lt;/P&gt;&lt;P&gt;in the web.conifg inside the &amp;lt;system.web&amp;gt; section&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;machineKey Generator&lt;/P&gt;&lt;P&gt;&lt;A href="http://aspnetresources.com/tools/machineKey" rel="nofollow" target="_blank"&gt;http://aspnetresources.com/tools/machineKey&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2011 11:30:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/13108#M7901</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-05-25T11:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/29922#M15696</link>
      <description>&lt;P&gt;Thanks Guys&lt;BR /&gt;&lt;BR /&gt;i could solve this only when I used EnableViewState="false"&lt;/P&gt;</description>
      <pubDate>Sun, 23 Sep 2012 05:06:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/29922#M15696</guid>
      <dc:creator>shishir333</dc:creator>
      <dc:date>2012-09-23T05:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: ASP.Net Relay Response?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/46273#M23405</link>
      <description>&lt;P&gt;Thank you! &amp;nbsp;Been looking for hours for a solution and&amp;nbsp;EnableViewStateMac="false" did the trick!&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2014 15:23:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ASP-Net-Relay-Response/m-p/46273#M23405</guid>
      <dc:creator>djmrsc</dc:creator>
      <dc:date>2014-08-14T15:23:22Z</dc:date>
    </item>
  </channel>
</rss>

