Hi,
I have created http_client_get call using NetX (SSP 1.3.0) as shown below .
status_1 = nx_http_client_get_start(&g_http_client0, IP_ADDRESS(192,168,0,3),
"/test.htm", NX_NULL, 0, "name", "password", 50);
status_2 = nx_http_client_get_packet(&g_http_client0, &my_packet, 20);
My own simple python server running on 192.168.0.3. and server logging like "192.168.0.2 - - [22/Dec/2017 11:17:39] "GET /test.htm HTTP/1.0" 200 -" . and successfully returning the response . but my nx_http_client_get_start returning int 234(0xEA). According to Netx documentation this value is HTTP Client not ready . Can somebody point my mistake or a working example which can i learn ? .
Thanks ..