-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
HttpClient crashes after HTTP request #3659
Comments
If you change the http.end to: |
Ibernstone, I tried your suggestion, but unfortunately it didn't solve the problem. Adding more traces shown that the ESP32 often crashes before the http.end() is called at all Could the error be related to that I am using a fixed IP address instead of a domain name, and no DNS lookup is done? |
Anybody able to help here? I would really appriciate some help with this. Thanks in advance |
I can't reproduce this (with the URL changed to |
Liebman, yes it is a Raspberry Pi running Windows 10 IoT I inserted details below, do you need anything else? Header from Fiddler Raw content from Fiddler: 2020-02-02 16:54:59;23.88;3.56;2.3; |
OK, I won't be loading Windows IoT on my Pi. I'll set the web server on it up with something that looks similar-ish. |
Great, I really appreciate that. The raw content in my original post doesn't look correctly, since the html part isn't shown as I have written it, but I guess that is not so important, since I have validated the html content |
I've been unable to duplicate the crash with current git version and apache2 configured on a Pi with: (
and the html file: (
|
Liebman Thank you so much for your support, I really appreciate it. I have an extra Raspberry PI laying around, so I will try your example above on that one, it looks fairly simple. Have you run it on Rasbbian on your Raspberry PI, and can I just install it via NOOBS? |
I used Raspbian. |
After a lot of trial and error I managed to get the Apache webserver up and running on Raspbian, and I agree, things worked fine using this webserver, the ESP32 didn't crash here. I noticed that my old server used the following in the http header: But the Apache webserver used: I tried using the same in the header from my original webserver, and voila, now the ESP32 didn't crash anymore. This is a workaround I easily can live with permanently, but I guess it's something the httpCLient should be robust for, and not crash. But thank you very much Liebman, so nice to get the problem solved. |
I'll change the apache configuration I used to disable keep-alive and see if I can reproduce the issue. |
Even with keep-alive disabled in apache I can't reproduce the crashes. |
Same issue. I'm not sure how to change the header from my server. :-( Mostly on http.end() but occasionally elsewhere. Guru Meditation Error: Core 1 panic'ed (LoadProhibited). Exception was unhandled. Backtrace: 0x4015c69c:0x3ffb1ef0 0x400d3297:0x3ffb1f10 0x400d3309:0x3ffb1f30 0x400d1a32:0x3ffb1f50 0x400d1b5a:0x3ffb1f90 0x400d62bd:0x3ffb1fb0 0x40088b9d:0x3ffb1fd0 Rebooting... I'm using a hosted web server. Not sure I can change the header. Wouldn't know how if I could. |
Looks like I have a similar Problem. but in my case it triggers InstrFetchProhibited. |
Hello, My application is to POST a json file to a webpage. Everything works fine using arduino-eps32 v1.0.2 but when using v1.0.3 and 1.0.4 it fails with:
Sometimes it works without problem on first run but fails in the second loop (it also seems to depend on completely unrelated code executed after http.end()). Minimum example of the code showing the issue is:
The response from the webserver to the POST request is:
Message:
I would appreciate any hint on how this issue could be solved, I already spent hours on it with no outcome. |
7d78247#r39308827 maybe related? update: that was changed again afterwards: f4acac4#diff-39b6d5e36cff20acc96b42ef19ad4deb recent fixes, needs checking: esp8266/Arduino#6476 if have the impression that the esp8266 HTTPClient is getting fixes, but the esp32 incarnation misses some. @Jeroen88 could that be the root cause of this issue? |
[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions. |
Maybe usage of stalebot should be reconsidered. It is pointless and even harmful to close unfixed bugs (or like in this case, make people making pointless posts just to avoid closure). |
[STALE_CLR] This issue has been removed from the stale queue. Please ensure activity to keep it openin the future. |
I get the same crash whenever I connect to a webserver that sends the header "connection: close". The crash happens on the second iteration of the loop (the second time connecting). It doesn't happen when I connect to a webserver that doesn't send that header. Does anyone have any ideas? Unfortunately I don't have control over the webserver, it's the webserver built into a weather station. Stripped down code:
|
Aha, I found a workaround. It's ugly, but it seems to work. I had to modify HTTPClient.cpp, which on my Windows system is in C:\Users\USERNAME\AppData\Local\Arduino15\packages\esp32\hardware\esp32\1.0.4\libraries\HTTPClient\src. Comment out these lines, or change the conditional or comment out "_canReuse = false;":
I'm glad to test any changes or alternative versions with this webserver, if anyone needs just let me know. |
Thank you @wrybread. Your method worked for me. |
Thank you @wrybread. I had problems with crashing http.end(), but your method solved the issue |
Hi, was having the same exception issues and managed to solve it by using a different begin function:
|
@apreb that rather looks like some testing code than a modified |
Hello, adding this issue to Roadmap so we will investigate this more. |
Can someone please re-test this against the latest version (2.0.3 currently) |
I have tested the http.end() and didn't crash. Here is the log. [ 30001][D][HTTPClient.cpp:388] disconnect(): still data in buffer (114), clean up. Is this meant to end too WL_CONNECTED? Because I need the reconnect the WiFi. |
Hi @KenthJ, I just tested it on 2.0.4 and it seems to be ok. |
Closing as expired |
Can somebody add a link to the bugfix changeset please? |
Just to add to the noise here, I was having this issue and spinning up a new instance of It's messy and won't work for 100% of cases, but for simple I went from this:
to this:
|
has this been solved yet ? |
Board: ESP-WROOM-32
IDE name: Arduino IDE version 1.0.4
Flash Frequency: 80Mhz
PSRAM enabled: No
Upload Speed: 921600
Computer OS: Windows 10
Hi
Please bear with me, I'm completely new in this ESP32 world.
I'm trying to make a very simple HTTP request from my ESP32 towards a webserver which is running on a Raspberry Pi running Win 10 IOT, I have been banging my head for several hours and days trying to solve my problem below.
In most cases the code succeeds getting a response as expected, but when I call http.end() it crashes, sometimes with Guru Meditation Error: Core 1 panic'ed (InstrFetchProhibited), other times with (LoadProhibited).
If I instead use any other URLs instead of my own webserver, everything works fine.
When I test the URL of my Raspberry PI webserver with a normal internet browser on my PC, or using Fiddler everything works fine too.
The strange thing is that it only crashes when it sends a http req to my homemade webserver, it works fine with all other webservers.
I double checked my http header from the server, and also added "Content-Type: text/html" "Date:....." and "Server:..." to the header.
Further more I checked the header and html response using a program called Fiddler and using FireFoxs Inspector tool, and I really can't see any problem with it, but there must be something in the response from my webserver causing the crash
Output from Serial monitor with debug traces enabled:
Output from ESP Exception decoder:
The text was updated successfully, but these errors were encountered: