使用ASIHTTPRequest时发现错误

发布于 2024-12-11 21:06:10 字数 872 浏览 0 评论 0原文

我正在尝试使用 ASIHTTP 请求。但当我运行我的代码时,我收到以下错误消息。

我的代码有任何问题请帮助我并谢谢

Domain=ASIHTTPRequestErrorDomain Code=6“无法获取信息 在请求所需的代理服务器上”UserInfo=0x6043490 {NSLocalizedDescription=无法获取代理服务器信息 需要请求}

下面是我的源代码

- (void)viewDidLoad {

  NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com"];

  ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

  [request setDelegate:self];

  [request startSynchronous];   

  [super viewDidLoad];
}

- (void)requestFailed:(ASIHTTPRequest *)request
{
  NSLog(@"Error %@", [request error]);

  if ([request error])
  {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Fail." 
                 delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

    [alert show];

    [alert release];

     return;
  } 

}

I am trying to use the ASIHTTPrequest. but i get the below error message when i run my code.

Anything wrong in my code please help me up and thanks

Domain=ASIHTTPRequestErrorDomain Code=6 "Unable to obtain information
on proxy servers needed for request" UserInfo=0x6043490
{NSLocalizedDescription=Unable to obtain information on proxy servers
needed for request}

Below is my source code

- (void)viewDidLoad {

  NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com"];

  ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];

  [request setDelegate:self];

  [request startSynchronous];   

  [super viewDidLoad];
}

- (void)requestFailed:(ASIHTTPRequest *)request
{
  NSLog(@"Error %@", [request error]);

  if ([request error])
  {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Fail." 
                 delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

    [alert show];

    [alert release];

     return;
  } 

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只怪假的太真实 2024-12-18 21:06:10

谷歌搜索错误消息在 ASIHTTPRequest 邮件列表中显示了几个结果:

http://groups.google.com/group/asihttprequest/browse_thread/thread/924540472d721696/0dd6d853005631b0

http://groups.google.com/group/asihttprequest/browse_thread/thread/c15bcb756773685a

简而言之,该错误很可能与获取代理自动配置的问题有关文件。

因此:

  1. 检查设备上的网络设置,看看是否存在不正确或无法访问的 PAC URL 设置
  2. 。尝试升级到 ASIHTTPRequest 的最新 git 版本,该版本在这方面进行了一些修复,并且会忽略错误/无法访问的 PAC URL。

Googling for the error message turns up several results in the ASIHTTPRequest mailing list:

http://groups.google.com/group/asihttprequest/browse_thread/thread/924540472d721696/0dd6d853005631b0

http://groups.google.com/group/asihttprequest/browse_thread/thread/c15bcb756773685a

In short, it seems like there's a good chance the error is related to a problem fetching the proxy autoconfiguration file.

So:

  1. Check your networking settings on the device and see if there is an incorrect or inaccessible PAC URL set
  2. Try upgrading to the latest git version of ASIHTTPRequest which has some fixes in this area, and will ignore bad/unreachable PAC urls.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文