I m having same problem Dear !
i m developing application in j2me polish
and I have created http connection to get data from php with following link .
and i get connection successful in sony ericson w580i and also in computer on simulator of all types ofhandset and RMS also get created after getting data from gprs .
but when i created same application's jar for N95 using simulator and i put application in N95,N70,(whole N series ) Nokia , i m having problem like .
when i submit url in phone browser , data is available with me ,but when my application try ti fetch data from gprs using application and not getting created RMS also in N95 ?
any buddy pls help me , and suggest me .
pls reply ASAP frnds .i m waiting for yr answers ....
=======================================
HttpConnection http = null;
DataInputStream dis = null;
String URL = "http://www.****.com/******/****.php?"+s;
try
{
http = (HttpConnection) Connector.open(URL, Connector.READ_WRITE, true);
http.setRequestMethod(HttpConnection.POST);
http.setRequestProperty("User-Agent","Profile/MIDP-2.0 Configuration/CLDC-1.1");
dis = new DataInputStream( http.openInputStream() );
System.out.println("inside try");
int ch;
================================
[ April 28, 2008: Message edited by: Pollux
java ]