Hola
Esto intentando subir ficheros con anthem the gran tamaño. He configurado para que el servidor permita subir hasta 4 MBs con los sgtes params en el web.xml:
MaxRequestLength
requestLengthDiskThresold
El problema esta que cuando supero los 4 MBs el siguiente error es lanzado:
The problem is that the following error is launched when i put a file large than 4096:
unction Anthem_ExtractIFrameDocument(iFrameEl) {
var doc = null;
if (iFrameEl.contentDocument) { // For NS6
doc = iFrameEl.contentDocument;
} else if (iFrameEl.contentWindow) { // For IE5.5 and IE6
doc = iFrameEl.contentWindow.document; --> Linea dnd da el error
} else if (iFrameEl.document) { // For IE5
doc = iFrameEl.document;
} else {
//alert("Error: could not find iFrame document");
return null;
}
return doc;
}
Que puedo hacer?
Borja