tags:

views:

504

answers:

2

Am really wondering how to set a proxy server in android phone like [tattoo] in order to gain access in some private networks

any suggestion would be appreciated ...

thanks

A: 

You have to create Access Points which can then be configured with Proxy Settings for different provider networks.
Go to Home->Menu->Settings->WirelessControls->MobileNetworks->Access Point Names create an APN and configure it for what ever provider you want

Hope that helps..

Samuh
+1  A: 

Finally i got what i want and here is the result :

There is no UI for proxy settings for android web browser. But the android web browser will read the proxy settings in its settings database. Here is the instructions to enable the proxy in the android web browser.

  1. > adb shell
  2. # sqlite3 /data/data/com.google.android.providers.settings/databases/settings.db
  3. sqlite> INSERT INTO system VALUES(99,’http_proxy', 'proxy:port');
  4. sqlite>.exit

source is : http://discuz-android.blogspot.com/2008/01/set-proxy-for-android-web-browser.html

tawfekov
Can this be done on the real phone, not emulator? Moreover, can it be done on a phone that has not been rooted? Have you found out?
Pawel Krakowiak