AuthorizeNet / sdk-python

Python SDK for the Authorize.Net API
Other
53 stars 82 forks source link

WARNING Multiple accepting paths for <class 'authorizenet.apicontractsv1.CTD_ANON_##'> #133

Closed vinaychetu closed 5 years ago

vinaychetu commented 5 years ago

Hi There, I'm getting below errors(or some related ones) on my console while charging a credit card(or creating a subscription):

WARNING Multiple accepting paths for <class 'authorizenet.apicontractsv1.CTD_ANON_9'> WARNING Multiple accepting paths for <class 'authorizenet.apicontractsv1.CTD_ANON_8'> WARNING Multiple accepting paths for {AnetApi/xml/v1/schema/AnetApiSchema.xsd}transactionResponse

Currently, I'm testing these using Sandbox Credentials for Django(v1.8) using Python-sdk and have not tested on production. Also, tell me if these are the matter of concern before going live.

kikmak42 commented 5 years ago

Hi @vinaychetu

Thank you for raising this issue, we looked into this warning and found these warnings are issued by PyXb.

Whenever there are nested elements and have the possibility of name clashes, PyXb issues these warnings. Current in our API Schema we have some of the fields like profile, order of different types used in different type of requests, thus we are getting this warning.

Thus, you need not worry about this and feel free to raise any other concerns.

Happy Coding! Kaushik