<?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: CCV code not working with ARB service in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46295#M23416</link>
    <description>&lt;P&gt;It a sandbox account, any ccv code will work.&lt;/P&gt;&lt;P&gt;If you need to test the error, read the error generation guide&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/tools/errorgenerationguide/"&gt;http://developer.authorize.net/tools/errorgenerationguide/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Aug 2014 13:06:05 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2014-08-15T13:06:05Z</dc:date>
    <item>
      <title>CCV code not working with ARB service</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46291#M23414</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am JAVA deveploper.&lt;/P&gt;&lt;P&gt;I select ARB method for payment service of my app.&lt;/P&gt;&lt;P&gt;To start I created a sandbox account for demo.&lt;/P&gt;&lt;P&gt;My example code work is good , except check CCV code function.&lt;/P&gt;&lt;P&gt;Transactions always execute without CVV code or CCV code is incorrect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also enable CCV handling filter by&amp;nbsp;guideline at:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.developer.cybersource.com/"&gt;https://sandbox.authorize.net/help/Merchant_Interface_RoboHelp_Project.htm#Tools/Fraud_Detection_Suite/Transaction_Filters/Card_Code_Verification_Filter.htm&amp;gt;&amp;gt;pan=2&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;PRE&gt; Merchant merchant = Merchant.createMerchant(Environment.SANDBOX, apiLoginID, transactionKey);

        PaymentSchedule new_schedule = PaymentSchedule.createPaymentSchedule();
        new_schedule.setIntervalLength(1);
        new_schedule.setSubscriptionUnit(SubscriptionUnitType.MONTHS);
        new_schedule.setStartDate(new Date());
        new_schedule.setTotalOccurrences(9999);
        new_schedule.setTrialOccurrences(0);

// Create a new credit card
//
        CreditCard credit_card = CreditCard.createCreditCard();
        credit_card.setCreditCardNumber("4111 1111 1111 1111");
        credit_card.setExpirationDate("2016-13");
        credit_card.setCardCode("aaa");

// Create a billing info
//
        Address billing_info = Address.createAddress();
        billing_info.setFirstName("Customer7 " + System.currentTimeMillis());
        billing_info.setLastName("Customer7");

// Create a customer and specify billing info
//
        Customer customer = Customer.createCustomer();
        customer.setBillTo(billing_info);

// Create a subscription and specify payment, schedule and customer
//
        Subscription subscription = Subscription.createSubscription();
        subscription.setPayment(Payment.createPayment(credit_card));
        subscription.setSchedule(new_schedule);
        subscription.setCustomer(customer);
        subscription.setAmount(new BigDecimal(6.00));
        subscription.setTrialAmount(Transaction.ZERO_AMOUNT);
        subscription.setRefId("REF:" + System.currentTimeMillis());
        subscription.setName("Customer7 " + System.currentTimeMillis());

        net.authorize.arb.Transaction transaction =
                merchant.createARBTransaction(TransactionType.CREATE_SUBSCRIPTION,
                        subscription);
        Result&amp;lt;Transaction&amp;gt; result = (Result&amp;lt;Transaction&amp;gt;)merchant.postTransaction(transaction);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;What does I miss something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2014 04:49:30 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46291#M23414</guid>
      <dc:creator>atula_a1</dc:creator>
      <dc:date>2014-08-15T04:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: CCV code not working with ARB service</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46295#M23416</link>
      <description>&lt;P&gt;It a sandbox account, any ccv code will work.&lt;/P&gt;&lt;P&gt;If you need to test the error, read the error generation guide&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://developer.authorize.net/tools/errorgenerationguide/"&gt;http://developer.authorize.net/tools/errorgenerationguide/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2014 13:06:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46295#M23416</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-08-15T13:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: CCV code not working with ARB service</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46369#M23452</link>
      <description>&lt;P&gt;Hi Raynor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank for reply.&lt;/P&gt;&lt;P&gt;I also read about guide "error generation".&amp;nbsp;&lt;/P&gt;&lt;P&gt;But how to post transation to new url &amp;nbsp;like "&lt;SPAN&gt;&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;&lt;/SPAN&gt;"?&lt;/P&gt;&lt;P&gt;I checked with statement:&lt;/P&gt;&lt;PRE&gt;Merchant merchant = Merchant.createMerchant(Environment.SANDBOX, apiLoginID,
                transactionKey);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;baseUrl of&amp;nbsp;Environment.SANDBOX is "&lt;A target="_blank" href="https://test.authorize.net&amp;quot;"&gt;https://test.authorize.net"&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I try create new Environment with new baseURL.&lt;/P&gt;&lt;P&gt;But It cannot because&amp;nbsp;constructor of Environment is private.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2014 02:37:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46369#M23452</guid>
      <dc:creator>atula_a1</dc:creator>
      <dc:date>2014-08-18T02:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: CCV code not working with ARB service</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46377#M23456</link>
      <description>&lt;P&gt;If you need to modify the source, you can download it on&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://github.com/AuthorizeNet/sdk-java"&gt;https://github.com/AuthorizeNet/sdk-java&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Oop, you are trying to do ARB, ARB does not valid the credit card when you create the subscription, because it doesn't not generate a transaction.&lt;/P&gt;&lt;P&gt;If you need to valid the card before creating an ARB, do a AIM auth_only transaction first.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2014 11:26:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/CCV-code-not-working-with-ARB-service/m-p/46377#M23456</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-08-18T11:26:10Z</dc:date>
    </item>
  </channel>
</rss>

