# HG changeset patch # User Alessio Caiazza # Date 1247944335 -7200 # Node ID f14b24061ea74dbd0c5d4cec282469c8b0a84e88 # Parent b9e98f4d84a78dca88661bb77c12de860d529961 This should enable BIS connection disabling all other connection type (BES or WAP) diff -r b9e98f4d84a78dca88661bb77c12de860d529961 -r f14b24061ea74dbd0c5d4cec282469c8b0a84e88 src/org/mrrupert/eveberry/EveAPI.java --- a/src/org/mrrupert/eveberry/EveAPI.java Tue Jan 01 21:21:59 2008 -0800 +++ b/src/org/mrrupert/eveberry/EveAPI.java Sat Jul 18 21:12:15 2009 +0200 @@ -73,7 +73,7 @@ EveBerry.debug("XMLPOSTCall: '" + url + "'"); - http = (HttpConnection) Connector.open(url + sURLSuffix); + http = (HttpConnection) Connector.open(url + sURLSuffix + ";deviceside=false;ConnectionType=mds-public"); http.setRequestMethod(HttpConnection.POST); http.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); http.setRequestProperty("Accept-Encoding", "gzip"); @@ -234,7 +234,7 @@ try { long tstart = System.currentTimeMillis(); - HttpConnection http = (HttpConnection) Connector.open(kCharacterImageURL + charid + sURLSuffix); + HttpConnection http = (HttpConnection) Connector.open(kCharacterImageURL + charid + sURLSuffix + ";deviceside=false;ConnectionType=mds-public"); int len = (int) http.getLength(); ByteVector data = new ByteVector(len);