In the early versions of AFNetworking if I had to make my own custom client then I would simply inherit from AFHTTPClient and create my methods. In AFNetworking 2.0 I believe I need to inherit from AFHTTPSessionManager.
@interface MyCustomClient : AFHTTPSessionManager
{
}
In my situation I need to send in request as soap. This means that HTTP Body will be soap and HTTP HEADERS will be text/xml.
Let's say I have a variable which contains the entire soap body I need to send to the server.
NSString *soapBody = @"Soap body";
Using my custom class defined above which inherits from AFHTTPSessionManager how will I set the soap body to the Request HTTPBody.
If there is anyway to access NSURLRequest from inside the AFHTTPSessionManager then I can simply do setHTTPBody but it seems there is not?
I hope I am making sense now!