Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7875231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T02:56:52+00:00 2026-06-03T02:56:52+00:00

What does a web service need to do to cause NSURLConnection’s delegate to receive

  • 0

What does a web service need to do to cause NSURLConnection's delegate to receive the connection:didFailWithError: message?

For example:
iOS app passes a token to the web service, web service looks up the token, and then the web service needs to respond with an error saying “invalid token” or something of the like.

Currently, the data is received, and in “connectionDidFinishLoading:” is parsed for error messages. This means I’m error checking in two places, which I am trying to avoid.

I have both the iOS app and web service completely under my control.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T02:56:53+00:00Added an answer on June 3, 2026 at 2:56 am

    In my experience (the three most dangerous words in programming), -connection:didFailWithError: is only called if the HTTP exchange failed. This is usually a network error or maybe an authentication error (I don’t use authentication). If the HTTP message succeeds, no matter the response code, -connectionDidFinishLoading: is called.

    My solution: call -connection:didFailWithError: when I detected an error. That way all my error handling code is in one place.

    At the top of my -connectionDidFinishLoading:, I have:

    NSError *error;
    NSDictionary *result = [self parseResultWithData:self.connectionData error:&error];
    if (!result) {
        [self connection:connection didFailWithError:error];
        return;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have code that does a web-service request. While doing this request I need
In sharepoint my web part is calling a web service. This web service does
Does anyone have code for a Web Service with works with the Quickbooks Web
How does one change / modify the Result property of a web service operation?
How does IIS handles multiple simultaneous requests to a web service using the same
I am trying to make a very simple web-service which does the following: The
Currently we are developing an ASMX, ASP 2.0, IIS 7 web service that does
i need to develop a .net library which exposes a java web service proxy
In a Silverlight Web app, I have a service and its interface in where
I need my application to submit data to a web service and wait for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.