I've downloaded the JDK and I've looked at ARB because I need to setup automated billing. From my understanding, I can pass an xml stack to the url provided in the ARB xml documentation and setup ARB there. However, when I looked at the JDK, it appears that I can use the same feature with the API. I looked at a lot of the classes in the JDK but never saw anything that gave any idea of how the actual API call was placed. It was just a bunch of classes full of getters and setters. I haven't been able to find any documentation on it the API calls either. I was able to find code examples for some of the processes I needed in JSP, but I need Java instead. I've never integrated software with credit cards so please be precise keep that in mind. Thanks!
โ07-28-2015 03:37 PM
It just a soap webservice call. Do java have anything to build the class from a wsdl?
https://api.authorize.net/soap/v1/Service.asmx?WSDL
Did you read the soap doc here?
โ07-28-2015 04:04 PM
โ07-28-2015 05:19 PM
The wsdl was the first link
You could try the SDKs, https://github.com/AuthorizeNet/sdk-java
โ07-28-2015 05:34 PM
โ07-28-2015 06:35 PM
AIM don't have soap call, it xml or json(json still in beta)
โ07-29-2015 04:25 AM - edited โ07-29-2015 04:26 AM
Ok, so how would I implement AIM with xml? Do I just create the xml snippet like one in the documentation and then make an http request from my java application to the api test url with the xml snippet as a string? Would that work?
โ07-29-2015 01:44 PM