Solved! Go to Solution.
01-08-2014 04:48 AM
Thanks for the giving reply,
after passing customerid we getting error as below
01-09-2014 07:48 AM - edited 01-09-2014 07:53 AM
It this a test account? In the guide page 12. Need to use the correct URL.
01-09-2014 08:08 AM
01-09-2014 08:21 AM
Chapter 4 on the XML guide.
01-09-2014 08:24 AM
Thanks for the giving reply,
we are try to create customer profile:
Input XML:
<?xml version="1.0" encoding="utf-8"?>
<createCustomerProfileRequest xmlns= "AnetApi/xml/v1/schema/
AnetApiSchema.xsd">
<merchantAuthentication>
<name>mytestacct</name>
<transactionKey>112223344</transactionKey>
</merchantAuthentication>
</createCustomerProfileRequest>
Output XML:
<?xml version="1.0" encoding="utf-8"?>
<ErrorResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd">
<messages>
<resultCode>Error</resultCode>
<message>
<code>E00045</code>
<text>The root node does not reference a valid XML namespace.</text>
</message>
</messages>
</ErrorResponse>
01-09-2014 09:13 AM
Is there a reason
<createCustomerProfileRequest xmlns= "AnetApi/xml/v1/schema/
AnetApiSchema.xsd">
is on two line?
01-09-2014 09:47 AM
Thanks for the giving reply,
Now we able to generating Toke :smileyhappy:
01-09-2014 11:13 AM