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

  • SEARCH
  • Home
  • 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 6672461
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:30:39+00:00 2026-05-26T03:30:39+00:00

I have a rest service,(the service URL is a dummy one & doesn’t work)

  • 0

I have a rest service,(the service URL is a dummy one & doesn’t work)

http://www.testDomain.com/authenticate/

which is username and password authenticated

how do i call this rest service from my application?

The following is the code which i had written in order to consume this REST service(Earlier this service wasn’t user name & password authenticated).

NSString *testUrl=@”http://www.testDomain.com/authenticate/“;

        //NSString *testUrl=@"http://www.testDomain.com/authenticate/";

        NSMutableURLRequest *request=[[[NSMutableURLRequest alloc]init]autorelease];
        [request setHTTPMethod:@"POST"];
        [request setURL:[NSURL URLWithString:testUrl]];
        [request setValue:@"application/xml" forHTTPHeaderField:@"Content-Type"];
        [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];

        //[request addValue:<#(NSString *)value#> forHTTPHeaderField:<#(NSString *)field#>]
        [request setHTTPBody:bodyData];
  • 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-05-26T03:30:39+00:00Added an answer on May 26, 2026 at 3:30 am

    You have two ways:
    unsecured:
    ask user for username and pass and send url as http://username:pass@….

    support NSUrlConnection delegate:

    - (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {
        return YES;
    }
    
    - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge {
        NSString *user = [NSString stringWithFormat:@"%c%s%@", 'a', "a", @"a"];
        NSString *password = [NSString stringWithFormat:@"%c%s%@", 'a', "a", @"a"];
    
        NSURLCredential *credential = [NSURLCredential credentialWithUser:user
                                                                 password:password
                                                              persistence:NSURLCredentialPersistenceForSession];
        [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge];
    
    }
    

    for u service is better using first way, bcd u anyway not protect link by ssl and somebody smart can sniff all u users and passwords 🙂
    p.s. interesting strings is protect from read login/pass from code…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an old WCF 3.5 RESTful service that was at: http://www.mydomain.com/rest/Service.svc I have
I have developed a rest web service by using the following link http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/simplerestservice11172009221218PM/simplerestservice.aspx Now,
I have to map a REST Webservice URL like http://server:8080/application/service/customer/v1 to createCustomer method in
I have a REST web service that currently exposes this URL: http://server/data/media where users
I have a WCF REST service which needs to invoke a URL (could be
I have been learning RESTful webservices following this tutorial http://www.vogella.de/articles/REST/article.html . As I understand,
I have a REST web service that I would like to take a URL
I have a REST service consumed by a .Net WCF client. When an error
I have a REST data service where I want to allow the users to
am new to Json so a little green. I have a Rest Based Service

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.