dear Salman, plz try to survey this package: org.apache.http this package, there will have all you need in HTTP request/response
get a HTTP client: mHTTPClient = new DefaultHttpClient(); create a POST request from pre-defined URI: HttpPost post = new HttpPost(uri); (you need to implement HttpRequestCreator.createRequest (uri) for this) add extended HTTP headers: request.addHeader(name, value); send request and get response: response = mHTTPClient.execute (request); close a HTTP connection: mHTTPClient.getConnectionManager().shutdown (); On 11月27日, 下午10時45分, "salman.geek" <[EMAIL PROTECTED]> wrote: > Please Help me out imn waiting for an urgent reply... > > > > Hi to all... > > > I want to send an Http Request to a url which will give me the images > > > which i want to show at ma screen.In this call i will provide the > > > image id which i want. > > > So im having problem in creating and sending an http call and > > > receiving the image from that call.. > > > Please help me ASAP.... > > > > Regards.... > > > Salman Khursheed- Hide quoted text - > > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

