- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
AIM - 103 - This transaction cannot be accepted with valid Transaction key
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Did you change anything other than putting in your loginID and transactionKey on the sample code?
โ11-11-2013 04:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
So it still passing the transactionKey and loginID, try contact the developer@authorize.net with all your info.
โ11-12-2013 04:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes it is. Ok, will do, thanks.
โ11-12-2013 11:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I emailed them and support yesterday. No response yet. :(
โ11-13-2013 08:05 PM