// pero no funciona con ItsNatHttpSessionReplicationCapableImpl.simulateSerialization
// a true pues es precisamente una simulaci�n de GAE en donde los objetos
// bloqueados ClientDocumentAttachedServerFormImpl son diferentes (por la serializaci�n) por tanto
// este thread se queda indefinidamente parado (hasta que llegue al timeout si no es cero).
ClientDocumentAttachedServerFormImpl clientDoc =
(ClientDocumentAttachedServerFormImpl)getClientDocumentAttachedServer();
synchronized(clientDoc)
{
if (!clientDoc.isMarkupLoaded())
{
try { clientDoc.wait(clientDoc.getTimeoutLoadMarkup()); }
catch(InterruptedException ex){ throw new ItsNatException(ex); }
if (!clientDoc.isMarkupLoaded())
throw new ItsNatException("Timeout, client markup is not received",clientDoc);
}
}
super.processResponse();