Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to programatically configure the proxy settings for the wifi network on my Windows Mobile phone. Does anybody know how to do that using the .net compact framework?

share|improve this question

1 Answer

You can use the DMProcessConfigXML api call to configure up a lot of the settings on the device. I think you might want to use the CM_ProxyEntries configuration service provider, which allows you to create and delete proxy settings. One approach may be to set up the wifi proxy manually, then use DMProcessConfigXML to query the settings, which will give you the xml you can use (with a few tweaks) to configure it up programmatically.

share|improve this answer
I'm looking into this. It seems to be what I'm looking for. Will keep you updated as the project progresses. I don't get much time to work on it though, so it might take a while. – RichieACC Jun 7 '10 at 15:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.