<?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: ColdFusion Accept.js in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/60817#M35328</link>
    <description>&lt;P&gt;Thanks &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21382"&gt;@Anurag&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also found this example which more closely matches what I am doing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/AuthorizeNet/accept-sample-app/blob/master/transactionCaller.php" target="_blank"&gt;https://github.com/AuthorizeNet/accept-sample-app/blob/master/transactionCaller.php&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for confirming,&lt;/P&gt;</description>
    <pubDate>Mon, 11 Dec 2017 20:33:20 GMT</pubDate>
    <dc:creator>Shapeous</dc:creator>
    <dc:date>2017-12-11T20:33:20Z</dc:date>
    <item>
      <title>ColdFusion Accept.js</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/60798#M35309</link>
      <description>&lt;P&gt;Hello Authorize.NET,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After your reponse to &lt;A title="ColdFusion-SAQ-A-Compliance" href="https://community.developer.authorize.net/t5/Integration-and-Testing/ColdFusion-SAQ-A-Compliance/m-p/60741" target="_self"&gt;this question&lt;/A&gt;, I started to work on a proof of concept using Accept.js.&amp;nbsp; Using the Payment Nonce to construct a XML HTTP request from my server to Authorize, I am getting a response message of "I00001" (Successful).&amp;nbsp; However, I would like to confirm before I implement our actual solution.&amp;nbsp; I am using ColdFusion (CFML), and since your documentation happy path does not offer a ColdFusion solution, I used HTTP.&amp;nbsp; Is it OK to make HTTP request to the following URLs?&amp;nbsp; If not let me know how am I supposed to do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://apitest.authorize.net/xml/v1/request.api" target="_self"&gt;https://apitest.authorize.net/xml/v1/request.api&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://api.authorize.net/xml/v1/request.api" target="_self"&gt;https://api.authorize.net/xml/v1/request.api&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Here my server code (proof of concept):&lt;/P&gt;&lt;PRE&gt;&amp;lt;cfset variables.authorizeHttpResponse  = StructNew()&amp;gt;
&amp;lt;cfset variables.oneTimePaymentResponse = XMLNew()&amp;gt;
&amp;lt;cfxml variable="oneTimePaymentRequest"&amp;gt;&amp;lt;cfoutput&amp;gt;&amp;lt;createTransactionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
  &amp;lt;merchantAuthentication&amp;gt;
    &amp;lt;name&amp;gt;API_LOGIN_ID&amp;lt;/name&amp;gt;
    &amp;lt;transactionKey&amp;gt;API_TRANSACTION_KEY&amp;lt;/transactionKey&amp;gt;
  &amp;lt;/merchantAuthentication&amp;gt;
  &amp;lt;transactionRequest&amp;gt;
    &amp;lt;transactionType&amp;gt;authCaptureTransaction&amp;lt;/transactionType&amp;gt;
    &amp;lt;amount&amp;gt;15.00&amp;lt;/amount&amp;gt;
    &amp;lt;payment&amp;gt;
      &amp;lt;opaqueData&amp;gt;
        &amp;lt;dataDescriptor&amp;gt;#FORM.dataDescriptor#&amp;lt;/dataDescriptor&amp;gt;
        &amp;lt;dataValue&amp;gt;#FORM.dataValue#&amp;lt;/dataValue&amp;gt;
      &amp;lt;/opaqueData&amp;gt;
    &amp;lt;/payment&amp;gt;
  &amp;lt;/transactionRequest&amp;gt;
&amp;lt;/createTransactionRequest&amp;gt;&amp;lt;/cfoutput&amp;gt;&amp;lt;/cfxml&amp;gt;

&amp;lt;cftry&amp;gt;
  &amp;lt;cfhttp url="https://apitest.authorize.net/xml/v1/request.api" method="post" result="authorizeHttpResponse" timeout="60"&amp;gt;
    &amp;lt;cfhttpparam type="header" value="text/xml" name="Content-Type"&amp;gt;
    &amp;lt;cfhttpparam type="body"   value="#oneTimePaymentRequest#"&amp;gt;
  &amp;lt;/cfhttp&amp;gt;
  
  &amp;lt;cfif structKeyExists(authorizeHttpResponse, "Filecontent")&amp;gt;
    &amp;lt;cfset oneTimePaymentResponse = #xmlParse(authorizeHttpResponse.Filecontent)#&amp;gt;
  &amp;lt;/cfif&amp;gt;
  &amp;lt;cfdump var="#authorizeHttpResponse#"  label="authorizeHttpResponse"&amp;gt;
  &amp;lt;cfdump var="#oneTimePaymentResponse#" label="oneTimePaymentResponse"&amp;gt;
  
  &amp;lt;cfcatch type="any"&amp;gt;
    &amp;lt;cfdump var="#cfcatch#"&amp;gt;
  &amp;lt;/cfcatch&amp;gt;
&amp;lt;/cftry&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Dec 2017 18:07:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/60798#M35309</guid>
      <dc:creator>Shapeous</dc:creator>
      <dc:date>2017-12-08T18:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: ColdFusion Accept.js</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/60805#M35316</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22830"&gt;@Shapeous&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes you can make API calls to the below URLs .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use our API reference for testing the APIs&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://developer.authorize.net/api/reference/index.html" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also check our SDK/Sample code at&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet&amp;nbsp;" target="_blank"&gt;https://github.com/AuthorizeNet&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Dec 2017 07:13:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/60805#M35316</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2017-12-10T07:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: ColdFusion Accept.js</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/60817#M35328</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21382"&gt;@Anurag&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also found this example which more closely matches what I am doing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/AuthorizeNet/accept-sample-app/blob/master/transactionCaller.php" target="_blank"&gt;https://github.com/AuthorizeNet/accept-sample-app/blob/master/transactionCaller.php&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for confirming,&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2017 20:33:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/60817#M35328</guid>
      <dc:creator>Shapeous</dc:creator>
      <dc:date>2017-12-11T20:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: ColdFusion Accept.js</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/61532#M35964</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am doing an emergency CFM (Coldfusion conversion) to accept.js hosted form- is this possible? or should I follow the below sort of example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Madeleine&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2018 03:14:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/61532#M35964</guid>
      <dc:creator>Madeleine</dc:creator>
      <dc:date>2018-02-07T03:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: ColdFusion Accept.js</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/61757#M36164</link>
      <description>&lt;P&gt;That's what we did here at AlbanyMed, so yes it is possible.&amp;nbsp; Using the Accept.js implementation together with the sample code above, you should be able to put together a prrof of concept.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best of luck,&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sun, 18 Feb 2018 01:32:13 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/ColdFusion-Accept-js/m-p/61757#M36164</guid>
      <dc:creator>Shapeous</dc:creator>
      <dc:date>2018-02-18T01:32:13Z</dc:date>
    </item>
  </channel>
</rss>

