Yes, I can confirm this works in Linux but not on Windows.

I am a newbie, how do we reports this as a bug on the windows sdk
version?

Regards,
   Corrie

On Mar 18, 5:07 pm, David Turner <di...@android.com> wrote:
> It looks like I can't reproduce this on Linux and OS X, I guess you're all
> on Windows, right ?
>
> On Wed, Mar 17, 2010 at 11:50 PM, Tony <liuguolong...@gmail.com> wrote:
> > Any idea for this problem?
>
> > On Mar 17, 8:42 pm, ademiguelglez <ademiguelg...@gmail.com> wrote:
> > > I'm stuck with the same problem.
> > > Any help?
>
> > > Regards,
> > > Alejandro.
>
> > > On 22 feb, 10:19, Vibhor Mahajan <mahajan.vib...@gmail.com> wrote:
>
> > > > I am not able to access Internet from Android web browser but Internet
> > > > is accessible from Development machine's web browser. Yes, Internet
> > > > access using Android web browser is OK using Android 1.6 by Settings
> > > >proxyusing APN settings.
>
> > > > Any help of accessing Internet from Android 2.1?
>
> > > > Regards,
> > > > Vibhor
>
> > > > On Feb 20, 3:34 am, Sam Dutton <sam.dut...@gmail.com> wrote:
>
> > > > > I'm no expert, but it looks like you might be having trouble with the
> > > > >proxyrather than troublesettingaproxyfrom Android.
>
> > > > > Can you use theproxyelsewhere, e.g. from a web browser?
>
> > > > > You say thatsettingtheproxyworked until Android 1.6 -- can you use
> > > > > theproxyif you use an early SDK version?
>
> > > > > Here are some ways to use theemulatorbehind aproxy-- not sure
> > > > > which of these you've tried.
>
> > > > > 1. Set the defaultproxyfrom Windows > Preferences > Android >
> > > > > Launch.
>
> > > > > 2. Add '-http-proxyhttp://www.example.com:80'toDebugConfigurations>
> > Target (pane) > AdditionalEmulatorCommand Line
>
> > > > > Options (you need to resize the dialog to see this).
>
> > > > > 3. Set theproxyon theemulatorfrom Settings > Wireless controls >
> > > > > Mobile Networks > Access Point Names > T-Mobile US > ...
>
> > > > > For me, none of these works on its own -- though a colleague tells me
> > > > > that 2. works on his Mac.
>
> > > > > What works best for me in most contexts is to set theproxyon the
> > > > >emulator(as per 3.) and then use the following in my code:
>
> > > > > final String proxyHost = android.net.Proxy.getDefaultHost();
> > > > > final int proxyPort = android.net.Proxy.getDefaultPort(); // returns
> > > > > -1 if not set
> > > > > if (proxyPort != -1)
> > > > > {
> > > > >         System.setProperty("http.proxyHost", proxyHost);
> > > > >         System.setProperty("http.proxyPort",
> > > > > Integer.toString(proxyPort));
>
> > > > > }
>
> > > > > With DefaultHttpClient, I do this:
>
> > > > > client = new DefaultHttpClient();
>
> > > > > String proxyHost = android.net.Proxy.getDefaultHost();
> > > > > int proxyPort = 0;
> > > > > proxyPort = android.net.Proxy.getDefaultPort();
> > > > > if (proxyPort > 0) // !!!hack: this means that aproxyhas been set
> > > > > {
> > > > >         HttpHostproxy= new HttpHost(proxyHost, proxyPort);
>
> > client.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY,
> > > > >proxy);
>
> > > > > } else {
>
> > > > >         Log.d("Proxycould not be set for port: ",
> > > > > Integer.toString(proxyPort));
>
> > > > > }
>
> > > > > Sam Dutton
>
> > > > > On Feb 19, 12:37 pm,VibhorMahajan <mahajan.vib...@gmail.com> wrote:
>
> > > > > > Hello,
>
> > > > > > I am trying to configure http_proxy settings for Internet access
> > from
> > > > > > Androidemulator(behind aproxy). I tried following options:
>
> > > > > > 1. -http-proxyoption usingemulatorcommand.
> > > > > > 2.settinghttp_proxy environment and then launching theemulator.
> > > > > > 3. Settingsproxyusing APN settings (Telkilla) (this worked till
> > > > > > Android 1.6 version)
> > > > > > 4. adding an entry in settings.db <adb shell  sqlite3 /data/data/
> > > > > > com.android.providers.settings/databases/settings.db "INSERT INTO
> > > > > > system VALUES(101,'http_proxy','10.0.0.27:80');">
> > > > > > adb shell  sqlite3
> > /data/data/com.android.providers.settings/databases/
> > > > > > settings.db "SELECT * FROM system"
>
> > > > > > I also checked -debug-proxylog messages and it showed below
> > messages
> > > > > >emulator.exe -avd avd_21 -debug-proxy-http-proxy
> > > > > > http://vibhor.mahajan:xyz~1...@10.0.0.27:80
> > > > > > proxy_http_setup: creating httpproxyservice connecting to:
> > > > > > 10.0.0.27:80
> > > > > > server name '10.0.0.27' resolved to 10.0.0.27:80
> > > > > > proxy_http_setup: creating HTTPProxyService Footer is (len=63):
> > > > > > 'Proxy-authorization: Basic dmliaG9yLm1haGFqYW46eHl6fjEyMzQ=
>
> > > > > > '
> > > > > > http_service_connect: trying to connect to 209.85.231.104:80
> > > > > > http_service_connect: using HTTP rewriter
> > > > > > tcp:209.85.231.104:80(1496): cannot connect toproxy: <unknown
> > error>
> > > > > > http_service_connect: trying to connect to 209.85.231.104:80
> > > > > > http_service_connect: using HTTP rewriter
> > > > > > tcp:209.85.231.104:80(1496): cannot connect toproxy: <unknown
> > error>
> > > > > > http_service_connect: trying to connect to 209.85.231.104:80
> > > > > > http_service_connect: using HTTP rewriter
> > > > > > tcp:209.85.231.104:80(1456): cannot connect toproxy: <unknown
> > error>
> > > > > > http_service_connect: trying to connect to 209.85.231.104:80
> > > > > > http_service_connect: using HTTP rewriter
> > > > > > tcp:209.85.231.104:80(1440): cannot connect toproxy: <unknown
> > error>
> > > > > > http_service_connect: trying to connect to 10.0.0.22:80
> > > > > > http_service_connect: using HTTP rewriter
> > > > > > tcp:10.0.0.22:80(1440): cannot connect toproxy: <unknown error>
> > > > > > http_service_connect: trying to connect to 10.0.0.22:80
> > > > > > http_service_connect: using HTTP rewriter
> > > > > > tcp:10.0.0.22:80(1440): cannot connect toproxy: <unknown error>
>
> > > > > > Kindly suggest how can we access Internet fromemulator(behind a
> > > > > >proxy).
>
> > > > > > Thanks,
> > > > > >Vibhor
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Developers" group.
> > To post to this group, send email to android-developers@googlegroups.com
> > To unsubscribe from this group, send email to
> > android-developers+unsubscr...@googlegroups.com<android-developers%2bunsubscr...@googlegroups.com>
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.

Reply via email to