3

I am making a application in .Net Core ,suddnely this error show: Failed to load resource: net::ERR_HTTP2_PROTOCOL_ERROR and I cannot load my data from database.JSON have some problems. This is photo of this: https://imgur.com/fcFkW4S I didn't change anything in my code ,suddenly this happend and I cannot find solution i read this: whats-the-neterr-http2-protocol-error-about but this didn't help. This is .Net Core fault ? ,on evry browser I have this problem

Krystek
  • 31
  • 1
  • 1
  • 4
  • Does this happen for specific route only? Would you like to share some code? What version of ASP.NET Core do you use? – Alexander Nov 30 '19 at 12:20
  • I am using .Net Core 2.1 >Everything works fine ,but suddenly this error show Here I am loading JSON ```function preload() { let url = '/Boards/Json'; httpGet(url, 'json', function (response) { flag = true; json_object = response; setup(); }); }``` this worked but now It do not load any data – Krystek Nov 30 '19 at 12:31

1 Answers1

4

FWIW - it's related to the size of the JSON data being loaded. I'm getting it in Chrome on a Mac and don't have a fix. On Safari on Mac I get kCFErrorDomainCFNetwork error 303.

alan.raceQs
  • 361
  • 2
  • 11