File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 11# Sample Java Code for Authorize.Net
2- [ ![ Build Status] ( https://travis-ci.org/AuthorizeNet/sample-code-java.png?branch=master )]
3- (https://travis-ci.org/AuthorizeNet/sample-code-java )
2+ [ ![ Build Status] ( https://travis-ci.org/AuthorizeNet/sample-code-java.png?branch=master )] ( https://travis-ci.org/AuthorizeNet/sample-code-java )
43
54This repository contains working code samples which demonstrate Java integration with the Authorize.Net Java SDK
65The samples are organized just like our API, which you can also try out directly here: http://developer.authorize.net/api/reference
@@ -14,24 +13,24 @@ The samples are all completely independent and self-contained so you can look at
1413 1 . Clone this repository.
1514 2 . Run "mvn package" in the root directory to create the SampleCode console app.
1615 3 . Then run a sample directly by name:
17- ````
16+ ```
1817 > java -jar target/SampleCode.jar [CodeSampleName]
19- ````
18+ ```
2019e.g.
21- ````
20+ ```
2221 > java -jar target/SampleCode.jar ChargeCreditCard
23- ````
22+ ```
2423Running SampleCode without a parameter will give you the list of sample names. Handy or what!
2524
2625** NOTE : You can update to your Sandbox credentials in SampleCode.java**
2726
2827** For using behind proxy**
2928
3029Please set the JAVA environment proxy using a similar code :
31- ````
30+ ```
3231 System.setProperty("https.proxyUse", "true");
3332 System.setProperty("https.proxyHost", "127.0.0.1");
3433 System.setProperty("https.proxyPort", "3128");
35- ````
34+ ```
3635
3736* PLEASE NOTE THIS PROJECT IS CURRENTLY UNDER DEVELOPMENT*
You can’t perform that action at this time.
0 commit comments