<?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: Basic CIM workflow in java in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35413#M19792</link>
    <description>&lt;P&gt;Thanks for the quick reply. I was finally able to integrate the code from XML samples (java_cim/XML/CreateProfilesTest.java) into our system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to create the customerProfile, I get the "&lt;SPAN style="line-height: 16px;"&gt;The merchant login&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="line-height: 16px;"&gt;ID or password is invalid or the account is inactive." error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 16px;"&gt;I'm posting to &amp;nbsp;&lt;/SPAN&gt;&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; and have double-checked the "name" and "transactionKey" in "merchantAuthentication below, everything is correct:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;***********&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;BR /&gt;&amp;lt;createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&lt;BR /&gt;&amp;lt;merchantAuthentication&amp;gt;&lt;BR /&gt;&amp;lt;name&amp;gt;***&amp;lt;/name&amp;gt;&lt;BR /&gt;&amp;lt;transactionKey&amp;gt;&lt;SPAN&gt;***&lt;/SPAN&gt;&amp;lt;/transactionKey&amp;gt;&lt;BR /&gt;&amp;lt;/merchantAuthentication&amp;gt;&lt;BR /&gt;&amp;lt;profile&amp;gt;&lt;BR /&gt;&amp;lt;merchantCustomerId&amp;gt;custId1&amp;lt;/merchantCustomerId&amp;gt;&lt;BR /&gt;&amp;lt;description&amp;gt;test&amp;lt;/description&amp;gt;&lt;BR /&gt;&amp;lt;email&amp;gt;***&amp;lt;/email&amp;gt;&lt;BR /&gt;&amp;lt;/profile&amp;gt;&lt;BR /&gt;&amp;lt;/createCustomerProfileRequest&amp;gt;&lt;/P&gt;&lt;P&gt;*********&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas what else could be wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW, there is also a parsing error in the HTML they return:&lt;/P&gt;&lt;P&gt;******&lt;/P&gt;&lt;P&gt;&amp;lt;HTML&amp;gt;&amp;lt;BODY&amp;gt;&amp;lt;H3&amp;gt;The following errors have occurred.&amp;lt;/H3&amp;gt;(13) The merchant login&lt;BR /&gt;ID or password is invalid or the account is inactive.&amp;lt;BR&amp;gt;&amp;lt;/BODY&amp;gt;&amp;lt;/HTML&amp;gt;&lt;/P&gt;&lt;P&gt;******&lt;/P&gt;&lt;P&gt;So, it causes the "sendRequest()" method in "java_cim/XML/APIUtilities.java to return the following error:&lt;/P&gt;&lt;P&gt;[Fatal Error] :1:140: The element type "BR" must be terminated by the matching e&lt;BR /&gt;nd-tag "&amp;lt;/BR&amp;gt;".&lt;BR /&gt;sendRequest: org.xml.sax.SAXParseException: The element type "BR" must be termin&lt;BR /&gt;ated by the matching end-tag "&amp;lt;/BR&amp;gt;".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Should I bring this to their attention somehow?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Roman&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 01 Sep 2013 18:46:47 GMT</pubDate>
    <dc:creator>romanlutsk37</dc:creator>
    <dc:date>2013-09-01T18:46:47Z</dc:date>
    <item>
      <title>Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35242#M19639</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I'm trying to implement the functionality to store the credit card details, charge a credit card and refund the charges, but cannot get a good overview of the process.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From what I was able to deduct from code samples and forums, the approximate steps are (I'm using XML):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;1) Create a customer profile (name, email, etc) with&amp;nbsp;createCustomerProfileRequest&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Get back the "customerProfileId" and&amp;nbsp;create paymentProfile (createCustomerPaymentProfileRequest, updateCustomerPaymentProfileRequest) - only CC number and expiration - what about the card type (MC, Visa, etc)?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;3) Get back the "customerPaymentProfileId" and use it to charge the stored credit card with&amp;nbsp;createCustomerProfileTransactionRequest (profileTransAuthCapture)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4) refund with&amp;nbsp;&lt;SPAN&gt;createCustomerProfileTransactionRequest (profileTransRefund)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Are the above steps correct and is there a simpler/faster/better way?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could somebody point me in the direction of some simple java/jsp code for the above features?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;Roman&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2013 18:08:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35242#M19639</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-08-18T18:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35248#M19645</link>
      <description>&lt;P&gt;Sounds accurate. There is no credit card type, by the way, because card numbers have the type encoded inside them, so a type field is superfluous. I'm afraid I can't help with Java sample code, but the following -may- help:&lt;/P&gt;&lt;P&gt;&lt;A href="http://developer.authorize.net/downloads/samplecode/" target="_blank"&gt;http://developer.authorize.net/downloads/samplecode/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2013 23:17:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35248#M19645</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2013-08-18T23:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35413#M19792</link>
      <description>&lt;P&gt;Thanks for the quick reply. I was finally able to integrate the code from XML samples (java_cim/XML/CreateProfilesTest.java) into our system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to create the customerProfile, I get the "&lt;SPAN style="line-height: 16px;"&gt;The merchant login&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="line-height: 16px;"&gt;ID or password is invalid or the account is inactive." error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 16px;"&gt;I'm posting to &amp;nbsp;&lt;/SPAN&gt;&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; and have double-checked the "name" and "transactionKey" in "merchantAuthentication below, everything is correct:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 16px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;***********&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;BR /&gt;&amp;lt;createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&lt;BR /&gt;&amp;lt;merchantAuthentication&amp;gt;&lt;BR /&gt;&amp;lt;name&amp;gt;***&amp;lt;/name&amp;gt;&lt;BR /&gt;&amp;lt;transactionKey&amp;gt;&lt;SPAN&gt;***&lt;/SPAN&gt;&amp;lt;/transactionKey&amp;gt;&lt;BR /&gt;&amp;lt;/merchantAuthentication&amp;gt;&lt;BR /&gt;&amp;lt;profile&amp;gt;&lt;BR /&gt;&amp;lt;merchantCustomerId&amp;gt;custId1&amp;lt;/merchantCustomerId&amp;gt;&lt;BR /&gt;&amp;lt;description&amp;gt;test&amp;lt;/description&amp;gt;&lt;BR /&gt;&amp;lt;email&amp;gt;***&amp;lt;/email&amp;gt;&lt;BR /&gt;&amp;lt;/profile&amp;gt;&lt;BR /&gt;&amp;lt;/createCustomerProfileRequest&amp;gt;&lt;/P&gt;&lt;P&gt;*********&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas what else could be wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BTW, there is also a parsing error in the HTML they return:&lt;/P&gt;&lt;P&gt;******&lt;/P&gt;&lt;P&gt;&amp;lt;HTML&amp;gt;&amp;lt;BODY&amp;gt;&amp;lt;H3&amp;gt;The following errors have occurred.&amp;lt;/H3&amp;gt;(13) The merchant login&lt;BR /&gt;ID or password is invalid or the account is inactive.&amp;lt;BR&amp;gt;&amp;lt;/BODY&amp;gt;&amp;lt;/HTML&amp;gt;&lt;/P&gt;&lt;P&gt;******&lt;/P&gt;&lt;P&gt;So, it causes the "sendRequest()" method in "java_cim/XML/APIUtilities.java to return the following error:&lt;/P&gt;&lt;P&gt;[Fatal Error] :1:140: The element type "BR" must be terminated by the matching e&lt;BR /&gt;nd-tag "&amp;lt;/BR&amp;gt;".&lt;BR /&gt;sendRequest: org.xml.sax.SAXParseException: The element type "BR" must be termin&lt;BR /&gt;ated by the matching end-tag "&amp;lt;/BR&amp;gt;".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Should I bring this to their attention somehow?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Roman&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2013 18:46:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35413#M19792</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-01T18:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35415#M19793</link>
      <description>&lt;P&gt;It this a test account or production account?&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2013 22:18:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35415#M19793</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-09-01T22:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35417#M19794</link>
      <description>&lt;P&gt;The account is in test mode currently, but I should still be able to use CIM features, right?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 04:39:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35417#M19794</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-02T04:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35419#M19795</link>
      <description>&lt;P&gt;I turned the test mode off, but still getting the same error.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 05:18:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35419#M19795</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-02T05:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35421#M19796</link>
      <description>&lt;P&gt;If you are testing in the sandbox, then be certain that you are using the API Login ID and Transaction Key from your sandbox account and not your live production credentials.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can obtain a new transaction key by logging into the sandbox at &lt;A href="https://sandbox.authorize.net" target="_blank"&gt;https://sandbox.authorize.net&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 05:20:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35421#M19796</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2013-09-02T05:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35423#M19797</link>
      <description>&lt;P&gt;Thanks, but I've tried with a live URL (&lt;SPAN&gt;&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; still the same error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any other ideas?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 05:57:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35423#M19797</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-02T05:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35425#M19798</link>
      <description>&lt;P&gt;So it is a production account? have you try regenerating the transaction Key?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 09:56:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35425#M19798</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-09-02T09:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35427#M19799</link>
      <description>&lt;P&gt;copy the link and replace the loginID and transactionKey, if you are using production account change the url to secure.authorize.net .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://test.authorize.net/gateway/transact.dll?x_version=3.1&amp;amp;x_type=AUTH_ONLY&amp;amp;x_amount=1.23&amp;amp;x_delim_char=|&amp;amp;&amp;amp;x_card_num=4222222222222&amp;amp;x_exp_date=0615&amp;amp;x_delim_data=TRUE&amp;amp;x_relay_response=FALSE&amp;amp;x_login=[YourLoginID]&amp;amp;x_tran_key=[YourTranKey]" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll?x_version=3.1&amp;amp;x_type=AUTH_ONLY&amp;amp;x_amount=1.23&amp;amp;x_delim_char=|&amp;amp;&amp;amp;x_card_num=4222222222222&amp;amp;x_exp_date=0615&amp;amp;x_delim_data=TRUE&amp;amp;x_relay_response=FALSE&amp;amp;x_login=[YourLoginID]&amp;amp;x_tran_key=[YourTranKey]&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 10:02:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35427#M19799</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-09-02T10:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35429#M19800</link>
      <description>&lt;P&gt;Yes, I did&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 11:34:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35429#M19800</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-02T11:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35431#M19801</link>
      <description>&lt;P&gt;&lt;SPAN&gt;It seems to work when I post to&amp;nbsp;&lt;A target="_blank" rel="nofollow" href="https://test.authorize.net/gateway/transact.dll?x_version=3.1&amp;amp;x_type=AUTH_ONLY&amp;amp;x_amount=1.23&amp;amp;x_delim_char=|&amp;amp;&amp;amp;x_card_num=4222222222222&amp;amp;x_exp_date=0615&amp;amp;x_delim_data=TRUE&amp;amp;x_relay_response=FALSE&amp;amp;x_login=[YourLoginID]&amp;amp;x_tran_key=[YourTranKey]"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;&amp;nbsp;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;***********&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2|4|37|The credit card number is invalid.||P|5505041257|||1.23|CC|auth_only||||||||||||||||||||||||||C0F4C840CFC67DE4F613B9EE6B911C90|||||||||||||XXXX2222|Visa||||||||||||||||&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;***********&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, as I'm using XML, I need to post to "&lt;SPAN&gt;&lt;A target="_blank" href="https://api.authorize.net/xml/v1/request.api&amp;quot;,"&gt;https://api.authorize.net/xml/v1/request.api",&lt;/A&gt; right?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 11:36:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35431#M19801</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-02T11:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35435#M19803</link>
      <description>&lt;P&gt;That a test credit card should work for test.authorize.net/&amp;nbsp; . Did you change it to secure.authorize.net ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, as I'm using XML, I need to post to "&lt;SPAN&gt;&lt;A target="_blank" rel="nofollow" href="https://api.authorize.net/xml/v1/request.api%22,"&gt;https://api.authorize.net/xml/v1/request.api",&lt;/A&gt; right?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Yes, for xml, just using AIM to see if your loginID, transactionKey is correct.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 12:43:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35435#M19803</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-09-02T12:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35447#M19809</link>
      <description>&lt;P&gt;&amp;gt;&amp;nbsp;That a test credit card should work for test.authorize.net/&amp;nbsp; . Did you change it to secure.authorize.net ?&lt;/P&gt;&lt;P&gt;Yes, I posted it to &lt;A href="https://secure.authorize.net/gateway/transact.dll" target="_blank"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt; Yes, for xml, just using AIM to see if your loginID, transactionKey is correct.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks for the hint. It turns out the URL was being overwritten half way in another method before a connection was made. So it was printing out correct URL, but was connecting to a different one. The call to create a customerProfile works great now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I'm getting the following error when trying to add a new account in that customerProfile:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;************&lt;BR /&gt;[E00027] There is one or more missing or invalid required fields.&lt;/P&gt;&lt;P&gt;************&lt;/P&gt;&lt;P&gt;Any ideas what those missing/invalid fields might be? (I'm keeping the address fields empty - could this be a problem?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's my xml:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;***********&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;BR /&gt;&amp;lt;createCustomerPaymentProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"&amp;gt;&lt;BR /&gt;&amp;lt;merchantAuthentication&amp;gt;&lt;BR /&gt;&amp;lt;name&amp;gt;****&amp;lt;/name&amp;gt;&lt;BR /&gt;&amp;lt;transactionKey&amp;gt;****&amp;lt;/transactionKey&amp;gt;&amp;nbsp;&lt;BR /&gt;&amp;lt;/merchantAuthentication&amp;gt;&lt;BR /&gt;&amp;lt;customerProfileId&amp;gt;***&amp;lt;/customerProfileId&amp;gt;&lt;BR /&gt;&amp;lt;paymentProfile&amp;gt;&lt;BR /&gt;&amp;lt;billTo&amp;gt;&lt;BR /&gt;&amp;lt;firstName&amp;gt;John&amp;lt;/firstName&amp;gt;&lt;BR /&gt;&amp;lt;lastName&amp;gt;Doe&amp;lt;/lastName&amp;gt;&lt;BR /&gt;&amp;lt;address&amp;gt;&amp;lt;/address&amp;gt;&lt;BR /&gt;&amp;lt;city&amp;gt;&amp;lt;/city&amp;gt;&lt;BR /&gt;&amp;lt;state&amp;gt;&amp;lt;/state&amp;gt;&lt;BR /&gt;&amp;lt;zip&amp;gt;&amp;lt;/zip&amp;gt;&lt;BR /&gt;&amp;lt;country&amp;gt;&amp;lt;/country&amp;gt;&lt;BR /&gt;&amp;lt;phoneNumber&amp;gt;&amp;lt;/phoneNumber&amp;gt;&lt;BR /&gt;&amp;lt;faxNumber&amp;gt;&amp;lt;/faxNumber&amp;gt;&lt;BR /&gt;&amp;lt;/billTo&amp;gt;&lt;BR /&gt;&amp;lt;payment&amp;gt;&lt;BR /&gt;&amp;lt;creditCard&amp;gt;&lt;BR /&gt;&amp;lt;cardNumber&amp;gt;4111111111111111&amp;lt;/cardNumber&amp;gt;&lt;BR /&gt;&amp;lt;expirationDate&amp;gt;2023-12&amp;lt;/expirationDate&amp;gt;&lt;BR /&gt;&amp;lt;/creditCard&amp;gt;&lt;BR /&gt;&amp;lt;/payment&amp;gt;&lt;BR /&gt;&amp;lt;/paymentProfile&amp;gt;&lt;BR /&gt;&amp;lt;validationMode&amp;gt;liveMode&amp;lt;/validationMode&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/createCustomerPaymentProfileRequest&amp;gt;&lt;/P&gt;&lt;P&gt;**************&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;Roman&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 19:34:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35447#M19809</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-02T19:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35449#M19810</link>
      <description>&lt;P&gt;You can check that if you can login to the merchant account -&lt;/P&gt;&lt;P&gt;under Settings, Payment Form, Form Fields&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or just populate the bill to address.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2013 21:46:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35449#M19810</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-09-02T21:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35451#M19811</link>
      <description>&lt;P&gt;Thanks. I checked the Form Fields under&amp;nbsp;&lt;SPAN&gt;Settings, Payment Form and none of them are set to "required".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, it only works if I fill out a correct billing address for the card.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there any way to store the card without the billing address?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks again,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Roman&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2013 07:04:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35451#M19811</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-03T07:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35455#M19813</link>
      <description>&lt;P&gt;You could set validationMode to testMode &amp;lt;validationMode&amp;gt;testMode&amp;lt;/validationMode&amp;gt;&lt;/P&gt;&lt;P&gt;But if you do that, it will not validate(run a auth_only transaction) the card before saving.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2013 11:10:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35455#M19813</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-09-03T11:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35473#M19820</link>
      <description>&lt;P&gt;Thanks. I guess it doesn't make much sense to store the card that's not valid.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the other hand, there is a 1 cent charge the card - any way to avoid it and still authenticate?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2013 04:23:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35473#M19820</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-04T04:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35481#M19824</link>
      <description>&lt;P&gt;It an auth_only transaction, it get void right after the validation. It depend of the card type that some required the $.01 to get process correctly. FYI, every validation create a transaction, that mean a transaction fee.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2013 11:34:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35481#M19824</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-09-04T11:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Basic CIM workflow in java</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35561#M19864</link>
      <description>&lt;P&gt;Thanks for the quick reply. It turns out it's possible to store a credit card without a billing address when the "&lt;SPAN&gt;validationMode" is set to "testOnly" and then charging that card (profileTransAuthCapture) without a problem. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This seems odd, since it doesn't let adding a card without a billing address when validationMode is set to "liveMode".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A few specific questions:&lt;/P&gt;&lt;P&gt;1) What is the point of using &lt;SPAN&gt;validationMode&amp;nbsp;&lt;/SPAN&gt;"testOnly" (vs "none")? From what I understand, it only checks if the CC number is not mistyped (which I can do with JavaScript on the front end)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Are there any disadvantages of storing the credit card without a billing address (using CIM)? Will it affect the transaction fees or make it difficult to protect oneself in a potential charge dispute?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;3) What is the value of providing a CVC code when storing a credit card (with CIM)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4) How do I change the "from" name/email on the receipt emails that get sent to the customer when their credit card gets charged using the API?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Roman&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2013 17:38:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Basic-CIM-workflow-in-java/m-p/35561#M19864</guid>
      <dc:creator>romanlutsk37</dc:creator>
      <dc:date>2013-09-07T17:38:23Z</dc:date>
    </item>
  </channel>
</rss>

