<?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: Possible not to use the SDK? in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58399#M33054</link>
    <description>&lt;P&gt;Yes, not only is it possible to avoid using the SDK, in many cases it is desirable.&lt;BR /&gt;&lt;BR /&gt;For example, posting the following XML with the appropriate actual values, to the Sandbox URL: &lt;A href="https://apitest.authorize.net/xml/v1/request.api" target="_blank"&gt;https://apitest.authorize.net/xml/v1/request.api&lt;/A&gt; or&lt;BR /&gt;Production URL: &lt;A href="https://api.authorize.net/xml/v1/request.api" target="_blank"&gt;https://api.authorize.net/xml/v1/request.api&lt;/A&gt; as the case may be, should enable you to easily Void a transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&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;refId&amp;gt;123456&amp;lt;/refId&amp;gt;
  &amp;lt;transactionRequest&amp;gt;
    &amp;lt;transactionType&amp;gt;voidTransaction&amp;lt;/transactionType&amp;gt;
    &amp;lt;refTransId&amp;gt;22434566&amp;lt;/refTransId&amp;gt;
   &amp;lt;/transactionRequest&amp;gt;
&amp;lt;/createTransactionRequest&amp;gt;&lt;/PRE&gt;&lt;P&gt;Of course, the method you use to populate and post your XML payload will vary depending on your chosen language of implementation.&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jun 2017 22:30:11 GMT</pubDate>
    <dc:creator>NexusSoftware</dc:creator>
    <dc:date>2017-06-08T22:30:11Z</dc:date>
    <item>
      <title>Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58388#M33045</link>
      <description>&lt;P&gt;I have been working on migration over the last couple months since A.N eliminated the previous methods at the end of May 2017.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I never used the SDK because of the complexity.&amp;nbsp;&amp;nbsp; The number of lines in my previous code to process credit cards is less than the number of files in the SDK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All I need to do is AUTH_CAPTURE and VOID.&amp;nbsp; That's it.&amp;nbsp; I do not need all the other crap.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, all my solution testing returns null values from A.N so I have no possible way to diagnose errors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone been successful creating a simple A.N interface?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 00:49:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58388#M33045</guid>
      <dc:creator>mvpetrovich</dc:creator>
      <dc:date>2017-06-08T00:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58393#M33049</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21846"&gt;@mvpetrovich&lt;/a&gt;&amp;nbsp;The SDK exists so you can implement all Authorize.Net features into your solution, seamlessly. But if all you need is to make two API calls, you only need to make the calls directly.&lt;BR /&gt;&lt;BR /&gt;The calls you want are here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developer.authorize.net/api/reference/#payment-transactions-charge-a-credit-card" target="_blank"&gt;https://developer.authorize.net/api/reference/#payment-transactions-charge-a-credit-card&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developer.authorize.net/api/reference/#payment-transactions-void-a-transaction" target="_blank"&gt;https://developer.authorize.net/api/reference/#payment-transactions-void-a-transaction&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 16:54:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58393#M33049</guid>
      <dc:creator>Lilith</dc:creator>
      <dc:date>2017-06-08T16:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58399#M33054</link>
      <description>&lt;P&gt;Yes, not only is it possible to avoid using the SDK, in many cases it is desirable.&lt;BR /&gt;&lt;BR /&gt;For example, posting the following XML with the appropriate actual values, to the Sandbox URL: &lt;A href="https://apitest.authorize.net/xml/v1/request.api" target="_blank"&gt;https://apitest.authorize.net/xml/v1/request.api&lt;/A&gt; or&lt;BR /&gt;Production URL: &lt;A href="https://api.authorize.net/xml/v1/request.api" target="_blank"&gt;https://api.authorize.net/xml/v1/request.api&lt;/A&gt; as the case may be, should enable you to easily Void a transaction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&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;refId&amp;gt;123456&amp;lt;/refId&amp;gt;
  &amp;lt;transactionRequest&amp;gt;
    &amp;lt;transactionType&amp;gt;voidTransaction&amp;lt;/transactionType&amp;gt;
    &amp;lt;refTransId&amp;gt;22434566&amp;lt;/refTransId&amp;gt;
   &amp;lt;/transactionRequest&amp;gt;
&amp;lt;/createTransactionRequest&amp;gt;&lt;/PRE&gt;&lt;P&gt;Of course, the method you use to populate and post your XML payload will vary depending on your chosen language of implementation.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 22:30:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58399#M33054</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2017-06-08T22:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58405#M33060</link>
      <description>&lt;P&gt;I was getting a lot of misinformation.&amp;nbsp; I was told to use secure2.authorize.net/gateway/transact.dll and post using key-value pairs.&amp;nbsp; That gateway never returned a response, so I was left with trial and error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand that the SDK can do everything possible with AN, but I do not want to do everything.&amp;nbsp; The SDK is bloated.&amp;nbsp; In fact, the SDK, for a trival aspect of a website, uses more files than my entire framework.&amp;nbsp; Most credit card processing requires only a couple hundred lines of code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am going to use your advice and go down the path of using the request.api with XML.&amp;nbsp; Hopefully, I will have better luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 22:47:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58405#M33060</guid>
      <dc:creator>mvpetrovich</dc:creator>
      <dc:date>2017-06-09T22:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58410#M33065</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21846"&gt;@mvpetrovich&lt;/a&gt;&amp;nbsp;It sounds like people were directing you to use our legacy connection, which we wouldn't recommend in general. I apologize for the confusion there.&lt;BR /&gt;&lt;BR /&gt;I understand and agree that you don't need the SDK. I was merely explaining what the SDK was for.&lt;BR /&gt;&lt;BR /&gt;Let us know if you have any follow-on questions and we'll see what we can do for you.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 15:21:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58410#M33065</guid>
      <dc:creator>Lilith</dc:creator>
      <dc:date>2017-06-12T15:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58417#M33072</link>
      <description>&lt;P&gt;Well, I have continued to go down several dead ends.&amp;nbsp; I have never been able to get apitest.authorize.net/xml/v1/request.api to respond to anything I have done.&amp;nbsp; Trial and error programming is always frustrating.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone post PHP CURL code and a simple XML markup that can actually retrieve something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You would think simply taking the CURL from the SDK and sending a simple XML string would be an easy thing to do, but it did not work for me after hundreds of experiments.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 20:30:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58417#M33072</guid>
      <dc:creator>mvpetrovich</dc:creator>
      <dc:date>2017-06-12T20:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58418#M33073</link>
      <description>&lt;PRE&gt;&amp;lt;?php

$xmlContent = '&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;ARBCreateSubscriptionRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;
	&amp;lt;merchantAuthentication&amp;gt;
		&amp;lt;name&amp;gt;LOGIN_ID&amp;lt;/name&amp;gt;
		&amp;lt;transactionKey&amp;gt;TRANSACTION_KEY&amp;lt;/transactionKey&amp;gt;
	&amp;lt;/merchantAuthentication&amp;gt;
	&amp;lt;refId&amp;gt;Sample&amp;lt;/refId&amp;gt;
	&amp;lt;subscription&amp;gt;
		&amp;lt;name&amp;gt;New Sample subscription&amp;lt;/name&amp;gt;
		&amp;lt;paymentSchedule&amp;gt;
			&amp;lt;interval&amp;gt;
				&amp;lt;length&amp;gt;1&amp;lt;/length&amp;gt;
				&amp;lt;unit&amp;gt;months&amp;lt;/unit&amp;gt;
			&amp;lt;/interval&amp;gt;
			&amp;lt;startDate&amp;gt;2018-02-28&amp;lt;/startDate&amp;gt;
			&amp;lt;totalOccurrences&amp;gt;12&amp;lt;/totalOccurrences&amp;gt;
			&amp;lt;trialOccurrences&amp;gt;1&amp;lt;/trialOccurrences&amp;gt;
		&amp;lt;/paymentSchedule&amp;gt;
		&amp;lt;amount&amp;gt;100.29&amp;lt;/amount&amp;gt;
		&amp;lt;trialAmount&amp;gt;0.00&amp;lt;/trialAmount&amp;gt;
		&amp;lt;payment&amp;gt;
			&amp;lt;creditCard&amp;gt;
				&amp;lt;cardNumber&amp;gt;4111111111111111&amp;lt;/cardNumber&amp;gt;
				&amp;lt;expirationDate&amp;gt;2020-12&amp;lt;/expirationDate&amp;gt;
			&amp;lt;/creditCard&amp;gt;
		&amp;lt;/payment&amp;gt;
		&amp;lt;billTo&amp;gt;
			&amp;lt;firstName&amp;gt;Rick&amp;lt;/firstName&amp;gt;
			&amp;lt;lastName&amp;gt;Love&amp;lt;/lastName&amp;gt;
		&amp;lt;/billTo&amp;gt;
	&amp;lt;/subscription&amp;gt;
&amp;lt;/ARBCreateSubscriptionRequest&amp;gt;';

  $url = 'https://apitest.authorize.net/xml/v1/request.api';
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
  curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlContent);
  $result = curl_exec($ch);
  echo $result;
  curl_close($ch);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Just replace LOGIN_ID and TRANSACTION_KEY with your own sandbox credentials.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 20:35:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58418#M33073</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2017-06-12T20:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58423#M33078</link>
      <description>&lt;P&gt;This is exactly what I asked for, but the code provided is not functional.&amp;nbsp; I have spent another day at this, and this took me down another dead end.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see differences with my test destination from Authorize.Net.&amp;nbsp; I can send and retrieve information very easily from my test destination, but not from Authorize.Net.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My test destination will not allow the 'https://' prefix, and I never use that normally with CURL.&amp;nbsp; For some reason my test destination will also not allow the content type to be sent.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I keep trying and adding and removing lines, trying to send an SSL and not.&amp;nbsp; I cannot figure out the behaviour of Authorize.Net.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume the posted code was never tested.&amp;nbsp; If you ever find functional code please post it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:01:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58423#M33078</guid>
      <dc:creator>mvpetrovich</dc:creator>
      <dc:date>2017-06-13T01:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58424#M33079</link>
      <description>&lt;P&gt;That code was tested and does work. Use the following to find out what version of TLS your cURL is using.&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php 
$ch = curl_init('https://www.howsmyssl.com/a/check');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);

$json = json_decode($data);
echo $json-&amp;gt;tls_version ."\n";&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:57:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58424#M33079</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2017-06-13T01:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58438#M33091</link>
      <description>&lt;P&gt;Oh, Thanks!&amp;nbsp; My test site was using TLS 1.0, and I put the code on a site using TLS 1.2.&amp;nbsp; The code you supplied worked fine.&amp;nbsp; That should now move me forward.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 20:00:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58438#M33091</guid>
      <dc:creator>mvpetrovich</dc:creator>
      <dc:date>2017-06-13T20:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58450#M33102</link>
      <description>&lt;P&gt;Okay, good. glad to hear it. &amp;nbsp;You're welcome.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 09:50:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58450#M33102</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2017-06-14T09:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58455#M33107</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21846"&gt;@mvpetrovich&lt;/a&gt;&amp;nbsp;That's good to hear. Still, I'm sorry this proved tricky and frustrating for you. I've requested we look into adding TLS error logging to the SDKs, to better catch issues like what you ran into.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 15:21:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58455#M33107</guid>
      <dc:creator>Lilith</dc:creator>
      <dc:date>2017-06-14T15:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58520#M33152</link>
      <description>&lt;P&gt;I want to thank you for your help.&amp;nbsp; I migrated to a new server that supported TLS 1.2.&amp;nbsp; With the starting point you gave, I wrote a PHP class of about 300 lines, to send and process responses for charging and voiding credit cards.&amp;nbsp; That was all the features I needed, and the system was kept very simple.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 23:39:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/58520#M33152</guid>
      <dc:creator>mvpetrovich</dc:creator>
      <dc:date>2017-06-19T23:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62018#M36402</link>
      <description>&lt;P&gt;Hi Lilith, the links you provided require the SDK for ASP.Net.&amp;nbsp; Do you have a link for ASP.Net code that does not require the SDK?&amp;nbsp; I am working with a client that has been using Authorize.net for credit card charges for 8+ years with simple API calls and does not have the resources or capability to install a SDK kit to process credit cards.&amp;nbsp; Everything was working well until the TLS change a week ago.&amp;nbsp; Any help would be greatly appreciated.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2018 02:15:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62018#M36402</guid>
      <dc:creator>pzonis</dc:creator>
      <dc:date>2018-03-07T02:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62071#M36449</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/23631"&gt;@pzonis&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you looked at our sample code for C#&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/AuthorizeNet/sample-code-csharp/" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-csharp/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/AuthorizeNet/sample-code-csharp/blob/master/PaymentTransactions/ChargeCreditCard.cs" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-csharp/blob/master/PaymentTransactions/ChargeCreditCard.cs&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps !!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 04:51:08 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62071#M36449</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-03-12T04:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62072#M36450</link>
      <description>Just clicked on the link. It is a 404 error.</description>
      <pubDate>Sun, 11 Mar 2018 21:58:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62072#M36450</guid>
      <dc:creator>pzonis</dc:creator>
      <dc:date>2018-03-11T21:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62074#M36452</link>
      <description>&lt;P&gt;That code requires the SDK anyway.&amp;nbsp; It is very simple, you are just posting JSON or XML to the approriate endpoint and parsing the reponse. Which methods would your client's application be using,&amp;nbsp;createTransactionRequest or getHostedPaymentPageRequest?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Mar 2018 22:14:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62074#M36452</guid>
      <dc:creator>NexusSoftware</dc:creator>
      <dc:date>2018-03-11T22:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Possible not to use the SDK?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62077#M36455</link>
      <description>&lt;P&gt;updated the links .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 04:52:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Possible-not-to-use-the-SDK/m-p/62077#M36455</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-03-12T04:52:14Z</dc:date>
    </item>
  </channel>
</rss>

