<?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: Strange Error in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31684#M16501</link>
    <description>&lt;P&gt;not sure, not a php developer, but since it convert the data to xml, it might be possible to get the xml from the transaction object during the send to authorize.net.&lt;/P&gt;</description>
    <pubDate>Sat, 24 Nov 2012 22:06:49 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2012-11-24T22:06:49Z</dc:date>
    <item>
      <title>Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31634#M16478</link>
      <description>&lt;P&gt;I am getting a strange error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;AuthorizeNetCIM_Response Object
(
    [xml] =&amp;gt; SimpleXMLElement Object
        (
            [messages] =&amp;gt; SimpleXMLElement Object
                (
                    [resultCode] =&amp;gt; Error
                    [message] =&amp;gt; SimpleXMLElement Object
                        (
                            [code] =&amp;gt; E00003
                            [text] =&amp;gt; Name cannot begin with the '0' character, hexadecimal value 0x30. Line 2, position 342.
                        )

                )

        )&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea what could be causing this?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2012 18:07:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31634#M16478</guid>
      <dc:creator>epikmedia</dc:creator>
      <dc:date>2012-11-23T18:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31638#M16480</link>
      <description>&lt;P&gt;that a xml parser error. check you input xml.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2012 19:57:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31638#M16480</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-11-23T19:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31646#M16484</link>
      <description>Can you be a bit more specific? I am not using XML but am sending it via PHP arrays.</description>
      <pubDate>Fri, 23 Nov 2012 20:27:05 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31646#M16484</guid>
      <dc:creator>epikmedia</dc:creator>
      <dc:date>2012-11-23T20:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31648#M16485</link>
      <description>&lt;P&gt;which url are you sending the CIM request?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2012 21:01:55 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31648#M16485</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-11-23T21:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31668#M16493</link>
      <description>&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;</description>
      <pubDate>Fri, 23 Nov 2012 23:23:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31668#M16493</guid>
      <dc:creator>epikmedia</dc:creator>
      <dc:date>2012-11-23T23:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31670#M16494</link>
      <description>&lt;PRE&gt;					$transaction = new AuthorizeNetTransaction;
					$transaction-&amp;gt;amount = $order_total;
					$transaction-&amp;gt;customerProfileId = $auth_net_cust_id;
					$transaction-&amp;gt;customerPaymentProfileId = $paymentProfileId;
					$transaction-&amp;gt;customerShippingAddressId = $customerAddressId;
					
					$request = new AuthorizeNetCIM;
					$response = $request-&amp;gt;createCustomerProfileTransaction("AuthOnly", $transaction);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;this is the code i am using that is getting this error returned.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2012 23:25:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31670#M16494</guid>
      <dc:creator>epikmedia</dc:creator>
      <dc:date>2012-11-23T23:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31674#M16496</link>
      <description>&lt;P&gt;that is using the xml for the transaction. Might need to run some debug in createCustomerProfileTransaction to see which data field is having a 0.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Nov 2012 00:20:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31674#M16496</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-11-24T00:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31678#M16498</link>
      <description>Can you make any suggestions on the debug? I have verified that the profile/payment/shipping ids are not 0 when i pass them.</description>
      <pubDate>Sat, 24 Nov 2012 17:03:58 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31678#M16498</guid>
      <dc:creator>epikmedia</dc:creator>
      <dc:date>2012-11-24T17:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Strange Error</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31684#M16501</link>
      <description>&lt;P&gt;not sure, not a php developer, but since it convert the data to xml, it might be possible to get the xml from the transaction object during the send to authorize.net.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Nov 2012 22:06:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Strange-Error/m-p/31684#M16501</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2012-11-24T22:06:49Z</dc:date>
    </item>
  </channel>
</rss>

