<?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: Processing Transaction, but not Redirecting to Approved Page in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54746#M29706</link>
    <description>&lt;P&gt;It this DPM or SIM? the relay response only wait 10 seconds, if your asp or VB took longer, it will timeout.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Relay-Response-Basics-and-Troubleshooting/ba-p/9536" target="_blank"&gt;https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Relay-Response-Basics-and-Troubleshooting/ba-p/9536&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 27 May 2016 19:54:30 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2016-05-27T19:54:30Z</dc:date>
    <item>
      <title>Processing Transaction, but not Redirecting to Approved Page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54745#M29705</link>
      <description>&lt;P&gt;Came into a weird situation, where I would be rebuilding a solution, but need to do some unexpected troubleshooting on current system. Not too familiar with VB or ASP and really dont know where to start. Anyways...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Transaction processes, but will not show approved transaction message to customer making purchase. Need help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You so much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Function process_books_pay()




bkid = Request.Form("bkid")
call openConn03("C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\private\data.mdb")
set rs = dbc03.execute("SELECT * FROM BookList WHERE BK_ID = '" &amp;amp; bkid &amp;amp;"'")

if rs.eof then 


else
rs.MoveFirst

     do While not rs.eof
	 bkname = rs("BK_NAME")
	 books_pkgorsin=rs("BK_TYPE")
	 
	 If Request.Form("booktype") = "online_and_hardcopy" then
	 If debugmode="1" then
	 ssl_amount="0.02"
	 
	 Else
     ssl_amount=rs("BK_PRICE_PHYS")
	 
	 End if
	 
	 'Start Unlimited Pricing
	 ElseIf Request.Form("booktype") = "unlimited_online" then
	 If debugmode="1" then
	 ssl_amount="0.03"
	 
	 Else
     ssl_amount=rs("BK_UNLIMITED_PRICE")
	 
	 End if
	 'END Unlimited Pricing
	 
	 'Start Unlimited Pricing
	 ElseIf Request.Form("booktype") = "hardcopy_only" then
	 If debugmode="1" then
	 ssl_amount="0.04"
	 
	 Else
     ssl_amount=rs("BK_PRICE_PHYSONLY")
	 
	 End if
	 'END Unlimited Pricing
	 
	 Else
	 If debugmode="1" then
	 ssl_amount="0.01"
	 
	 Else
     ssl_amount=rs("BK_PRICE")
	 
	 End if
	 
	 end if
	 
	 
	 
	 rs.movenext 
     loop
	 rs.Close

	 
end if


call set_buystr(ssl_amount, "CMI Book: " &amp;amp; bkname &amp;amp; "[Type: " &amp;amp; Request.Form("booktype") &amp;amp; "]")
call combine_xml()



if ssl_amount = "" then
Response.write "Training Material does not appear to have a price at this moment, please contact us or try at a later time."

else
'------------------------------------------------------------------------------RUN TRANSACTION
If RunTransAction(xml_charge_str) = "1" then
'Customer Approved and The Account Creation of addition takes place
'Add approved customer to reseller database
If reseller_uid = "" then

else

set rs = dbc03.execute("SELECT * FROM BookList WHERE BK_ID = '" &amp;amp; bkid &amp;amp; "'")

if rs.eof then 


else
rs.MoveFirst

     'do While not rs.eof
	 
	 
	 resellerbookname = rs("BK_NAME")
	 
	 
	 
	 
	 rs.movenext 
     'loop
	 rs.Close

	 
end if





'call closeConn03()
'call openConn03("C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\private\partner.mdb")
resellerpointid = "PD" &amp;amp; Month(now()) &amp;amp; Day(now()) &amp;amp; Right(Year(Date),2) &amp;amp; Hour(now()) &amp;amp; Minute(now()) &amp;amp; Second(now()) &amp;amp; RandomNumber()



dbc99.execute("INSERT INTO partner_data (PD_ID,PD_PID,PD_PRODID,PD_PRONAME,PD_PRODTYPE,PD_CONFIRMED,PD_TIMEAD,PD_TIMECONFIRMED,PD_GROSS,PD_METHOD) VALUES('" &amp;amp; resellerpointid &amp;amp; "','" &amp;amp; reseller_uid &amp;amp; "','" &amp;amp; bkid &amp;amp; "','" &amp;amp; resellerbookname &amp;amp; "','" &amp;amp; Request.Form("booktype") &amp;amp; "','1','" &amp;amp; FormatDateTime(now(), 0) &amp;amp; "','" &amp;amp; FormatDateTime(now(), 0) &amp;amp; "','" &amp;amp; ssl_amount &amp;amp; "','Bank')")

end if
'call closeConn03()

'restore connection to the books database for further operations
'call openConn03("C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\private\data.mdb")

email_subject = "CAD BOOKS CC Transaction: APPROVED"
strmsg = "STATE: APPROVED " &amp;amp; now() &amp;amp; vbcrlf &amp;amp; "TXN_ID: " &amp;amp; txnid &amp;amp; vbcrlf &amp;amp; "Book Type: " &amp;amp; Request.Form("booktype") &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "BookName: " &amp;amp; bkname &amp;amp; vbcrlf &amp;amp; "BookID: " &amp;amp; bkid &amp;amp; vbcrlf &amp;amp;"Machine Response From CC: " &amp;amp; v_xml(arraybase) &amp;amp; vbcrlf &amp;amp; "--------------------------------------------------------------------------Customer Billing Info: "&amp;amp; vbcrlf &amp;amp; v_xml(xml_charge_str)

Call SendEmailMessage("webmaster@cadmasters.com",adminemail,email_subject,strmsg)
		
		strmsg = ""
		email_subject = ""

cmibookgen_curbooktype = Request.Form("booktype")

If Cstr(cmibookgen_curbooktype) = Cstr("hardcopy_only") then

Response.Redirect("https://www.cadmasters.com/vmengine/secureportal/cadbooks/cc_ok_physonly.asp")
else
'Response.write "test: " &amp;amp; Request.Form("booktype") &amp;amp; " \ " &amp;amp; cmibookgen_curbooktype

cmibookgen_curbooktype =  Cstr(cmibookgen_curbooktype)

cmibookgen(bkid)


end if

Else
'Customer Card Declined
email_subject = "CAD BOOKS CC Transaction: DECLINED"
strmsg = "STATE: DECLINED " &amp;amp; now() &amp;amp; vbcrlf &amp;amp; "Book Type: " &amp;amp; Request.Form("booktype") &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "BookName: " &amp;amp; bkname &amp;amp; "BookID: " &amp;amp; bkid &amp;amp; "ErrorCode: " &amp;amp; errCode &amp;amp; vbcrlf &amp;amp; "ErrorMsg: " &amp;amp; errMessage &amp;amp; vbcrlf &amp;amp; "ErrorCode2: " &amp;amp; errCode2 &amp;amp; vbcrlf &amp;amp; "ErrorMsg2: " &amp;amp; errMessage2 &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Machine Response From CC: " &amp;amp; v_xml(arraybase) &amp;amp; vbcrlf &amp;amp; "--------------------------------------------------------------------------Customer Billing Info: "&amp;amp; vbcrlf &amp;amp; v_xml(xml_charge_str)

Call SendEmailMessage("webmaster@cadmasters.com",adminemail,email_subject,strmsg)
		
		strmsg = ""
		email_subject = ""
		
'Response.write "Transaction Declined"

Response.Redirect("https://www.cadmasters.com/vmengine/secureportal/cadbooks/cc_fail.asp")

End if 

'------------------------------------------------------------------------------END TRANSACTION

end if

End Function


Function cmibookgen(id)
cmibookgenmode = cmibookgen_curbooktype
lastid = "0"

If cmibookgen_curbooktype = "unlimited_online" then
getusernamematch = "SELECT * FROM Users WHERE USR_USERNAME = '" &amp;amp; ssl_email &amp;amp;"' AND USR_MULTILOGIN = '1'"

Else
getusernamematch = "SELECT * FROM Users WHERE USR_USERNAME = '" &amp;amp; ssl_email &amp;amp;"' AND USR_MULTILOGIN = '0'"

End if

set rs = dbc03.execute(getusernamematch)

if rs.eof then 

else
rs.MoveFirst

     do While not rs.eof
	 userexists = 1
     USERID = rs("USR_ID")
	 newusrpass = rs("USR_PASSWORD")
	 usr_username = rs("usr_username")
	 multilogin = rs("USR_MULTILOGIN")
	 
	 rs.movenext 
     loop
	 rs.Close

	 
end if
'checker for existing email in the database
set rs = dbc03.execute("SELECT * FROM Users WHERE USR_USERNAME = '" &amp;amp; ssl_email &amp;amp;"'")

if rs.eof then 

else
rs.MoveFirst

     do While not rs.eof
	 userexists = 1
	 
     
	 rs.movenext 
     loop
	 rs.Close

	 
end if
'end checker for existing email in the database


If cmibookgen_curbooktype = "unlimited_online" then
getusername_email = "SELECT * FROM Users WHERE USR_EMAIL = '" &amp;amp; ssl_email &amp;amp;"' AND USR_MULTILOGIN = '1'"

Else
getusername_email = "SELECT * FROM Users WHERE USR_EMAIL = '" &amp;amp; ssl_email &amp;amp;"' AND USR_MULTILOGIN = '0'"

End if


set rs = dbc03.execute(getusername_email)

if rs.eof then 

else
rs.MoveFirst

     do While not rs.eof
	 userexists = 1
     USERID = rs("USR_ID")
	 newusrpass = rs("USR_PASSWORD")
	 usr_username = rs("usr_username")
	 multilogin = rs("USR_MULTILOGIN")
	 
	 rs.movenext 
     loop
	 rs.Close

	 
end if
'checker if any email is taken
set rs = dbc03.execute("SELECT * FROM Users WHERE USR_EMAIL = '" &amp;amp; ssl_email &amp;amp;"'")

if rs.eof then 

else
rs.MoveFirst

     do While not rs.eof
	 userexists = 1
	 
	 rs.movenext 
     loop
	 rs.Close

	 
end if
'end checker

		If userexists = 1 then
		If cmibookgen_curbooktype = "unlimited_online" then
		if multilogin = "1" then
		
		else
		newusrpass = "TPASS" &amp;amp; RandomNumber_Short()
cmibooks_multilogin = "1"
USERID = "USERID" &amp;amp; Month(now()) &amp;amp; Day(now()) &amp;amp; Right(Year(Date),2) &amp;amp; Hour(now()) &amp;amp; Minute(now()) &amp;amp; Second(now()) &amp;amp; RandomNumber()

unlimited_usr = ssl_email &amp;amp; RandomNumber_Short()

makerecord = "INSERT INTO Users (USR_ID,USR_USERNAME,USR_PASSWORD,USR_GROUP,USR_NAME,USR_ENABLED,USR_MULTILOGIN,USR_EMAIL,USR_DATE) VALUES ('" &amp;amp; USERID &amp;amp; "','" &amp;amp; unlimited_usr &amp;amp; "','" &amp;amp; newusrpass &amp;amp; "','USRGRP001','" &amp;amp; ssl_first_name &amp;amp; " " &amp;amp; ssl_last_name &amp;amp; "','1','" &amp;amp; cmibooks_multilogin &amp;amp; "','" &amp;amp; ssl_email &amp;amp; "',#" &amp;amp; date() &amp;amp; "#)"


dbc03.execute(makerecord)
newaccount_created = "1"

end if

else

if multilogin = "0" then
		
		else
		newusrpass = "TPASS" &amp;amp; RandomNumber_Short()
cmibooks_multilogin = "0"
USERID = "USERID" &amp;amp; Month(now()) &amp;amp; Day(now()) &amp;amp; Right(Year(Date),2) &amp;amp; Hour(now()) &amp;amp; Minute(now()) &amp;amp; Second(now()) &amp;amp; RandomNumber()

unlimited_usr = ssl_email &amp;amp; RandomNumber_Short()
newusrpass = "TPASS" &amp;amp; RandomNumber_Short()
makerecord = "INSERT INTO Users (USR_ID,USR_USERNAME,USR_PASSWORD,USR_GROUP,USR_NAME,USR_ENABLED,USR_MULTILOGIN,USR_EMAIL,USR_DATE) VALUES ('" &amp;amp; USERID &amp;amp; "','" &amp;amp; unlimited_usr &amp;amp; "','" &amp;amp; newusrpass &amp;amp; "','USRGRP001','" &amp;amp; ssl_first_name &amp;amp; " " &amp;amp; ssl_last_name &amp;amp; "','1','" &amp;amp; cmibooks_multilogin &amp;amp; "','" &amp;amp; ssl_email &amp;amp; "',#" &amp;amp; date() &amp;amp;"#)"


dbc03.execute(makerecord)

newaccount_created = "1"

end if


end if
		
		else
		USERID = "USERID" &amp;amp; Month(now()) &amp;amp; Day(now()) &amp;amp; Right(Year(Date),2) &amp;amp; Hour(now()) &amp;amp; Minute(now()) &amp;amp; Second(now()) &amp;amp; RandomNumber()

newusrpass = "TPASS" &amp;amp; RandomNumber_Short()
Response.write strConn02
If cmibookgen_curbooktype = "unlimited_online" then
cmibooks_multilogin = "1"

else
cmibooks_multilogin = "0"

end if
makerecord = "INSERT INTO Users (USR_ID,USR_USERNAME,USR_PASSWORD,USR_GROUP,USR_NAME,USR_ENABLED,USR_MULTILOGIN,USR_EMAIL,USR_DATE) VALUES ('" &amp;amp; USERID &amp;amp; "','" &amp;amp; ssl_email &amp;amp; "','" &amp;amp; newusrpass &amp;amp; "','USRGRP001','" &amp;amp; ssl_first_name &amp;amp; " " &amp;amp; ssl_last_name &amp;amp; "','1','" &amp;amp; cmibooks_multilogin &amp;amp; "','" &amp;amp; ssl_email &amp;amp; "',#" &amp;amp; date() &amp;amp; "#)"


dbc03.execute(makerecord)

End If
'lastid = 0
if books_pkgorsin = "pkg" then
'start of Adding Package Assets
test_string = "SELECT * FROM pkg_contents WHERE pkgc_pkgid = '" &amp;amp; id &amp;amp; "' order by pkgc_ordid ASC"
set rs40 = dbc03.execute("SELECT * FROM pkg_contents WHERE pkgc_pkgid = '" &amp;amp; id &amp;amp; "' order by pkgc_ordid ASC")

if rs40.eof then 

else
rs40.MoveFirst

     do While not rs40.eof


set rs = dbc03.execute("SELECT TOP 1 * FROM UserAssets WHERE USRAS_USRID = '" &amp;amp; USERID &amp;amp;"' ORDER BY USRAS_ORDID DESC")

if rs.eof then 

else
rs.MoveFirst

     do While not rs.eof
	 lastid = rs("USRAS_ORDID")
     
	 
	 rs.movenext 
     loop
	 rs.Close

	 
end if
lastid = lastid + 1 



set rs = dbc03.execute("SELECT * FROM PKG_TITLES WHERE PKG_ID = '" &amp;amp; id &amp;amp; "'")

if rs.eof then 

else
rs.MoveFirst

     do While not rs.eof
	 bk_pkg_name = rs("PKG_NAME")
     
	 
	 rs.movenext 
     loop
	 rs.Close

	 
end if


makerecord = "INSERT INTO UserAssets (USRAS_ID,USRAS_USRID,USRAS_BKID,USRAS_ORDID,USRAS_PKGID,USRAS_PKNAME,USRAS_DATE) VALUES ('USRAS" &amp;amp; Month(now()) &amp;amp; Day(now()) &amp;amp; Right(Year(Date),2) &amp;amp; Hour(now()) &amp;amp; Minute(now()) &amp;amp; Second(now()) &amp;amp; RandomNumber() &amp;amp; "','" &amp;amp; USERID &amp;amp; "','" &amp;amp; rs40("pkgc_bkid") &amp;amp; "','" &amp;amp; lastid &amp;amp; "','" &amp;amp; rs40("pkgc_pkgid") &amp;amp; "','" &amp;amp; bk_pkg_name &amp;amp; "',#" &amp;amp; date() &amp;amp;"#)"


dbc03.execute(makerecord)

     rs40.movenext 
     loop
	 rs40.Close

	 
end if

'end of Adding Package Assets
else
'Start of Adding Assets


set rs = dbc03.execute("SELECT TOP 1 * FROM UserAssets WHERE USRAS_USRID = '" &amp;amp; USERID &amp;amp;"' ORDER BY USRAS_ORDID DESC")

if rs.eof then 

else
rs.MoveFirst

     do While not rs.eof
	 lastid = rs("USRAS_ORDID")
     
	 
	 rs.movenext 
     loop
	 rs.Close

	 
end if
lastid = lastid + 1


USRAS = "USRAS" &amp;amp; Month(now()) &amp;amp; Day(now()) &amp;amp; Right(Year(Date),2) &amp;amp; Hour(now()) &amp;amp; Minute(now()) &amp;amp; Second(now()) &amp;amp; RandomNumber()

'check if asset for this use already exists, if exist do not add, if EOF add it
set rs = dbc03.execute("SELECT * FROM UserAssets WHERE USRAS_USRID = '" &amp;amp; USERID &amp;amp;"' AND USRAS_BKID = '" &amp;amp; id &amp;amp; "' ORDER BY USRAS_ORDID ASC")

if rs.eof then 

makerecord = "INSERT INTO UserAssets (USRAS_ID,USRAS_USRID,USRAS_BKID,USRAS_ORDID,USRAS_DATE) VALUES ('" &amp;amp; USRAS &amp;amp; "','" &amp;amp; USERID &amp;amp; "','" &amp;amp; id &amp;amp; "','" &amp;amp; lastid &amp;amp; "',#" &amp;amp; date() &amp;amp; "#)"


dbc03.execute(makerecord)

else
rs.MoveFirst

     do While not rs.eof
	 
     
	 
	 rs.movenext 
     loop
	 rs.Close

	 
end if

'End of Adding Single Assets

end if


If userexists = 1 then

If cmibookgen_curbooktype = "unlimited_online" then
email_subject = "Thank you for your purchase!"
strmsg = "Welcome to Online CAD Training! " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Your account awaits you. You can log into your account at http://online.cadmasters.com/ " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Please note that the charges for your purchase will appear under CAD Masters." &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Your Login Credentials are: " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Username: " 
if Cstr(newaccount_created) = "1" then 
strmsg = strmsg &amp;amp; unlimited_usr &amp;amp; vbcrlf &amp;amp; "Password: " &amp;amp; newusrpass

else
strmsg = strmsg &amp;amp; usr_username &amp;amp; vbcrlf &amp;amp; "Password: " &amp;amp; newusrpass

end if


else
email_subject = "Thank you for your purchase!"
strmsg = "Thank you for buying an additional training material." &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Please note that the charges for your purchase will appear under CAD Masters." &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; " The training material has been added to your account. You can log into your account at http://online.cadmasters.com/" &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Your Login Credentials are: " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Username: " 
if Cstr(newaccount_created) = "1" then 
strmsg = strmsg &amp;amp; unlimited_usr &amp;amp; vbcrlf &amp;amp; "Password: " &amp;amp; newusrpass

else
strmsg = strmsg &amp;amp; usr_username &amp;amp; vbcrlf &amp;amp; "Password: " &amp;amp; newusrpass

end if

end if



Else
if newaccount_created = "1" then
email_subject = "Thank you for your purchase!"
strmsg = "Welcome to Online CAD Training! " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Your account awaits you. You can log into your account at http://online.cadmasters.com/ " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Please note that the charges for your purchase will appear under CAD Masters." &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Your Login Credentials are: " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Username: " &amp;amp; unlimited_usr &amp;amp; vbcrlf &amp;amp; "Password: " &amp;amp; newusrpass

else
email_subject = "Welcome to Online CAD Training!"
strmsg = "Welcome to Online CAD Training! " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Your account awaits you. You can log into your account at http://online.cadmasters.com/ " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Please note that the charges for your purchase will appear under CAD Masters." &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Your Login Credentials are: " &amp;amp; vbcrlf &amp;amp; vbcrlf &amp;amp; "Username: "

if usr_username = "" then 
strmsg = strmsg &amp;amp; ssl_email &amp;amp; vbcrlf &amp;amp; "Password: " &amp;amp; newusrpass
else
strmsg = strmsg &amp;amp; usr_username &amp;amp; vbcrlf &amp;amp; "Password: " &amp;amp; newusrpass

end if


end if

End if

Call SendEmailMessage("webmaster@cadmasters.com",ssl_email,email_subject,strmsg)






'Response.write "test:" &amp;amp; cmibookgen_curbooktype
'if debugmode = 1 then
'Response.write test_string
'else
Response.Redirect("https://www.cadmasters.com/vmengine/secureportal/cadbooks/cc_ok.asp")
'end if 



End Function&lt;/PRE&gt;</description>
      <pubDate>Fri, 27 May 2016 18:01:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54745#M29705</guid>
      <dc:creator>acgreen33</dc:creator>
      <dc:date>2016-05-27T18:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Processing Transaction, but not Redirecting to Approved Page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54746#M29706</link>
      <description>&lt;P&gt;It this DPM or SIM? the relay response only wait 10 seconds, if your asp or VB took longer, it will timeout.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Relay-Response-Basics-and-Troubleshooting/ba-p/9536" target="_blank"&gt;https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Relay-Response-Basics-and-Troubleshooting/ba-p/9536&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2016 19:54:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54746#M29706</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2016-05-27T19:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Processing Transaction, but not Redirecting to Approved Page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54747#M29707</link>
      <description>&lt;P&gt;It throws a 500 Internal Server Error when you click place order, but redirects properly when card is declined&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2016 20:35:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54747#M29707</guid>
      <dc:creator>acgreen33</dc:creator>
      <dc:date>2016-05-27T20:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Processing Transaction, but not Redirecting to Approved Page</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54749#M29709</link>
      <description>&lt;P&gt;Doesn't sound like an issue with authorize.net&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You might be able to debug your code by posting data to your page. Read the SIM guide&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.authorize.net/content/dam/authorize/documents/SIM_guide.pdf" target="_blank"&gt;http://www.authorize.net/content/dam/authorize/documents/SIM_guide.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;starting on page 67 Fields in the Payment GatewayResponse&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2016 21:51:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Processing-Transaction-but-not-Redirecting-to-Approved-Page/m-p/54749#M29709</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2016-05-27T21:51:46Z</dc:date>
    </item>
  </channel>
</rss>

