It is working once i change it to XMLEnocder:

ByteArrayOutputStream fos = new ByteArrayOutputStream();

try {
XMLEncoder encoder = new XMLEncoder(fos);
encoder.writeObject(response);
encoder.flush();
return fos.toString();
}