Forwarding the Request

Send the synchronous or asynchronous request message to the back-end.

The following code illustrates how to forward an asynchronous message.
[request startAsynchronous];

Usage

For an asynchronous request, you need to set the following delegates:
//Setting the Delegates
[request setDelegate: self];
[request setDidFailSelector:@selector(requestFailed:)];
[request setDidFinishSelector:@selector(requestSuccess:)];