ArduinoGeneral

TEL0124, W7600CE-T, HTTP PROBLEM

userHead Account cancelled 2020-07-24 01:47:58 950 Views2 Replies
Hello!
I have problem with HTTP content received from W7600CE-T.
Here is commands to get HTTP content from Web:
Code: Select all
SENT: AT+HTTPINIT

RECV: AT+HTTPINIT

OK

SENT: AT+HTTPPARA="URL","http://mdss.limic.com/test.php?aaa=123"


RECV: AT+HTTPPARA="URL","http://mdss.limic.com/test.php?aaa=123"

OK

SENT: AT+HTTPACTION=0



RECV: AT+HTTPACTION=0

OK

+HTTPACTION: 0,200,148

+HTTP_PEER_CLOSED

SENT: AT+HTTPREAD=0,148

RECV: AT+HTTPREAD=0,148

OK

aaa] => 123
)
POST Parameters:
Array
(
)
c=123;sdf=234;efg=12938129381;janko_hrasko=1020304050;
GET Parameters:
Array
(
    [aaa] => 123
)
POST Parameters:
Array
(
)

+HTTPREAD:0


SENT: AT+HTTPTERM

RECV: AT+HTTPTERM

OK
This is valid content:
TEST SIM7600CE-T abc=123;sdf=234;efg=12938129381;janko_hrasko=1020304050; GET Parameters: Array ( [abc] => 123 ) POST Parameters: Array ( )

This is received from W7600CE-T:
aaa] => 123
)
POST Parameters:
Array
(
)
c=123;sdf=234;efg=12938129381;janko_hrasko=1020304050;
GET Parameters:
Array
(
[aaa] => 123
)
POST Parameters:
Array
(
)

This problem is with any page. The content is incomplete or damaged.

I'm using Arduino Mega 2560 R3 with 9V external power source.
All works ok, but i can not get valid web content.

What is wrong ?
Thanks for help.