<?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: SIM questions in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15048#M8616</link>
    <description>&lt;P&gt;&lt;A href="http://developer.authorize.net/guides/SIM/" target="_blank"&gt;http://developer.authorize.net/guides/SIM/&lt;/A&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Section Six : Fields in the Payment Gateway Response﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you'll be happy with the amount of data that is available there.&amp;nbsp;&amp;nbsp;&amp;nbsp; It all gets passed back to you and you can just pick and choose what you need from it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lets say you tell AuthNet that you want the x_relay_url to be http: // &lt;A href="http://www.whatever.com/myreturnpage.php" target="_blank"&gt;www.whatever.com/myreturnpage.php&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When the transaction concludes at AuthNet's end,&amp;nbsp; they will return the customer to that page - along with all of the fields and values that are listed in the section of the document I listed above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;They are going to POST that information to your page through a form - so the actual variables and values wont show up in the URL bar of the customers browser.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can then treat that posted data the same way you would treat any form that you may have created that passes information between pages on your own site.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you need the transaction ID of the purchase,&amp;nbsp; that would be x_trans_id﻿.&lt;/P&gt;&lt;P&gt;In php I'm pretty sure you'd get the value of that by using $_POST["x_trans_id"]﻿&lt;/P&gt;&lt;P&gt;In ColdFusion we simply use #x_trans_id#&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll probably want to start out by finding the value of the actual x_response_code﻿ that gets passed to the page you set up using the x_relay_url. &amp;nbsp; If it's a '1' then the transaction is a success and you can go on from there with whatever you need your site to do with the order. &amp;nbsp; If it isn't a '1' then the transaction either failed, or is 'on hold' for some reason, and you'll have to have your site respond to that accordingly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have Fun :)&lt;/P&gt;&lt;P&gt;WHeis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Jul 2011 15:53:41 GMT</pubDate>
    <dc:creator>WHeisenberg</dc:creator>
    <dc:date>2011-07-19T15:53:41Z</dc:date>
    <item>
      <title>SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15000#M8593</link>
      <description>&lt;P&gt;Can you set a different type of transaction using SIM? i.e. "auth_only"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you get a response somehow using SIM? i.e. amount of transaction, customer name, transaction id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2011 21:31:03 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15000#M8593</guid>
      <dc:creator>dadamssg</dc:creator>
      <dc:date>2011-07-18T21:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15002#M8594</link>
      <description>&lt;P&gt;SIM allows for you to send AUTH_ONLY or AUTH_CAPTURE transactions (get validation only, or get validation and charge the card)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can see this information on the SIM Implementation guide at &lt;A href="http://developer.authorize.net/guides/SIM/" target="_blank"&gt;http://developer.authorize.net/guides/SIM/&lt;/A&gt;﻿ under the "Requesting the Secure Hosted Payment Form﻿" topic in Section 3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As far as returned values,&amp;nbsp; there are a bunch of them.&amp;nbsp; You can see those under the "Fields in the Payment Gateway Response﻿" topic in Section 6 of the same page/document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Returned values include response codes, transaction ID's, invoice numbers, payment amounts and a bunch of other stuff.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just remember that no matter which API you use (SIM, AIM, CIM, etc..)&amp;nbsp; none of those will ever return the full credit card number or expiration date.&amp;nbsp; (Just threw that in there because it very often comes up as a question later on).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Enjoy :)&lt;/P&gt;&lt;P&gt;WHeis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 01:25:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15002#M8594</guid>
      <dc:creator>WHeisenberg</dc:creator>
      <dc:date>2011-07-19T01:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15006#M8596</link>
      <description>&lt;P&gt;WHeisenberg you are really helping me out! : ) &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm wondering if the response ("relay") information makes me need to be PCI compliant? Ideally, i'd like to store some of that info into a database to track numbers and display receipts. I don't want to do it if that requires me to be PCI compliant though.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know if storing the transaction id, customer name, and amount is PCI compliant sensitive.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 02:13:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15006#M8596</guid>
      <dc:creator>dadamssg</dc:creator>
      <dc:date>2011-07-19T02:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15012#M8599</link>
      <description>&lt;P&gt;I don't think that information has anything that the PCI cops would even raise an eyebrow at.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What they DONT want you to do is pass/store full credit card numbers (which AuthNet wont send back to you anyway) or card expiration dates in combination with a full credit card number (again, which AuthNet wont send back anyway) without the appropriate security in place.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You have to have a transaction ID.. that's obvious.&amp;nbsp; Customer name.. yep.. Date, amount, what they bought.. all of that can be stored locally without worrying about PCI issues so long as you dont store their credit card number in your database or pass the full credit card number TO authorizenet through a form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you don't store full credit card numbers on your database AT ALL,&amp;nbsp; even if some hacker managed to scam your data off your site, there would be nothing there that would be useful to them.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your customer is using a form on the AuthorizeNet site to input their information,&amp;nbsp; and not on your site,&amp;nbsp; then the actual 'full credit card number' is never going to pass between your site and Authnet because the customer is already AT the authnet site when they input that card number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;PCI is mostly interested in whether your site/database is secure if you actually store credit card numbers on your server,&amp;nbsp; and that your site itself is capable of sending data securely (SSL) if you pass the actual credit card number from your site to your processor (AuthNet).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you don't do either of those things,&amp;nbsp; PCI isn't interested in you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;:)&lt;/P&gt;&lt;P&gt;WHeis&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 03:14:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15012#M8599</guid>
      <dc:creator>WHeisenberg</dc:creator>
      <dc:date>2011-07-19T03:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15016#M8601</link>
      <description>&lt;P&gt;WHeisenberg...i...i love you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;haha, seriously though, thanks so much for all the information. HUGE help and EXTREMELY inspiring now that i know the tricks to avoid having to become PCI compliant.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THANKS A TON :)&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 03:51:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15016#M8601</guid>
      <dc:creator>dadamssg</dc:creator>
      <dc:date>2011-07-19T03:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15036#M8611</link>
      <description>&lt;P&gt;so i posted this same question &lt;A href="http://stackoverflow.com/questions/6739802/authorize-net-sim-pci-compliance" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;before we talked. As you can see, John Conde, a well known authorize.net developer, is saying that i need to be PCI compliant to use the freaking relay response now. How in the world do you code something to do a certain thing based on the success of the transaction if you can't see the response!?!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*frustrated*&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 14:54:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15036#M8611</guid>
      <dc:creator>dadamssg</dc:creator>
      <dc:date>2011-07-19T14:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15042#M8614</link>
      <description>&lt;P&gt;Hehe.. he scared you :P&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In his reply it says, "If you handle or store any data covered by PCI DSS standard﻿.."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are trying to get the customer name,&amp;nbsp; a transaction ID,&amp;nbsp; maybe an invoice/order number, and how much the customer paid.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Those are 'safe' to pass through the relay response URL string.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So long as you dont pass or store the actual FULL credit card number you're going to be fine.&amp;nbsp;&amp;nbsp; Since you are using the form on AuthNet for your customers to enter that card number,&amp;nbsp; they are not on your site doing it, so you are not transmitting the card number anywhere.&amp;nbsp;&amp;nbsp; Since AuthNet doesn't pass back the full credit card number anyway,&amp;nbsp; there is no possible way (if you are using the AuthNet-server payment form) that you can even get the full card number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When it comes to transactions,&amp;nbsp; there are just a couple things to understand about what would require the strict PCI Compliance stuff:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; If you store the full credit card number (4111-1234-2344-3838) in any way, shape or form within your own site - you must be PCI Compliant&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; If you transmit a full credit card number,&amp;nbsp; either through a form on your site (to be passed to AuthNet for processing) - or if the full credit card is passed back to your own site from an outside source (which AuthNet wont do anyway), you must be PCI Compliant.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're not storing the full credit card number AND a full credit card number is never passed to/from any page on your site - you are pretty much safe from the PCI monster.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are running debates on whether or not the expiration date of a card counts as something requiring PCI compliance as well.&amp;nbsp;&amp;nbsp; According to the PCI standards,&amp;nbsp; a merchant can store and pass an expiration date for a credit card so long as they are not also storing/passing the full credit card number as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AuthNet seems to disagree on that issue.&amp;nbsp;&amp;nbsp; They say that their understanding of the standard is that an expiration date is just as much 'secure' information by itself as a full credit card number - even if it is not being stored/passed with a full credit card number.. which is an incorrect assumption..&amp;nbsp; but since they seem to be solidified in their resolve on that issue,&amp;nbsp; I doubt we'll be seeing anything but 'XXXX' being passed back through any of the API's for quite awhile /grin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But that's a separate issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From what you've said previously,&amp;nbsp; you are setting up your e-commerce so that your site never requests, uses, passes, gets or stores a full credit card number from a customer.&amp;nbsp;&amp;nbsp;&amp;nbsp; It is all going to be done on AuthNet's system.&amp;nbsp;&amp;nbsp; So you're good to go :)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WHeis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 15:24:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15042#M8614</guid>
      <dc:creator>WHeisenberg</dc:creator>
      <dc:date>2011-07-19T15:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15044#M8615</link>
      <description>&lt;P&gt;thanks wheisenburg! &amp;nbsp;$10K+ fines scare the crap out of me so i'm trying to be absolutely sure i'm safe from them.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You said the customer name, transaction id, and invoice number are safe to pass through the relay response url...you make it sound like you can choose which information gets POSTed to the url. Is that true? I assumed it was an all or nothing type deal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been looking over the api documentation and i can't find anything about that or even what items even get POSTed to a specified url.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 15:37:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15044#M8615</guid>
      <dc:creator>dadamssg</dc:creator>
      <dc:date>2011-07-19T15:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15048#M8616</link>
      <description>&lt;P&gt;&lt;A href="http://developer.authorize.net/guides/SIM/" target="_blank"&gt;http://developer.authorize.net/guides/SIM/&lt;/A&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Section Six : Fields in the Payment Gateway Response﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you'll be happy with the amount of data that is available there.&amp;nbsp;&amp;nbsp;&amp;nbsp; It all gets passed back to you and you can just pick and choose what you need from it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lets say you tell AuthNet that you want the x_relay_url to be http: // &lt;A href="http://www.whatever.com/myreturnpage.php" target="_blank"&gt;www.whatever.com/myreturnpage.php&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When the transaction concludes at AuthNet's end,&amp;nbsp; they will return the customer to that page - along with all of the fields and values that are listed in the section of the document I listed above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;They are going to POST that information to your page through a form - so the actual variables and values wont show up in the URL bar of the customers browser.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can then treat that posted data the same way you would treat any form that you may have created that passes information between pages on your own site.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you need the transaction ID of the purchase,&amp;nbsp; that would be x_trans_id﻿.&lt;/P&gt;&lt;P&gt;In php I'm pretty sure you'd get the value of that by using $_POST["x_trans_id"]﻿&lt;/P&gt;&lt;P&gt;In ColdFusion we simply use #x_trans_id#&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll probably want to start out by finding the value of the actual x_response_code﻿ that gets passed to the page you set up using the x_relay_url. &amp;nbsp; If it's a '1' then the transaction is a success and you can go on from there with whatever you need your site to do with the order. &amp;nbsp; If it isn't a '1' then the transaction either failed, or is 'on hold' for some reason, and you'll have to have your site respond to that accordingly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have Fun :)&lt;/P&gt;&lt;P&gt;WHeis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 15:53:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15048#M8616</guid>
      <dc:creator>WHeisenberg</dc:creator>
      <dc:date>2011-07-19T15:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15054#M8619</link>
      <description>&lt;P&gt;i can't seem to get the relay url to work. It won't return me back to my site.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in the Response/Receipt URLs section in my settings i have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://mysite.com/auth/index.php" target="_blank"&gt;http://mysite.com/auth/index.php&lt;/A&gt;﻿ --&amp;nbsp;Default Receipt URL﻿&lt;/P&gt;&lt;P&gt;&lt;A href="http://mysite.com/auth/index.php" target="_blank"&gt;http://mysite.com/auth/index.php&lt;/A&gt;﻿ --﻿&amp;nbsp;Default Relay Response URL﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then for my Relay Response part in my settings i have&lt;/P&gt;&lt;P&gt;&lt;A href="http://mysite.com/auth/index.php" target="_blank"&gt;http://mysite.com/auth/index.php&lt;/A&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then in my actual form i have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;input type='hidden' name="x_relay_response" value="TRUE"/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;input type='hidden' name="x_relay_url" value="&lt;A href="http://mysite.com/auth/index.php" target="_blank"&gt;http://mysite.com/auth/index.php&lt;/A&gt;"/&amp;gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code that i have at&amp;nbsp;&lt;A href="http://mysite.com/auth/index.php" target="_blank"&gt;http://mysite.com/auth/index.php&lt;/A&gt;﻿ appears in the browser, but the browser is still at &lt;A href="https://test.authorize.net/gateway/transact.dll" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;﻿. No redirection occurs. Have any idea?&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;&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>Tue, 19 Jul 2011 16:16:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15054#M8619</guid>
      <dc:creator>dadamssg</dc:creator>
      <dc:date>2011-07-19T16:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15056#M8620</link>
      <description>&lt;P&gt;Strange..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my own code I dont use the same page the form is on as the x_relay_url.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You might try changing the x_relay_url to a different page (???)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe, since AuthNet is basically firing up "&lt;A href="http://mysite.com/auth/index.php" rel="nofollow" target="_blank"&gt;http://mysite.com/auth/index.php&lt;/A&gt;﻿﻿" to get to the form, it is confused and says "Oh, I'm already here anyway".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure, but that's the first thing I'd change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;WHeis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 16:23:39 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15056#M8620</guid>
      <dc:creator>WHeisenberg</dc:creator>
      <dc:date>2011-07-19T16:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: SIM questions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15058#M8621</link>
      <description>&lt;P&gt;Tried changing x_relay_url to a different page and it threw an error. Then i removed the hidden x_relay_url input from the form to see what happenned and it still worked like it was(displayed my page but with the auth url).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess it doesn't really matter as long as i use absolute url links in my response/relay page and i can still use my server to handle the POSTs...&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2011 16:38:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-questions/m-p/15058#M8621</guid>
      <dc:creator>dadamssg</dc:creator>
      <dc:date>2011-07-19T16:38:16Z</dc:date>
    </item>
  </channel>
</rss>

