Chrome issue : "Failed to load resource: net::ERR_CONNECTION_TIMED_OUT " - javascript

I tried to access my web application via HTTPS. It fails to load JavaScript files and shows "Failed to load resource: net::ERR_CONNECTION_TIMED_OUT". But it is working as expected in IE and Firefox. It is also working fine in Chrome via HTTP.

I started having this problem after installing the latest release of chrome 46.0.2490.80 m in an attempt to solved my previous problem of chrome displaying garbage on some sites or documents.
in my case it happens on jquery load calls. I tried to reinstall from scratch, but could not resolve the issue. I am running a local development wamp server.
For now I circumvented the problem by not using jquery. By the way the jquery calls have no problems in IE.

Related

Failed to load resource: net::ERR_FILE_NOT_FOUND when using Google Chrome in Manjaro

I am attending an online course about JavaScript and ancounter an error I cannot solve.
The course uses Google Chrome and suggest using it to for the duration of the course. I am on Manjaro and installed Google Chrome using flatpak. It worked fine so far.
Now I have a index.html file with a link to a JavaScript-File named script.js.
When I start index.html with Firefox or Brave, everything works fine, but when I use Google Chrome I get an error: Failed to load resource: net::ERR_FILE_NOT_FOUND
I discovered, that Google Chrome refers to the location file:///run/user/1000/doc/16d6cd2a/index.html to load the html-file but my project is under /home/user/dev and I started it from there too. My script.js only exists in my project folder and not in the other folder (that I didn't create by myself and I don't know where it comes from).
Does anyone have an idea what I can do to solve that? I think it has something to do, that I installed Chrome with Flatpak, but I am not sure about this. But as I said, all other browsers I tested work fine and open the index.hmtl from the correct source and therefore find the script.js as well.

JS and CSS fail to load in Chrome, intermittently (25%). Getting an ERR_CONNECTION_RESET error

I am running a Flask web app on localhost, for development. I do a Ctrl+F5 (after I have made a change to JS or CSS). Once in 3-4 such instances I get ERR_CONNECTION_RESET errors in the Chrome console, for SOME of the external JS/CSS (Bootstrap, Jquery etc) that I am fetching from CDNs. But there's no pattern to it. I am getting this from MaxCDN, cdnjs.cloudflare.com, and code.jquery.com, but not all at once.
Some of these errors are:
GET https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css net::ERR_CONNECTION_RESET
GET https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2 net::ERR_CONNECTION_RESET
GET https://code.jquery.com/ui/1.12.1/jquery-ui.js net::ERR_CONNECTION_RESET
I am getting similar issues in Firefox:
Loading failed for the <script> with source “https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js”.
This is happening only on my laptop. On another laptop, running the same code on that laptop's localhost, and accessed and hard refreshed through that laptop's browser works fine.
This issue started occurring only recently after I reinstalled Windows on my laptop.
I looked at some of the other questions on SO such as this, but that didn't help.

Webworker served from the local filesystem not working

I am trying to make the web worker example from MDN to work when it is not served from a server but opened directly open from my local filesystem (via a via file:// URL)
The example works fine when served from Apache at http://localhost/1/simple-web-worker-gh-pages/index.html
but it doesn't when it is read locally at file:///var/www/html/1/simple-web-worker-gh-pages/index.html
The developer console shows that messages are posted but there is no answer from the worker. (I tried both Firefox and Chromium.)
How can I make it to work ?
(There's a similar question failed to load script - Webworker (PDF.JS) , but my problem is different, as I don't see a "Failed to load script" error.)
Avoid developing using file:/// - you'll waste time debugging, as not everything is supposed to work there.
In case of Worker() in Firefox, this was supported a year ago, but was apparently disabled in Firefox 68.
See Firefox 68: local files now treated as cross-origin; is there a way to override? - if you set privacy.file_unique_origin to false in about:config, the example should work.

net::ERR CONTENT LENGTH MISMATCH in Chrome with Jboss WildFly 8.2

I have JBoss wildFly 8.2 Up & Running on a windows machine with my war file deployed.
but my web page not able to load JS file and it shows error message in the web console as follows:-
"Failed to load resource: net:: ERR_CONTENT_LENGTH_MISMATCH"
I dig into the issue and found that server not able to load actual file size.
my js file is about to 90kb but server load 18kb and failed to load js file.
how to resolve this issue.
is this a Jboss configuration issue or Chrome issue.
please help me out.
I don't think it is related to jboss. I had the same issue of "net:: ERR_CONTENT_LENGTH_MISMATCH" when I was receiving a huge response in an ajax callback. It was working absolutely fine on Firefox and IE but the console error was there on chrome. Because of this the response was not loading on the UI. After further research I got to know, that Chrome was throwing this error for a special character i.e. "Æ" which was part of my json response body content. However, IE and Firefox were not having any complaint about this.
I corrected the DB value and removed the above special character from the server end. Everything started working fine on chrome as well.
My suggestion to check the body response you are sending from server end. It could be server side fix.
Regards,
Manoj

Angular JS "SCRIPT5007: Object expected" error in IE9 and IE10 upon loading the angular library

I am developing an AngularJS application that should run on Firefox and IE 9 and IE 10.
I use the latest version of angularjs library (now it is 1.3.15).
The serverside is written in Java in JavaEE platform and server runs on GlassFish, and our computers run windows 7.
Everything works fine when I am running the server locally on my computer and access my application using the http://localhost:8080 url.
But in IE9 and IE10, when I try to load the application from my server by using my ip address (something like http://191.10.10.200:8080) then angularJS library fails to load. It gives an error saying:
SCRIPT5007: Object expected
angular.min.js, line 7 character 218
Can this be an issue with the security settings of IE? Or the network?
I looked for similar issues but none was talking about this problem. Please help me if have an idea how can this be resolved.
I had the same error which only occurred in IE9 and IE10 when I was loading a page requiring AngularJS.
My page was simply missing the DOCTYPE header from the top of the page:
<!DOCTYPE html>
Once I added it AngularJS loaded just fine for me.

Categories

Resources