Sample code for 30+ languages & platforms
Objective-C Requires Chilkat v11.0.0+

Transition from Http.PostUrlEncoded to Http.HttpReq

Provides instructions for replacing deprecated PostUrlEncoded method calls with HttpReq.

Sends the following raw HTTP request:

POST /echoPost.asp HTTP/1.1
Host: www.chilkatsoft.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 50

company=example&ip=111.111.111.111&url=example.com

Chilkat Objective-C Downloads

Objective-C
#import <CkoHttp.h>
#import <NSString.h>
#import <CkoHttpRequest.h>
#import <CkoHttpResponse.h>

BOOL success = NO;

CkoHttp *http = [[CkoHttp alloc] init];

NSString *url = @"https://www.chilkatsoft.com/echoPost.asp";

CkoHttpRequest *req = [[CkoHttpRequest alloc] init];
[req AddParam: @"company" value: @"example"];
[req AddParam: @"ip" value: @"111.111.111.111"];
[req AddParam: @"url" value: @"example.com"];

//  ------------------------------------------------------------------------
//  The PostUrlEncoded method is deprecated:

CkoHttpResponse *responseObj = [http PostUrlEncoded: url req: req];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

//  ...
//  ...

//  ------------------------------------------------------------------------
//  Do the equivalent using HttpReq.
//  Your application creates a new, empty HttpResponse object which is passed 
//  in the last argument and filled upon success.

CkoHttpRequest *req2 = [[CkoHttpRequest alloc] init];
[req2 AddParam: @"company" value: @"example"];
[req2 AddParam: @"ip" value: @"111.111.111.111"];
[req2 AddParam: @"url" value: @"example.com"];

req2.HttpVerb = @"POST";
req2.ContentType = @"application/x-www-form-urlencoded";

CkoHttpResponse *resp = [[CkoHttpResponse alloc] init];
success = [http HttpReq: url request: req2 response: resp];
if (success == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

//  Results are contained in the HTTP response object...