<?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: Getting customer data from Hosted CIM in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26215#M13948</link>
    <description>&lt;P&gt;I tried that, using the code right out of the documentation, and got an error:&lt;/P&gt;&lt;P&gt;[E00045] The root node does not reference a valid XML namespace.&lt;/P&gt;&lt;P&gt;That doesn't tell me much. Here's the full code: (name and key are test only, not production)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$content = &amp;nbsp;"&amp;lt;?xml version=\"1.0\" encoding=\"utf-8\"?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;getCustomerProfileRequest xmlns=\"AnetApi/xml/v1/schema/ AnetApiSchema.xsd\"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;merchantAuthentication&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;name&amp;gt;53jMYw2ab4c&amp;lt;/name&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;transactionKey&amp;gt;6dX9UBP8wv2jT46K&amp;lt;/transactionKey&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/merchantAuthentication&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;customerProfileId&amp;gt;7604495&amp;lt;/customerProfileId&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/getCustomerProfileRequest&amp;gt;";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;echo "Raw request: " . htmlspecialchars($content) . "&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;";&lt;/P&gt;&lt;P&gt;$response = send_xml_request($content);&lt;/P&gt;&lt;P&gt;echo "Raw response: " . htmlspecialchars($response) . "&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;";&lt;/P&gt;&lt;P&gt;$parsedresponse = parse_api_response($response);&lt;/P&gt;&lt;P&gt;if ("Ok" == $parsedresponse-&amp;gt;messages-&amp;gt;resultCode)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;}&lt;/P&gt;&lt;P&gt;?&amp;gt;&lt;/P&gt;</description>
    <pubDate>Wed, 02 May 2012 20:04:33 GMT</pubDate>
    <dc:creator>takabyte</dc:creator>
    <dc:date>2012-05-02T20:04:33Z</dc:date>
    <item>
      <title>Getting customer data from Hosted CIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26207#M13944</link>
      <description>&lt;P&gt;I'm crawling along trying to figure out how to work with Authorize.net Hosted CIM. I have finally gotten this far:&lt;/P&gt;&lt;P&gt;I used createCustomerProfileRequest to get a new CustomerID. Using that, I sent off a getHostedProfilePageRequest, which gave me back a token. I created a form that included the token, and sent the user to a form to enter his information. Now, assuming that he does fill out the form and return to my site, how do I get the information he entered for my records? I need to know his name and address, etc., but I cannot find a method for doing so. I presume that I can send through charges for him using just his CustomerID number, but I'd really like to have his info&amp;nbsp;(not payment info, just address stuff)&amp;nbsp;in my database. How do I do that?&lt;/P&gt;</description>
      <pubDate>Wed, 02 May 2012 19:12:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26207#M13944</guid>
      <dc:creator>takabyte</dc:creator>
      <dc:date>2012-05-02T19:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Getting customer data from Hosted CIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26211#M13946</link>
      <description>&lt;P&gt;After they return to your site, use GetCustomerProfile to get a list of PaymentProfiles (they could enter more than 1 cc#).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 May 2012 19:23:40 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26211#M13946</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-05-02T19:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Getting customer data from Hosted CIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26215#M13948</link>
      <description>&lt;P&gt;I tried that, using the code right out of the documentation, and got an error:&lt;/P&gt;&lt;P&gt;[E00045] The root node does not reference a valid XML namespace.&lt;/P&gt;&lt;P&gt;That doesn't tell me much. Here's the full code: (name and key are test only, not production)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$content = &amp;nbsp;"&amp;lt;?xml version=\"1.0\" encoding=\"utf-8\"?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;getCustomerProfileRequest xmlns=\"AnetApi/xml/v1/schema/ AnetApiSchema.xsd\"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;merchantAuthentication&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;name&amp;gt;53jMYw2ab4c&amp;lt;/name&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;transactionKey&amp;gt;6dX9UBP8wv2jT46K&amp;lt;/transactionKey&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/merchantAuthentication&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;customerProfileId&amp;gt;7604495&amp;lt;/customerProfileId&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/getCustomerProfileRequest&amp;gt;";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;echo "Raw request: " . htmlspecialchars($content) . "&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;";&lt;/P&gt;&lt;P&gt;$response = send_xml_request($content);&lt;/P&gt;&lt;P&gt;echo "Raw response: " . htmlspecialchars($response) . "&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;";&lt;/P&gt;&lt;P&gt;$parsedresponse = parse_api_response($response);&lt;/P&gt;&lt;P&gt;if ("Ok" == $parsedresponse-&amp;gt;messages-&amp;gt;resultCode)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;}&lt;/P&gt;&lt;P&gt;?&amp;gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 May 2012 20:04:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26215#M13948</guid>
      <dc:creator>takabyte</dc:creator>
      <dc:date>2012-05-02T20:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Getting customer data from Hosted CIM</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26219#M13950</link>
      <description>&lt;P&gt;It hard to see but when I copy this line to notepad. It show a space right after "schema/" and before "AnetApiSchema.xsd"&lt;/P&gt;&lt;PRE&gt;&amp;lt;getCustomerProfileRequest xmlns=\"AnetApi/xml/v1/schema/ AnetApiSchema.xsd\"&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 May 2012 20:56:22 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Getting-customer-data-from-Hosted-CIM/m-p/26219#M13950</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-05-02T20:56:22Z</dc:date>
    </item>
  </channel>
</rss>

