Chat freely about anything...

User avatar
By ares.marco
#8244 Hi all,
I'm having trouble with the CIPSEND command.
I've uploaded the AI-v0.9.5.0 AT Firmware(https://drive.google.com/folderview?id= ... sp=sharing) and
I've tried to send a HTTP response like this one "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n"
but the process stops as soon as the \r\n characters are submitted.
So it keep hanging on this situation
> HTTP/1.1 200 OK
If I try to send not formatted HTTP data there are no problems... :cry: :cry:
Any ideas? :idea:

Thanks you all!
User avatar
By Yan78
#8356 same problem here with my attempt to implement arduino web server.

got me one hard day trying to figured out what;s the problem. i found the problem when I installed Fiddler Web Debuger.
Then I could see that when I use AT+CIPSEND and in the message I use \r\n, this is needed in http header, the \r ( 0x0D) is not transmited by ESP8266.

this is the problem. now I'm trying to find answers and what can I do.
firmware I use is 00200.9.5(b1) .

any idea? :idea:
User avatar
By Yan78
#8358 same problem here with firmware 00200.9.5(b1) on esp8266.

the problem I found using Fiddler Web Debugger is that when you try to send \r\n, needed in http header, the esp8266 will only send \n (0x0A) and will ignore \r (0x0D)

and that's a problem.

any ideea how to solve this?