Hi,
I wrote Simple Application to communicate with web application using
DataSocket, when Getting Response from the Web page first character is
dulicating 3 more times and overlapiing the rest of the String,
e.g.
When Sending request to URL : I Should get the Data " ERROR -
flex_user_code is missing." back insted i am getting "EEEER -
flex_user_code is missing."
the code i am using is
DS_Open (URL, DSConst_ReadAutoUpdate, DSCallback, NULL, &dsHandle);
and in Callback function
DS_GetDataType (dsHandle, NULL, &size, NULL);
buffer = malloc (size + 1);
DS_GetDataValue (dsHandle, CAVT_CSTRING, buffer, size + 1, 0, 0);
did any one know wht the problem can be ?