<?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: Sandbox C# .NET Card Not Present Transactions in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49752#M25288</link>
    <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="pl-st"&gt;string&lt;/SPAN&gt; authCode = SendAuthOnly(amount + &lt;SPAN class="pl-c1"&gt;1&lt;/SPAN&gt;, &lt;SPAN class="pl-c1"&gt;false&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;they doing a test, you will need to pass in your own amount.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you are doing auth_capture before, use the one that do auth_capture.&lt;/P&gt;</description>
    <pubDate>Mon, 23 Feb 2015 16:58:30 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2015-02-23T16:58:30Z</dc:date>
    <item>
      <title>Sandbox C# .NET Card Not Present Transactions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49746#M25284</link>
      <description>&lt;P&gt;I am using C# .net and setting up an application that processes credit cards over the internet.&amp;nbsp;I would like to switch from Card Present, to Card Not Present (or just standard Gateway as I understand it). This is what authorize.net support recommended in this situation. However I do not understand&amp;nbsp;how to complete a&amp;nbsp;transaction via the standard gateway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with the Card Present gateway I use:&lt;/P&gt;&lt;P&gt;CardPresentAuthorizeAndCaptureRequest&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I don't see any functions for CardNotPresentAuthorizeAndCaptureRequest.&lt;/P&gt;&lt;P&gt;There is a Capture Request but this asks for an Auth Code which I don't have from user input.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I have to first seperately authorize and then capture?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could somebody help me convert my Card Present Code to standard Gateway request code for a card not present standard gateway request?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;CardPresentGateway target = new CardPresentGateway( _apiLogin, _transactionKey, true );

IGatewayRequest request = new CardPresentAuthorizeAndCaptureRequest( amount, cardNumber, cardMonth.ToString(), cardYear.ToString() );

IGatewayResponse actual = target.Send( request );
return new PaymentResponse( actual.ResponseCode, actual.Message );&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 03:58:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49746#M25284</guid>
      <dc:creator>bobbydoogle</dc:creator>
      <dc:date>2015-02-23T03:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Sandbox C# .NET Card Not Present Transactions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49748#M25285</link>
      <description>&lt;P&gt;They include a gatewaytest in the SDKs&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-dotnet/blob/master/AuthorizeNETtest/GatewayTest.cs"&gt;https://github.com/AuthorizeNet/sdk-dotnet/blob/master/AuthorizeNETtest/GatewayTest.cs&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 12:38:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49748#M25285</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-02-23T12:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sandbox C# .NET Card Not Present Transactions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49751#M25287</link>
      <description>&lt;P&gt;This is helpful, so can I just run a&amp;nbsp;&lt;SPAN&gt;CaptureRequest to accomplish this? I'm a bit confused by the auth code, in the&amp;nbsp;&lt;SPAN class="pl-en"&gt;SendTest_Capture_Approved&lt;/SPAN&gt;&lt;SPAN&gt;() example they set it to&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN class="pl-st"&gt;string&lt;/SPAN&gt;&lt;SPAN&gt; authCode = SendAuthOnly(amount + &lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;false&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;I don't understand the logic here, is the amount + 1 becoase the auth code can be any valid value for a capture request? Do I have to run a&amp;nbsp;seperate&amp;nbsp;authorization prior to a capture? I would prefer to do all in one step.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 16:15:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49751#M25287</guid>
      <dc:creator>bobbydoogle</dc:creator>
      <dc:date>2015-02-23T16:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sandbox C# .NET Card Not Present Transactions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49752#M25288</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="pl-st"&gt;string&lt;/SPAN&gt; authCode = SendAuthOnly(amount + &lt;SPAN class="pl-c1"&gt;1&lt;/SPAN&gt;, &lt;SPAN class="pl-c1"&gt;false&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;they doing a test, you will need to pass in your own amount.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you are doing auth_capture before, use the one that do auth_capture.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 16:58:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49752#M25288</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2015-02-23T16:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sandbox C# .NET Card Not Present Transactions</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49760#M25296</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Our tests increment each test transaction by a dollar just as a simple way to avoid the duplicate transaction filter without sending any additional parameters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Joy&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2015 23:31:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Sandbox-C-NET-Card-Not-Present-Transactions/m-p/49760#M25296</guid>
      <dc:creator>Joy</dc:creator>
      <dc:date>2015-02-23T23:31:17Z</dc:date>
    </item>
  </channel>
</rss>

