I have getting issue to create Payment profile on Sandbox, getting following error
"Error E00001 An error occurred during processing. Please try again."
Please let me know any issue in sandbox
Response
<?xml version="1.0" encoding="utf-8"?><createCustomerProfileResponse 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>E00001</code><text>An error occurred during processing. Please try again.</text></message></messages><customerPaymentProfileIdList /><customerShippingAddressIdList /><validationDirectResponseList /></createCustomerProfileResponse>
10-31-2014 10:07 PM
Can you post your request XML or email it to me : bmcmanus@authorize.net
Brian
11-01-2014 12:53 PM
These all transaction from sandbox account, Production account working properly and its happend from 31/Oct/2014 on my dev side.
<createCustomerProfileTransactionRequest><transaction><profileTransAuthOnly><amount>1</amount><customerProfileId>30067315</customerProfileId><customerPaymentProfileId>27197277</customerPaymentProfileId><order><invoiceNumber>AD-1414824881938</invoiceNumber></order></profileTransAuthOnly></transaction></createCustomerProfileTransactionRequest>
3,1,261,An error occurred during processing. &nbsp;Please try again.,,P,0,AD-1414824881938,,1.00,,auth_only,31414824880,Bin,Port,Binary Port.......
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileRequest><customerProfileId>30066815</customerProfileId><paymentProfile><customerType>individual</customerType><billTo><firstName>Anees</firstName><lastName>Shoukat</lastName><company>Custom Company</company><address>786 K</address><city>Miami</city><state>FL</state><zip>33137</zip><country>US</country><phoneNumber>9495893229</phoneNumber></billTo></paymentProfile></createCustomerPaymentProfileRequest>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileResponse 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>E00001</code><text>An error occurred during processing. Please try again.</text></message></messages></createCustomerPaymentProfileResponse>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileRequest><customerProfileId>30066698</customerProfileId><paymentProfile><customerType>individual</customerType><billTo><firstName>Bin</firstName><lastName>Port</lastName><company>Binary Port</company><address>687 L</address><city>Lahore</city><zip>54000</zip><country>US</country><phoneNumber>9495893229</phoneNumber></billTo></paymentProfile></createCustomerPaymentProfileRequest>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileResponse 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>E00001</code><text>An error occurred during processing. Please try again.</text></message></messages></createCustomerPaymentProfileResponse>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileRequest><customerProfileId>30066698</customerProfileId><paymentProfile><customerType>individual</customerType><billTo><firstName>Bin</firstName><lastName>Port</lastName><company>Binary Port</company><address>687 L</address><city>Lahore</city><state>Punjab</state><zip>54000</zip><country>PK</country><phoneNumber>9495893229</phoneNumber></billTo></paymentProfile></createCustomerPaymentProfileRequest>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileResponse 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>E00001</code><text>An error occurred during processing. Please try again.</text></message></messages></createCustomerPaymentProfileResponse>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileRequest><customerProfileId>30066462</customerProfileId><paymentProfile><customerType>individual</customerType><billTo><firstName>Bin</firstName><lastName>Port</lastName><company>Binary Port</company><address>786 K</address><city>Miami</city><state>FL</state><zip>33137</zip><country>US</country><phoneNumber>9495893200</phoneNumber></billTo></paymentProfile></createCustomerPaymentProfileRequest>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileResponse 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>E00001</code><text>An error occurred during processing. Please try again.</text></message></messages></createCustomerPaymentProfileResponse>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileRequest><customerProfileId>30066462</customerProfileId><paymentProfile><customerType>individual</customerType><billTo><firstName>Bin</firstName><lastName>Port</lastName><company>Binary Port</company><address>786 K</address><city>Miami</city><state>GA</state><zip>33137</zip><country>US</country><phoneNumber>9495893200</phoneNumber></billTo></paymentProfile></createCustomerPaymentProfileRequest>
<?xml version="1.0" encoding="utf-8"?><createCustomerPaymentProfileResponse 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>E00001</code><text>An error occurred during processing. Please try again.</text></message></messages></createCustomerPaymentProfileResponse>
11-01-2014 06:59 PM
Using authorize.net SDK download from authoriz.net
/**
* The AuthorizeNet PHP SDK. Include this file in your project.
*
* @package AuthorizeNet
*/
......
<?php
/**
* Easily interact with the Authorize.Net CIM XML API.
*
* @package AuthorizeNet
* @subpackage AuthorizeNetCIM
* @link http://www.authorize.net/support/CIM_XML_guide.pdf CIM XML Guide
*/
/**
* A class to send a request to the CIM XML API.
*
* @package AuthorizeNet
* @subpackage AuthorizeNetCIM
*/
....................
11-01-2014 07:01 PM