How to install or clear a proxy server used by a Windows Mobile device?

I want to programmatically configure the proxy settings for a Wi-Fi network on my Windows Mobile mobile phone. Does anyone know how to do this using .net compact framework?

+3
source share
1 answer

You can use DMProcessConfigXML api to configure a large number of settings on the device. I think you can use the CM_ProxyEntries configuration service provider , which allows you to create and delete proxy settings. One approach might be to manually configure the wifi proxy and then use DMProcessConfigXML to request settings that provide you with xml that you can use (with multiple settings) to program it programmatically.

+2
source

Source: https://habr.com/ru/post/1745477/


All Articles