Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making HTTP connections to server to get some data. It works on most devices, but I'm getting this error on Sony Ericsson P1i.

I have found error description:

KErrHttpInvalidHeaderInRequest   -7334
Request contained a response header or a entity header but no body

Body should exists, I mean, data is not zero-length, and other devices with the same SIM-card and internet settings could get it in.

Please help, if you know something.

share|improve this question
try logging the request and post it here – ax. Sep 1 '09 at 11:03

1 Answer

up vote 2 down vote accepted

I've fixed it!

The problem was in request properties. I remove all these methods:

connection.setRequestProperty("...", "...");

and it works :)

share|improve this answer
I've the same problem. I'm trying to read an audio streaming for blackberry and it gives me an error opening the streaming. I've comment all the connection.setRequestProperty...but nothing changes – jmunoz Mar 4 at 10:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.