how to find the end of soap message recieved from server over ssl connection in c++
- by user323422
i am reading soap message from server over ssl connection using SSL_read(m_pssl,f_data,f_datalen) but it reading 265 bytes first.
then i again called SSL_read() and it reads rest of message + starting of message.
Can anyone tell me how to find the end of message over server over ssl connection?