Enabled saving of config files.
This commit is contained in:
@ -40,9 +40,9 @@ public class JSONInterface {
|
||||
|
||||
public static void setupSession() {
|
||||
URL srvURL = null;
|
||||
String srvHost = _conf.getConf("server-hostname", "localhost");
|
||||
int srvPort = _conf.getConf("server-port", 7656);
|
||||
String srvTarget = _conf.getConf("server-target", "jsonrpc");
|
||||
String srvHost = _conf.getConf("server.hostname", "localhost");
|
||||
int srvPort = _conf.getConf("server.port", 7656);
|
||||
String srvTarget = _conf.getConf("server.target", "jsonrpc");
|
||||
try {
|
||||
srvURL = new URL("https://" + srvHost + ":" + srvPort + "/"
|
||||
+ srvTarget);
|
||||
|
Reference in New Issue
Block a user