else
encodedValue = XML.text(node);
Object rc = null;
try {
ByteArrayInputStream byteArray = new ByteArrayInputStream(encodedValue.getBytes());
Base64DecodingInputStream base64 = new Base64DecodingInputStream(byteArray);
GZIPInputStream gzip = new GZIPInputStream(base64);
ObjectInputStream objStream = new ObjectInputStream(gzip);
rc = objStream.readObject();
objStream.close();
} catch (InvalidClassException ex) {