views:

27

answers:

1

Hi guys,

I currently have a browser project which will allows users to select a proxy server. I'm using WebKit .NET by the way. However, when I tried changing my proxy settings in Internet Explorer(Registry), it doesn't seem to recognize the new settings. My other browsers seem to acknowledge the proxy, even safari.

Anyone here tried playing with WebKit .NET and had the same challenge as what was stated above?.

Thank you guys!

A: 

I have the same problem with this man. :(

ltvan
Think the last way of doing this is to modify and build webkit itself. Anyway, since I have a tight deadline, I ended up using GeckoFX. Lines like these will do.Skybound.Gecko.GeckoPreferences.User["network.proxy.http"] = "your proxy"; Skybound.Gecko.GeckoPreferences.User["network.proxy.http_port"] = "your port"; Skybound.Gecko.GeckoPreferences.User["network.proxy.type"] = 1;
Blue Dren