[android-developers] Re: http connection to display a webpage

2011-08-30 Thread jesb
i was having the same problem. figured it out here. http://digitallibraryworld.com/?p=189 On Aug 9, 12:02 am, arun kumar wrote: > The backend database is MySQL and their web server is PHP...by using this > how can i get the webpage displaycan anyone give me guidance -- You received this me

Re: [android-developers] Re: http connection to display a webpage

2011-08-08 Thread arun kumar
The backend database is MySQL and their web server is PHP...by using this how can i get the webpage displaycan anyone give me guidance -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develope

[android-developers] Re: http connection to display a webpage

2011-08-08 Thread Lakshmi Priya
On Aug 8, 10:39 am, Ratheesh Valamchuzhy wrote: > Hi Arun > > While sending an http request we cant get (display the webpage)  we get a > response such as xml or json , we need to parse the response and retrive th > edata as needed.   if u want to display the we page u can use webview. > > thank

[android-developers] Re: http connection failed via a proxy

2009-04-28 Thread x li
Hi, Any suggestions? Thanks 2009/4/27 hrlixi...@gmail.com > > hi guys, > > I have set up proxy in the sdk emulaotor and can access internet via > the proxy in the browser. > but this does not work for my http connection application, it gives > "Unknown host exception" > i have used -dns-server o

[android-developers] Re: http connection

2008-10-10 Thread for android
This can help u probably... http://developerlife.com/tutorials/?p=290 Thanks Guru On Thu, Oct 9, 2008 at 8:31 PM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Yes, evidently. > But, its doesn't work. > My code : > > DefaultHttpClient httpclient = new DefaultHttpClient(); >HttpHost

[android-developers] Re: http connection

2008-10-09 Thread [EMAIL PROTECTED]
Yes, evidently. But, its doesn't work. My code : DefaultHttpClient httpclient = new DefaultHttpClient(); HttpHost targetHost = new HttpHost(My_URL); HttpRequest req = new BasicHttpRequest("GET", "/", HttpVersion.HTTP_1_1); HttpResponse response=null; //uses proxy

[android-developers] Re: http connection

2008-10-08 Thread Mark Murphy
[EMAIL PROTECTED] wrote: > hey everybody. > > I'd like tu do a Http connection to a server with this lib : > org.apache.http.*; > > But, that's very difficult to me. i'm lost in all the interface & > class. > > So, if someone can describe me the different programming step or give > me some tuto