Making an HTTP Request on BlackBerry

Seems like it is rather complex to make a simple HTTP request on BlackBerry.  The code for opening a connection is straightforward: String url = “http://10.0.0.1″; HttpConnection conn = conn = (HttpConnection)Connector.open(url); The complexity comes in because I am developing on a  BlackBerry device without service.  When I try to execute the above code, I [...]