public void postDistributedServer(String action, String servers) throws MalformedURLException {
checkNotNull(servers);
Form form = new Form();
form.add("action", action);
form.add("serversString", servers);
Representation representation = form.getWebRepresentation();
URL url = localServerEndPoint.toURL();
String requestURL = url.toString();
Request request = new Request(Method.POST, requestURL, representation);
Response response = client.handle(request);
if (!response.getStatus().isSuccess()) {