Skip to content
This repository has been archived by the owner on Jun 3, 2022. It is now read-only.

Commit

Permalink
Release ccfd-api-java 1.49
Browse files Browse the repository at this point in the history
  • Loading branch information
borisz committed Apr 17, 2012
1 parent d731d70 commit 965f1bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,4 +1,6 @@
Revision history for MaxMind minFraud Java API
1.49 Februar 19th 2009
- Add minfraud3.maxmind.com to the serverlist
1.48 October 3th 2008
- Add new fields user_agent and accept_language for CCFD ( Boris Zentner )

Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,4 +1,4 @@
Maxmind minFraud Java API Version 1.48
Maxmind minFraud Java API Version 1.49

================
Example programs
Expand Down
6 changes: 3 additions & 3 deletions com/maxmind/ws/HTTPBase.java
Expand Up @@ -31,8 +31,8 @@
//import HttpTimeoutHandler;

public class HTTPBase{
int numservers = 2;
static String[] server = {"minfraud1.maxmind.com","minfraud2.maxmind.com"};
int numservers = 3;
static String[] server = {"minfraud3.maxmind.com", "minfraud1.maxmind.com","minfraud2.maxmind.com"};
String url;
public HashMap queries;
public HashMap allowed_fields;
Expand Down Expand Up @@ -266,7 +266,7 @@ boolean querySingleServer(String server) {
query_data[n] = new NameValuePair(key,value);
n++;
}
query_data[n] = new NameValuePair("clientAPI","Java/1.48");
query_data[n] = new NameValuePair("clientAPI","Java/1.49");
// scheme already has the name of the proctol
// append the domain name of the server, url of the web service
// and the query string to the string named url2
Expand Down

0 comments on commit 965f1bd

Please sign in to comment.