How to Connect SOCKS Proxy connection in iOS I am able to connect successfully SOCKS Proxy Server via Simulator, when using System network setting. I have tried ASIHTTPRequest but Falied. Here my sample ASIHTTPRequest code
NSURL *url = [NSURL URLWithString:@"my working URL in Browser"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setProxyHost:@"aa.bb.c.dd"];
[request setProxyUsername:@""];
[request setProxyPassword:@""];
[request setProxyPort:12345];
[request setDelegate:self];
[request startAsynchronous];
I want to connect and consume SOCKS Proxy connection & Web Service in my App on Device.Thanks in advance.