There is a problem occurs when I testing my application which uses HTTP POST method to send the information to server on the mobilephone(n95),when this application was running on the emulator,it is right, the server can receive the HTTP package like this:
POST / HTTP/1.1
Host: localhost
Accept: text/*
User-Agent: MyBlog(1.0)
Content-Length: 9
Content-Type: text/plain
Name=Wang
this is what I expected, but when I test on the mobliephone(useing WLAN to connect with the server which is running on the notebook and is connecting with same AP),the server can't receive the right package like this:
POST / HTTP/1.1
Host: 192.168.0.110
Accept: text/*
User-Agent: WebClient 1.0
Content-Length: 9
Content-Type: text/plain
X-Nokia-MusicShop-Version: 1.0.0
X-Nokia-MusicShop-Bearer: WLAN
that is the body part of HTTP package disappeared,but the I can still see Content-Length: 9,and the last two line is automactic appended, so my post method failed like this, please help me, thank a lot




