Hi, just wrote my first app for Android :) But when I press "home" and then -> Browser I can see only Google start page. But when I try to load any other page - "error 32"...
> Hi, just wrote my first app for Android :) > But when I press "home" and then -> Browser I can see only Google > start page. > But when I try to load any other page - "error 32"...
I wish you were right, but there is no firewall, just direct internet connection without proxy. I've also disable windows firewall... Don't understand what's wrong :(
On Nov 13, 12:09 am, mviswan1 <mahadeva...@gmail.com> wrote:
> pbly becasue you are behind a firewall. You can override your proxy > settings in eclipse IDE. But it still does not have effect on the > emulator.
> On Nov 12, 4:38 pm, Gothy <dmitry.ut...@gmail.com> wrote:
> > Hi, just wrote my first app for Android :) > > But when I press "home" and then -> Browser I can see only Google > > start page. > > But when I try to load any other page - "error 32"...
Hi, I have the same problem :( And I don't understand what could it be. I'm connected directly to adsl internet, I've my Windows firewall shut down, I did the same with Kaspersky AV. So I don't have any of sequrity programs running, and I get the Error 32 never the less... The more I'm puzzled because of my collegues, which are in the same network as me with the same settings and all, and they have emulator working! Please help... What does this error particulary mean???
On Nov 13, 2:24 am, Gothy <dmitry.ut...@gmail.com> wrote:
> I wish you were right, but there is no firewall, just direct internet > connection without proxy. I've also disable windows firewall... Don't > understand what's wrong :(
> On Nov 13, 12:09 am, mviswan1 <mahadeva...@gmail.com> wrote:
> > pbly becasue you are behind a firewall. You can override your proxy > > settings in eclipse IDE. But it still does not have effect on the > > emulator.
> > On Nov 12, 4:38 pm, Gothy <dmitry.ut...@gmail.com> wrote:
> > > Hi, just wrote my first app for Android :) > > > But when I press "home" and then -> Browser I can see only Google > > > start page. > > > But when I try to load any other page - "error32"...
> pbly becasue you are behind a firewall. You can override your proxy > settings in eclipse IDE. But it still does not have effect on the > emulator.
> On Nov 12, 4:38 pm, Gothy <dmitry.ut...@gmail.com> wrote:
> > Hi, just wrote my first app for Android :) > > But when I press "home" and then -> Browser I can see only Google > > start page. > > But when I try to load any other page - "error 32"...
> Hi, just wrote my first app for Android :) > But when I press "home" and then -> Browser I can see only Google > start page. > But when I try to load any other page - "error32"...
Same thing here. I get the "error 32" message as well.
I would like to suggest to the android developer to make sure the application gives a better diagnostic than "error 32" which does not really help to figure out the nature of the problem.
On Nov 12, 10:38 pm, Gothy <dmitry.ut...@gmail.com> wrote:
> Hi, just wrote my first app for Android :) > But when I press "home" and then -> Browser I can see only Google > start page. > But when I try to load any other page - "error32"...
> Same thing here. I get the "error 32" message as well.
> I would like to suggest to the android developer to make sure the > application gives a better > diagnostic than "error 32" which does not really help to figure out > the nature of the problem.
> On Nov 12, 10:38 pm, Gothy <dmitry.ut...@gmail.com> wrote:
> > Hi, just wrote my first app for Android :) > > But when I press "home" and then -> Browser I can see only Google > > start page. > > But when I try to load any other page - "error32"...
> This is a network error. It happens when the server or proxy hostname > lookup failed. > I've reported your request for a more helpful diagnostic message.
> This is a networkerror. It happens when the server or proxy hostname > lookup failed. > I've reported your request for a more helpful diagnostic message.
> Thanks, > Luisa
> On Nov 13, 2:52 pm, Laurent <mr.l.gauth...@gmail.com> wrote:
> > Same thing here. I get the "error32" message as well.
> > I would like to suggest to the android developer to make sure the > > application gives a better > > diagnostic than "error32" which does not really help to figure out > > the nature of the problem.
> > On Nov 12, 10:38 pm, Gothy <dmitry.ut...@gmail.com> wrote:
> > > Hi, just wrote my first app for Android :) > > > But when I press "home" and then -> Browser I can see only Google > > > start page. > > > But when I try to load any other page - "error32"...
I was having the same issue when I was connected via wireless (802.11g). I disabled wireless and switched to a hard wire and the emulator connected without a problem.
On Nov 14, 6:51 am, "Dr.Sid" <Antonin.Ho...@gmail.com> wrote:
> I was having the same issue when I was connected via wireless > (802.11g). I disabled wireless and switched to a hard wire and the > emulator connected without a problem.
> On Nov 14, 6:51 am, "Dr.Sid" <Antonin.Ho...@gmail.com> wrote:
> > Same here. Direct access, no firewall, no proxy. XP SP2, Czech > > version.- Hide quoted text -
> Yes, I can confirm this based on what I experienced here.
> I had the "error 32" message.
> I had both Wifi and Ethernet Cable network connection enabled at the
> same time.
> And even tough I had no Ethernet Cable plugged in I had to disable
> this network
> interface and just leave the Wifi working to get the browser working.
> This should be added to Troubleshooting Tips by one of the Google guys
> monitoring
> this group, or better yet the bug could fixed in the emulator ;-)
> On Nov 15, 11:17 am, "Dr.Sid" <Antonin.Ho...@gmail.com> wrote:
> > That's it ! You must have only one network enabled.
Here is a potential work around. It uses the command line to add an
http proxy.
Note: you may need to update the escaping to use for windows.
cd to the location of adb
replace the pieces [host_or_IP] and [port] with the correct values for
the proxy. So if your proxy is corp_proxy, on port 8080, then in the
quotes should be corp_proxy:8080
----
./adb shell sqlite3 /data/data/com.google.android.providers.settings/
databases/settings.db "\"INSERT INTO system
VALUES(99,'http_proxy',' [host_or_IP]:[port]');\""
----
To see if it was added correctly you can run the following command
line. You should see 99|http_proxy| [host_or_IP]:[port]
----
./adb shell sqlite3 /data/data/com.google.android.providers.settings/
databases/settings.db "\"SELECT * FROM system\""
----
To remove the proxy, the following script can be run:
---
./adb shell sqlite3 /data/data/com.google.android.providers.settings/
databases/settings.db "\"DELETE FROM system WHERE _id=99\""
---
- Luisa
On Nov 16, 12:10 pm, footose <ha...@generationdub.com> wrote:
I have the same problem. But is something weird. For example, at the
office, the browser works perfectly, but at home I'm getting the error
32. Definitly is something on the emulator, and could help have some
source code.
I was wondering if this could be IP address related. At home I'm using
a private network with this scheme: Mask 255.0.0.0, IP 10.0.0.x, my
connection is ADSL with public IP. At the office the scheme is also a
private network but using 192.168.1.x as IP (I don't remember the
mask), but is as dedicated line.
fr4gus
On Nov 16, 2:59 pm, Leo MRL <leomrl...@gmail.com> wrote:
But I have a question here. I have setup the right proxy for my office
and the Android emulator can connect to the network correctly.
However, when I bring my laptop (with android loaded) back to my home,
the network at home doesn't have a proxy. I am not too sure will the
office proxy setting
block the emulator from working?
Can I know the column name or the field name so that I could use the
SQL UPDATE command to change the network proxy accordingly, depend on
whether I am at office or at home?
Thanks.
On Nov 17, 4:33 am, Luisa <magar...@google.com> wrote:
> Here is a potential work around. It uses the command line to add an
> http proxy.
> Note: you may need to update the escaping to use for windows.
> cd to the location of adb
> replace the pieces [host_or_IP] and [port] with the correct values for
> the proxy. So if your proxy is corp_proxy, on port 8080, then in the
> quotes should be corp_proxy:8080
> ----
> ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> databases/settings.db "\"INSERT INTO system
> VALUES(99,'http_proxy',' [host_or_IP]:[port]');\""
> ----
> To see if it was added correctly you can run the following command
> line. You should see 99|http_proxy| [host_or_IP]:[port]
> ----
> ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> databases/settings.db "\"SELECT * FROM system\""
> ----
> To remove the proxy, the following script can be run:
> ---
> ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> databases/settings.db "\"DELETE FROM system WHERE _id=99\""
> ---
> - Luisa
> On Nov 16, 12:10 pm, footose <ha...@generationdub.com> wrote:
> > I have this same bug, "Error 32", but only have one network adaptor.
I confirmed the same experience.
Having both WIFI and Ethernet enabled though there isn't any Ethernet
cable plugged in.
Need to disable the Ethernet connection to make Android emulator work.
On Nov 16, 6:05 am, Laurent <mr.l.gauth...@gmail.com> wrote:
> Yes, I can confirm this based on what I experienced here.
> I had the "error 32" message.
> I had both Wifi and Ethernet Cable network connection enabled at the
> same time.
> And even tough I had no Ethernet Cable plugged in I had to disable
> this network
> interface and just leave the Wifi working to get the browser working.
> This should be added to Troubleshooting Tips by one of the Google guys
> monitoring
> this group, or better yet the bug could fixed in the emulator ;-)
> On Nov 15, 11:17 am, "Dr.Sid" <Antonin.Ho...@gmail.com> wrote:> That's it ! You must have only one network enabled.
> Here is a potential work around. It uses the command line to add an
> http proxy.
> Note: you may need to update the escaping to use for windows.
> cd to the location of adb
> replace the pieces [host_or_IP] and [port] with the correct values for
> the proxy. So if your proxy is corp_proxy, on port 8080, then in the
> quotes should be corp_proxy:8080
> ----
> ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> databases/settings.db "\"INSERT INTO system
> VALUES(99,'http_proxy',' [host_or_IP]:[port]');\""
> ----
> To see if it was added correctly you can run the following command
> line. You should see 99|http_proxy| [host_or_IP]:[port]
> ----
> ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> databases/settings.db "\"SELECT * FROM system\""
> ----
> To remove the proxy, the following script can be run:
> ---
> ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> databases/settings.db "\"DELETE FROM system WHERE _id=99\""
> ---
> - Luisa
> On Nov 16, 12:10 pm, footose <ha...@generationdub.com> wrote:
> > I have this same bug, "Error 32", but only have one network adaptor.
> Hi! thx for the info. but what about Proxy Auth? I am behind a proxy
> that requires Auth. Is there any way to set the user and password too?
> thx.
> On Nov 16, 9:33 pm, Luisa <magar...@google.com> wrote:> Here is a potential work around. It uses the command line to add an
> > http proxy.
> > Note: you may need to update the escaping to use for windows.
> > cd to the location of adb
> > replace the pieces [host_or_IP] and [port] with the correct values for
> > the proxy. So if your proxy is corp_proxy, on port 8080, then in the
> > quotes should be corp_proxy:8080
> > ----
> > ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> > databases/settings.db "\"INSERT INTO system
> > VALUES(99,'http_proxy',' [host_or_IP]:[port]');\""
> > ----
> > To see if it was added correctly you can run the following command
> > line. You should see 99|http_proxy| [host_or_IP]:[port]
> > ----
> > ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> > databases/settings.db "\"SELECT * FROM system\""
> > ----
> > To remove the proxy, the following script can be run:
> > ---
> > ./adb shell sqlite3 /data/data/com.google.android.providers.settings/
> > databases/settings.db "\"DELETE FROM system WHERE _id=99\""
> > ---
> > - Luisa
> > On Nov 16, 12:10 pm, footose <ha...@generationdub.com> wrote:
> > > I have this same bug, "Error 32", but only have one network adaptor.