public synchronized String getGlobalConfiguration(final OGlobalConfiguration config) throws IOException {
try {
final OChannelBinaryAsynchClient network = storage.beginRequest(OChannelBinaryProtocol.REQUEST_CONFIG_GET);
network.writeString(config.getKey());
network.endRequest();
try {
storage.beginResponse(network);
return network.readString();
} finally {