Hi Ryan,
In version 7.1.2 of RadEditor, we make the blank.html file XHTML compliant by replacing its content with these tags:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" ><head>
<title>Blank Page</title>
</head>
<body></body>
</html>
So when the server hosting the editor application is not connected to Internet, then the blank.html file is not able to
reach the following internet address, <html xmlns="http://www.w3.org/1999/xhtml" > which is causing the error.
When the server is connected to internet, then everything is fine, because the <html xmlns="http://www.w3.org/1999/xhtml" > page is accessible.
By replacing the blank.html file contents with <root></root> tags, you will ensure that
the editor will not need to validate it from the internet and you will no longer get exceptions.
This change will also affect the loading time of the editor and it will increase its loading speed.
Greetings,
Rumen
the Telerik team