https://bz.apache.org/bugzilla/show_bug.cgi?id=63346

--- Comment #4 from Alex <[email protected]> ---

On Development server my code works. The problem is on IBM testing server where
i have a corrupted xlsx. On IBM server I can only deploy the war on weblogic
On development server i also use weblogic . 

In Front End 

function base64ToArrayBuffer(base64) {
var binaryString = window.atob(base64);
var binaryLen = binaryString.length;
var bytes = new Uint8Array(binaryLen);
for (var i = 0; i < binaryLen; i++) {
   var ascii = binaryString.charCodeAt(i);
   bytes[i] = ascii;
}
return bytes;
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to