Search found 4 matches

by Maximilian22
Mon Feb 05, 2024 9:13 pm
Forum: ESP-IDF
Topic: Implementation of Server-Sent Events (SSE) in ESP-IDF
Replies: 11
Views: 2980

Re: Implementation of Server-Sent Events (SSE) in ESP-IDF

@Microcontroller: Thank you very much for the instructions, my code is now working as well!
Perfect, cheers,
Max
by Maximilian22
Sun Feb 04, 2024 7:48 pm
Forum: ESP-IDF
Topic: Implementation of Server-Sent Events (SSE) in ESP-IDF
Replies: 11
Views: 2980

Re: Implementation of Server-Sent Events (SSE) in ESP-IDF

@Microcontroller Many thanks a lot for your help! However, I don't get it working (with Arduino IDE I had no problems with SSE). The html site is transferred and executed, the /events URI gets called, and the browser receives an OK 200. But then nothings else works - the ESP32-S3 keeps sending 127 c...
by Maximilian22
Sat Feb 03, 2024 12:22 pm
Forum: ESP-IDF
Topic: Implementation of Server-Sent Events (SSE) in ESP-IDF
Replies: 11
Views: 2980

Re: Implementation of Server-Sent Events (SSE) in ESP-IDF

I've tried that now. My html code is this, and I have to stick with this (EventSource). <!DOCTYPE HTML> <html> <header> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Eventserver</title> </header> <body> <hr> <h1> Test Async Event Source</h1> <br> <p>Complete State: <span...
by Maximilian22
Mon Jan 29, 2024 12:08 pm
Forum: ESP-IDF
Topic: Implementation of Server-Sent Events (SSE) in ESP-IDF
Replies: 11
Views: 2980

Re: Implementation of Server-Sent Events (SSE) in ESP-IDF

I'd like to second this question! What I've found so far is only this: https://esp32.com/viewtopic.php?p=115818 https://esp32.com/viewtopic.php?t=24445#p87263 And maybe also this could help: https://esp32.com/viewtopic.php?t=24445#p87180 But for me that has been not sufficient to achieve anything fu...