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 4005594
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:24:45+00:00 2026-05-20T08:24:45+00:00

I want to call web service in Objetive C which returning xml data and

  • 0

I want to call web service in Objetive C which returning xml data and I have to pass some information in header to the server,
just like in javascript we can do it using jquery,

x.setRequestHeader(‘key’,’value’);

where x is the xmlHttpRequest Object.
How we can pass the header data in NSConnection class,
I used google but havent find out good solution.
please help me.

  • 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-20T08:24:46+00:00Added an answer on May 20, 2026 at 8:24 am

    You can pass the information in header using NSMutableURLRequest class and then call the NSURLConnection class(it will call the connection delegate).

    see the following code,

    
    NSMutableURLRequest *theRequest=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:[myServerUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]
                                                            cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
                                                        timeoutInterval:60.0];
    //do post request for parameter passing 
    [theRequest setHTTPMethod:@"POST"];
    
    //set the content type to JSON
    [theRequest setValue:@"xml" forHTTPHeaderField:@"Content-Type"];
    
    //passing key as a http header request 
    [theRequest addValue:@"value1" forHTTPHeaderField:@"key1"];
    
    //passing key as a http header request
    [theRequest addValue:@"value2" forHTTPHeaderField:@"key2"];
    
    NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
    
    if( theConnection )
    {
        webData = [[NSMutableData data] retain];
    }
    else
    {
        NSLog(@"theConnection is NULL");
    }
    
    [theConnection release];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web service call that returns XML which I convert into domain
I want to call a web service method in javascript. (asp.net 3.5) I have
I have an ASP.NET web service which does some heavy lifting, like say,some file
I want to call a web service, but I won't know the url till
I want to call some RESTful web services from a J2ME client running on
I want to call an ASHX file and pass some query string variables from
I want to call a web service in Windows Workflow project using InvokeWebServiceActivity. I
I want to call a web page from Flash and use the data returned
I have written some web service, I run it and see it from my
I want to know how to safely call a WCF web service method. Are

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.