Issue
my ojet application does not work in mozilla firefox or internet explorer. It says in Mozillas console:
The character encoding of the plain text document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the file needs to be declared in the transfer protocol or file needs to use a byte order mark as an encoding signature. localhost:8443
Solution
Try adding below tag by specifying encoding type in your view page i.e html file. Refer this thread for more information.
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
Answered By - Alien
Answer Checked By - Marie Seifert (JavaFixing Admin)