<?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: Update Billing Address using CIM Java SDK in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/40290#M21905</link>
    <description>&lt;P&gt;Very nice.&lt;/P&gt;&lt;P&gt;We abandoned your service by now, but at least others will this fixed, assuming that it is fixed now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I find it very sad that I provided a patch for this issue 3 years ago, and it was only addressed now. Very very very sad.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Meh, may this be a lesson for those who stayed with you :P&lt;/P&gt;</description>
    <pubDate>Fri, 04 Apr 2014 19:36:00 GMT</pubDate>
    <dc:creator>eran</dc:creator>
    <dc:date>2014-04-04T19:36:00Z</dc:date>
    <item>
      <title>Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17574#M9810</link>
      <description>&lt;P&gt;I have a business requirement to allow users to update their billing address only, not having to reenter the credit card details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have similar functionality that updates the credit card only, leaving the old billing address, and it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I execute the code below I get an error:&lt;FONT face="arial,helvetica,sans-serif" color="#FF0000"&gt; E00027 - (TESTMODE) The credit card has expired.﻿&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's my code:&lt;/P&gt;&lt;PRE&gt;    // fetch current payment profile
    Transaction transaction = merchant.createCIMTransaction(TransactionType.GET_CUSTOMER_PAYMENT_PROFILE);

    transaction.setCustomerProfileId(customerProfileId);
    transaction.setCustomerPaymentProfileId(paymentProfileId);

    Result&amp;lt;Transaction&amp;gt; result = (Result&amp;lt;Transaction&amp;gt;) merchant.postTransaction(transaction);
    final net.authorize.data.cim.PaymentProfile currPaymentProfile = result.getCustomerPaymentProfile();

    currPaymentProfile.setBillTo(newBillingAddress);

    // save billing address updates
    transaction = merchant.createCIMTransaction(TransactionType.UPDATE_CUSTOMER_PAYMENT_PROFILE);
    transaction.setCustomerProfileId(customerProfileId);
    transaction.addPaymentProfile(currPaymentProfile);
    transaction.setValidationMode(ValidationModeType.TEST_MODE);

    result = (Result&amp;lt;Transaction&amp;gt;) merchant.postTransaction(transaction);
    result.printMessages();&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Is this a bug, or am I doing something wrong here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I couldn't find a real documentation for the SDK, but according to the XML and SOAP docs, fetching the existing payment profile, and filling in the updates should be OK, even though the CC details are masked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it helps, I use the following SDK version:&lt;/P&gt;&lt;PRE&gt;    &amp;lt;dependency&amp;gt;
      &amp;lt;groupId&amp;gt;net.authorize&amp;lt;/groupId&amp;gt;
      &amp;lt;artifactId&amp;gt;anet-java-sdk&amp;lt;/artifactId&amp;gt;
      &amp;lt;version&amp;gt;1.4.5&amp;lt;/version&amp;gt;
    &amp;lt;/dependency&amp;gt;
﻿&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2011 14:18:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17574#M9810</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-02T14:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17590#M9818</link>
      <description>&lt;P&gt;Since the error said the card has expired. have you try the update on a payment profile that is not expired?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 11:59:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17590#M9818</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-10-03T11:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17592#M9819</link>
      <description>&lt;P&gt;Thanks for the reply @&lt;A target="_self" href="https://community.developer.cybersource.com/../user/viewprofilepage/user-id/1353"&gt;&lt;SPAN&gt;RaynorC1emen7&lt;/SPAN&gt;&lt;/A&gt;﻿.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually this is a payment profile I create, and then try to update in a test.&lt;/P&gt;&lt;P&gt;The creation succeeds, but the update fails, which leeds me to believe that there may be a bug in the SDK.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 12:47:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17592#M9819</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-03T12:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17598#M9822</link>
      <description>&lt;P&gt;Not sure if it is the same or not, but on c# code, it need to convert the cc info of "MaskedType" from&amp;nbsp; GetCustomerPaymentProfile﻿ to cc info of "SimpleType" to use in UpdateCustomerPaymentProfile. All it need is copy the data from masked type to the simple type.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 13:25:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17598#M9822</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-10-03T13:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17604#M9825</link>
      <description>&lt;P&gt;There's only a single CreditCard class in the Java SDK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I strip the non numeric digits I get: &lt;FONT color="#FF0000"&gt;E00015 - The field length is invalid for Card Number.&lt;/FONT&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking at the java tests that ship with the SDK, I see that the tests actually never use a masked CC number, rather send the full CC number :P&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW, is this a c# sdk, or the soap API?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 14:13:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17604#M9825</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-03T14:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17606#M9826</link>
      <description>&lt;P&gt;That is from CIM soap API.&lt;/P&gt;&lt;P&gt;What do you get if you just strip the non numeric digits from the expired date("xxxx") or just hardcode to something in the future like "0114"?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 14:32:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17606#M9826</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-10-03T14:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17608#M9827</link>
      <description>&lt;P&gt;This works, but I fear it will only work in TEST_MODE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This isn't really what I want to do...&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 14:42:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17608#M9827</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-03T14:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17612#M9829</link>
      <description>&lt;P&gt;If hardcoding to a future date work. There probably a bug in the SDK. Fixed it and post the code and see if the MOD will get it into the next SDK update.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 15:10:48 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17612#M9829</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-10-03T15:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17614#M9830</link>
      <description>&lt;P&gt;I will try to debug the SDK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didn't realize this code is community driven.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea where to post a fix if I manage to find the bug?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 15:23:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17614#M9830</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-03T15:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17616#M9831</link>
      <description>&lt;P&gt;The MOD read these discussion once in a while and let the developer know there is a bugs or fixes to the SDKs.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 15:27:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17616#M9831</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-10-03T15:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17620#M9833</link>
      <description>&lt;P&gt;I look thru the code and I think I found the problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;updateCustomerPaymentProfile()&lt;BR /&gt;&amp;nbsp; call addPaymentProfiles()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call addPayment()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Line cc_exp_el.appendChild(document.getDocument().createTextNode(net.authorize.util.DateUtil.getFormattedDate(credit_card.getExpirationDate(),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; CreditCard.ARB_EXPIRY_DATE_FORMAT)));&lt;BR /&gt;&lt;BR /&gt;getFormattedDate() not checking for Masked ExprationDate and return it as is("XXXX").&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 15:54:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17620#M9833</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-10-03T15:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17622#M9834</link>
      <description>&lt;P&gt;I found the bug:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;net.authorize.util.DateUtil.getFormattedDate(Date, String)﻿, that gets called from&amp;nbsp;net.authorize.cim.Transaction.addPayment(BasicXmlDocument, Payment, Element)﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&amp;nbsp;getFormattedDate﻿() method should format the masked date as 'XXXX' but instead renders it as '1970-01'.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 15:56:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17622#M9834</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-03T15:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17624#M9835</link>
      <description>&lt;P&gt;lol, you beat me to it by 2 min :)&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2011 15:58:21 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17624#M9835</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-03T15:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17664#M9855</link>
      <description>&lt;P&gt;MOD / Admins,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a fix for this issue - changed the DateUtil code to parse Jan-1970 (1970-01) date as XXXX:&lt;/P&gt;&lt;PRE&gt;public class DateUtil{

  private static final String MASKED_DATE = "XXXX";

  public static Date getDateFromFormattedDate(final String dateStr, final String format) {
    try{
      final SimpleDateFormat sdf=new SimpleDateFormat(format);
      if (dateStr != null &amp;amp;&amp;amp; !MASKED_DATE.equals(dateStr)) {
        final Date date=sdf.parse(dateStr);
        return date;
      }
    }
    catch(final ParseException pe){
      System.out.println("Exception: " + pe);
    }
    return new Date(0);
  }

  public static String getFormattedDate(final Date date, final String format) {
    try {
      if (date.getTime() == 0) {
        return MASKED_DATE;
      }
      final SimpleDateFormat sdf=new SimpleDateFormat(format);
      return sdf.format(date);
    }
    catch(final Exception e){
      System.out.println(e);
    }
    return null;
  }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;This makes the round trip getFormattedDate﻿(getDateFromFormattedDate﻿("XXXX",&amp;nbsp;"yyyy-MM"﻿), "yyyy-MM"﻿) correct, and coherent.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All tests pass except ReportingTest﻿ - I have no&amp;nbsp;permission to call the Transaction Details API﻿ apprrently:&lt;/P&gt;&lt;PRE&gt;Result Code: Error
E00011 - Access denied. You do not have permission to call the Transaction Details API.
﻿&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Can this fix be pushed to the next version please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2011 09:00:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17664#M9855</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-04T09:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17972#M10006</link>
      <description>&lt;P&gt;Hey guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the heads up on this. I've reported this to our developers so that they can get it fixed and included in an upcoming release. Appreciate it!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Michelle&lt;/P&gt;
&lt;P&gt;Developer Community Manager&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2011 22:51:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17972#M10006</guid>
      <dc:creator>Michelle</dc:creator>
      <dc:date>2011-10-12T22:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17996#M10018</link>
      <description>&lt;P&gt;To address the other error that you mentioned (E00011), it generally indicates that a username and password was mistakenly used instead of the API login ID and Transaction key.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2011 21:58:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/17996#M10018</guid>
      <dc:creator>Trevor</dc:creator>
      <dc:date>2011-10-13T21:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/18004#M10022</link>
      <description>&lt;P&gt;@Trevor, everything else works for me except for the Transaction Details API﻿﻿&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2011 05:48:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/18004#M10022</guid>
      <dc:creator>eran</dc:creator>
      <dc:date>2011-10-14T05:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/18008#M10024</link>
      <description>&lt;P&gt;It might be the API is disable.&lt;/P&gt;&lt;P&gt;Login to authorize.net&lt;/P&gt;&lt;P&gt;Account - Settings - Security Settings ﻿-&amp;nbsp;General Security Settings﻿ - Transaction Detail API&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2011 13:39:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/18008#M10024</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2011-10-14T13:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/25505#M13606</link>
      <description>&lt;P&gt;Michelle, when can we expect that this will be fixed in the official release?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Apr 2012 13:17:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/25505#M13606</guid>
      <dc:creator>svetozar</dc:creator>
      <dc:date>2012-04-10T13:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Update Billing Address using CIM Java SDK</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/25951#M13819</link>
      <description>&lt;P&gt;Hey svetozar,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't have any date that I can give you as to when this bug will be fixed in the SDK. But once we do make any SDK updates, we will announce it in the News and Announcements board.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your patience!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Michelle&lt;/P&gt;
&lt;P&gt;Developer Community Manager&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2012 19:22:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Update-Billing-Address-using-CIM-Java-SDK/m-p/25951#M13819</guid>
      <dc:creator>Michelle</dc:creator>
      <dc:date>2012-04-24T19:22:24Z</dc:date>
    </item>
  </channel>
</rss>

