centerServer_parameter = {};
function centerServer_get() {
$('#content').html('');
$('#result').html('');
var str = '
';
$('#content').html(str);
$.ajax({
type : 'get',
dataType : 'json',
contentType : 'application/json; charset=utf-8',
url : '../jaxrs/centerserver',
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).done(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
if (json.type == 'success') {
if (json.data) {
$('#host').val(json.data.host);
$('#port').val(json.data.port);
$('#cipher').val(json.data.cipher);
$('#proxyHost').val(json.data.proxyHost);
$('#proxyPort').val(json.data.proxyPort);
}
} else {
failure(json);
}
});
$('#put').click(function() {
centerServer_put();
});
}
function centerServer_put() {
$('#result').html('');
$.ajax({
type : 'put',
dataType : 'json',
url : '../jaxrs/centerserver',
contentType : 'application/json; charset=utf-8',
data : JSON.stringify({
host : $('#host').val(),
port : $('#port').val(),
cipher : $('#cipher').val(),
proxyHost : $('#proxyHost').val(),
proxyPort : $('#proxyPort').val()
}),
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).done(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}