I am calling a web service from BlackBerry using J2ME code. When I try to open a connection using HttpConnection, it is checking only the GPRS connection. Now
HttpConnection
Check this way:
HttpConnection conn = null; String URL = "http://www.myServer.com/myContent;deviceside=true;interface=wifi"; conn = (HttpConnection)Connector.open(URL);
source