[android-beginners] Re: Http 407 error whith Android SDK Updater revision 3 : proxy authentification failure

2009-11-20 Thread om
I am having the same problem on linux with Java 1.6 On Nov 6, 3:59 pm, albreche wrote: >  On windows XP, with Java 1.6, i can't set the proxy authentification > parameters in the setting windows of Android SDK Updater v3. > >  I 've tried to add http.proxyPass and http.proxyUser in the > android.

[android-beginners] Re: http://developer .android.com 被墙了 大家有什么好的跳墙软件推荐啊 ?

2009-10-21 Thread Freeman Zhang
You can try : http://sites.google.com/a/android.com/opensource/ http://androidappdocs.appspot.com Freeman 2009/10/21 刘永宽 > 如题! > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android B

[android-beginners] Re: HTTP Connect Problem

2009-10-12 Thread Indicator Veritatis
On Oct 9, 11:22 pm, Samuh wrote: > If I am interpreting you correctly, you can do something like(pseudo > code): > > //create an instance of HttpClient class > HttpClient httpclient = new DefaultHttpClient(); > > // Prepare a request object > HttpGet httpget = new HttpGet(url); > > // Execute t

[android-beginners] Re: HTTP Connect Problem

2009-10-10 Thread jbrohan
Here is an example of this http://www.androidsnippets.org/snippets/36/ On Oct 10, 2:22 am, Samuh wrote: > If I am interpreting you correctly, you can do something like(pseudo > code): > > //create an instance of HttpClient class > HttpClient httpclient = new DefaultHttpClient(); > > // Prepare a

[android-beginners] Re: HTTP Connect Problem

2009-10-09 Thread Samuh
If I am interpreting you correctly, you can do something like(pseudo code): //create an instance of HttpClient class HttpClient httpclient = new DefaultHttpClient(); // Prepare a request object HttpGet httpget = new HttpGet(url); // Execute the request HttpResponse response = httpclient.execute

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-07 Thread David Turner
2009/5/7 a druid > > I think the emulator should be fixed, especially as the doc > suggests using -htt-proxy. > Absolutely, and I'm working on it, I was just clarifying that the incorrect TCP checksums cannot be caused by the emulator. > > Additionally the dog suggests to use the switch -verbo

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-07 Thread a druid
Same problem for me. Neither the commandline switch -http-proxy nor changing the sql database. The only thing that worked was Settings - Wireless controls - Mobile networks - Access Point as mentioned on yyour suggested solution. I think the emulator should be fixed, especially as the doc sug

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-06 Thread David Turner
the emulator is just a "normal" program that uses the standard Winsock interface to access the network. If you have TCP checksum errors on a real network, this can only come from buggy network drivers, I'm afraid, since there is no way the emulator itself is generating these. That's really weird...

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-06 Thread Fabien Marchewka
solution here : http://groups.google.com/group/android-developers/browse_thread/thread/efb4c6884f42dad7/b079f8fcb2b0e9af?lnk=gst&q=proxy+1.5#b079f8fcb2b0e9af work for me. But it will be fine to correct the error with -http-proxy On 5 mai, 18:23, David Turner wrote: > 2009/5/5 stevensli > > > >

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-06 Thread Fabien Marchewka
I can't see my last response. So I post again. Same problem with XPSP3 no firewall, no antivirus, ... can't open trace vith traceview but i can send it. With Wireshark, I have Incorrect tcp checksum. Log : No. TimeSourceDestination Protocol Info 1 0.00172.

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-06 Thread Fabien Marchewka
sorry for my last response but it only works with the integrated browser not for mail or other internet apps. Same error on tcp checksum. On 5 mai, 18:23, David Turner wrote: > 2009/5/5 stevensli > > > > > The version of Windows I am running is XP SP3, 32bit. Can this > > problem be solved by

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-06 Thread Fabien Marchewka
Same problem on windows XP 32 bits SP3. No firewall and no antivirus, antispam ... I have trace but it seems to be not supported by traceview. I have packets with incorrect tcp checksum from my host to proxy host. host ip : 172.16.124.133 proxy ip : 172.18.251.23 log with wireshark : No. Time

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-05 Thread David Turner
2009/5/5 stevensli > > The version of Windows I am running is XP SP3, 32bit. Can this > problem be solved by adjusting the configuation of the emulator? > Thanks! > I'm just speculating at the moment, but I doubt it's related to the emulator's configuration. Essentially, the emulator doesn't d

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-05 Thread stevensli
The version of Windows I am running is XP SP3, 32bit. Can this problem be solved by adjusting the configuation of the emulator? Thanks! On May 5, 11:50 pm, David Turner wrote: > thanks for posting the details, they are helpful. Which exact version of > Windows are you running ? XP or Vista, 32

[android-beginners] Re: -http-proxy can't work in emulator with 1.5 sdk

2009-05-05 Thread David Turner
thanks for posting the details, they are helpful. Which exact version of Windows are you running ? XP or Vista, 32 or 64 bit ? thanks in advance On Mon, May 4, 2009 at 12:05 PM, stevensli wrote: > > The -http-proxy works fine for emulator with 1.1r1 sdk, but not work > for emulator with 1.5r1 s

[android-beginners] Re: HTTP headers manipulation

2009-04-23 Thread myandroid
Thanks for the info, Mark. This exactly answers my questions. I was trying to modify the HTTP headers while using the webkit and it appears that only the User-Agent is exposed via an API while the HTTPClient setHeaders API is hidden in the webkit and not exposed via WebSettings API. On Apr 21, 3:

[android-beginners] Re: HTTP headers manipulation

2009-04-21 Thread Mark Murphy
myandroid wrote: > Is there a standard way in Android to add custom HTTP headers to HTTP > requests originating from an application. If you are using HttpClient, yes. If you are using URLConnection, I think so. If you are using anything else (raw sockets, WebView, etc.), no. And all of those

[android-beginners] Re: HTTP Post

2009-04-20 Thread Avron Olshewsky
Hi, To form you url you will have to append parameters like so params.append(URLEncoder.encode( "somevalue", "UTF-8")).append("=").append(URLEncoder.encode(somevalue, "UTF-8")) .append( "&").append(URLEncoder.encode("someothervalue", "UTF-8")).append("=").append(URLEncoder.encode(someothervalu

[android-beginners] Re: HTTP Post

2009-04-19 Thread Mark Murphy
Do not cross-post. All you do is irritate the people who you want to have help you. > I have > a server running on my computer. I know the URL needs to be my IP > address and port number. Most likely, you want to use 10.0.2.2 and your port number. http://developer.android.com/guide/developing/t

[android-beginners] Re: http://www.fashion4biz.com china cheap wholesale nike shoes,air jordan shoes,air force one shoes.paypal accept! Get Nike Shoes at Super Cheap Prices

2009-02-19 Thread Jackie Lee
Can google groups filter this kind of junk mails? It really bothers. On Fri, Feb 20, 2009 at 9:29 AM, zhendeyu...@gmail.com wrote: > > Get Nike Shoes at Super Cheap Prices > Discount Nike air jordans (www.fashion4biz.com) > Discount Nike Air Max 90 Sneakers (www.fashion4biz.com) > Discount Ni

[android-beginners] Re: HTTP POST-Reply sample

2008-10-12 Thread Hans
Hi Ricardo thanks for your help. Do you have any sample code/project with HttpURLConnection which i can use on SDK 0.9 please? Thanks On Oct 12, 4:48 pm, Ricardo <[EMAIL PROTECTED]> wrote: > Hi, > > have you tried the HttpURLConnection ? > > -- >         URL u = new URL(url); > >         HttpURL

[android-beginners] Re: HTTP POST-Reply sample

2008-10-12 Thread Ricardo
Hi, have you tried the HttpURLConnection ? -- URL u = new URL(url); HttpURLConnection conn = (HttpURLConnection) u.openConnection(); conn.setRequestMethod("POST"); conn.setDoOutput(true); conn.setDoInput(true); conn.connect(); OutputStr

[android-beginners] Re: HTTP

2008-10-03 Thread sarika
i got it how to use http connecttion thanks On Sep 25, 7:52 pm, Mark Murphy <[EMAIL PROTECTED]> wrote: > sarika india wrote: > > i am working on HTTP conntection for android, but i have not yet > > worked on HTTP connection code for any language, > > does anybody know how to do HTTP connection

[android-beginners] Re: Http Post connection in SDK-1.0

2008-09-29 Thread Megha Joshi
The Http POST connection should work as it did in 0.9. Could you post some code so that we can help in porting it... 2008/9/29 Nemat <[EMAIL PROTECTED]> > > Hi, > I am using Android SDK-1.0.I was able to make Http post connection > with server in SDK-0.9.How can this be done using new SDK? > > Th

[android-beginners] Re: HTTP

2008-09-25 Thread Mark Murphy
sarika india wrote: > i am working on HTTP conntection for android, but i have not yet > worked on HTTP connection code for any language, > does anybody know how to do HTTP connection in android? Use URLConnection, or the Apache HTTPComponents (org.apache.http) built into Android. URLConnection