Hello,
I am working with the sample ASP page that you provide and it works fine if I turn password-required mode OFF. However, if I turn this on and use the tran key that I just generated, I get the 103 error. I've worked with 2 reps via chat and they said this can only be the transaction key, but I have generated several of them, disabled the old ones, and confirmed there are no whitespaces around it. I even sent the post string to the rep and he said it looks good.
Any help would be appreciated as I'd rather not leave password-required mode turned off.
Thanks!
11-09-2013 09:53 AM - edited 11-09-2013 09:56 AM
that doesn't make sense. because when password-required mode is off, and the transactionKey is pass, it will be used to validate. If that work and the only thing is turn password-required mode on. it should work.
11-09-2013 03:39 PM
Thanks for your reply.
I agree that it doesn't make sense. I think it has to be something wrong with my specific account. It is very old (10+ years). Hoping they will look into it and let me know.
11-10-2013 07:42 PM
Did you change anything other than putting in your loginID and transactionKey on the sample code?
11-11-2013 04:24 AM
The only other changes I made were the server object which was recommended in another post and I had to ignore SSL errors which was also in another post on this forum. Code below:
' We use xmlHTTP to submit the input values and record the response
Dim objRequest, post_response
Set objRequest = Server.CreateObject("MSXML2.ServerXMLHTTP")
'Set objRequest = Server.CreateObject("Microsoft.XMLHTTP")
CONST SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS = 2
CONST SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS = 13056
objRequest.setOption SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS, SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS
objRequest.open "POST", post_url, false
objRequest.send post_string
post_response = objRequest.responseText
Set objRequest = nothing
11-11-2013 05:26 PM
So it still passing the transactionKey and loginID, try contact the developer@authorize.net with all your info.
11-12-2013 04:13 AM
Yes it is. Ok, will do, thanks.
11-12-2013 11:35 AM
I emailed them and support yesterday. No response yet. :(
11-13-2013 08:05 PM