I created a ComClass in VB to interface with our Navision Order Taking System. Our software in Windows forms and not web based.
I am using the AIM API with the test developer API login ID and Transaction Key. I have tested some transactions and everything looks pretty good.
Now I would like to switch my testing to using our company's merchant (real API Login and Tx ID) account which is still in "TEST" mode.
Our Setup:
I'm not sure but I think...
Thanks for your help
Solved! Go to Solution.
12-22-2011 01:07 PM
Yes, need to point to https://secure.authorize.net/gateway/transact.dll. However you set the test URL, change it to the production url.
Don't need a web server for windows app.
As long as the apps user have access to the internet, it should work fine.
What site? You just said it is not web based, and I don't think you can setup a SSL for a windows app.
???
12-22-2011 01:37 PM
Yes, need to point to https://secure.authorize.net/gateway/transact.dll. However you set the test URL, change it to the production url.
Don't need a web server for windows app.
As long as the apps user have access to the internet, it should work fine.
What site? You just said it is not web based, and I don't think you can setup a SSL for a windows app.
???
12-22-2011 01:37 PM
There are probably ways to have your software connect via SSL, but how to do that is a bit beyond the scope of this forum. Hope you can figure it out. I know that there are ways to do it in Perl, PHP, etc.
12-22-2011 02:34 PM
Thanks, I was hoping it was as you said.
I just found out that in my case I just have to switch URL is to change the testMode of the Gateway to false. See below.
>> var gate = new Gateway(APILoginID, TransactionKey, False);
It accepted my company's merchant "API Login ID" and "TransactionKey" etc.
Thanks very much.
12-22-2011 06:23 PM