Thread.sleep(500); // Para que se note que estamos haciendo este test
byte[] stream = ostream.toByteArray();
istream = new ByteArrayInputStream(stream);
ObjectInputStream q = new ItsNatSessionObjectInputStream(istream); // ItsNatSessionObjectInputStream es INTERNO DE ITSNAT s�lo usar para estas pruebas
//clientDoc = (ClientDocument)q.readObject();
session = (ItsNatSession)q.readObject();
istream.close(); // close the file.
}
catch (Exception ex)
{
try