Sunday, December 25, 2011

emulator's system partition

To put some extra files to android emulator's /system partition, do not run the emulator from eclipse or the AVD manager.
Instead, use the following command line:
emulator –avd youravdname –partition-size 128

http://www.cuteandroid.com/tips-for-android-developer-failed-to-copy-file-to-system

Thursday, December 22, 2011

IIS IP binding

If IIS7 does not listen the incoming connections trying to be made to a particular IP address,
even if the binding is set up correctly, check the
output of the following command:
netsh http show iplisten

The IP address must be in the list to respond the requests.

To add an IP, type in the following command:
netsh http add iplisten x.x.x.x


It seems, that data is stored in the registry:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters

See http://support.microsoft.com/kb/954874 for more detail.