By porting my app into wince i get very strange trouble with QHttp.

App send request to SOAP webservice get response, parse XML and shows data or add it to POutlook.... response is always ~ 50kb, max 200 kb.

I use slot (done(bool)) to get response data, and set this data to xml class in this slot with xml.setData(http->readAll()), it works OK in windows version, but it doesn't on wince both with wincewm50standart sdk and wince60professional sdk.... if i do http->readAll() http instance fall into infinity loop and i don't get any data, with read(&data, sizeof(data)) i can get data but http don't want to release itself....... and if i set request to redirect it output in file, like http->request(header, blob, &outfile); all works ok and http finish release itself....

have someone get same problemm?
any idea how to get response without saving it to file ...
Thanks!