Soap Response Delay [SOLVED]
Soap Response Delay [SOLVED]
- Subject: Soap Response Delay [SOLVED]
- From: Mustafa Tuğrul Özşahin <email@hidden>
- Date: Thu, 18 Mar 2010 17:35:39 +0200
I figured out the reason of the delay in my soap responses. The reason is not releasing the response properly.
CFDictionaryRef resCF = WSMethodInvocationInvoke(soapReq);
CFRelease(soapReq);
NSDictionary *result = [(NSDictionary *)resCF copy];
CFRelease(resCF); // This is Vital
So don't forget to release the response.
I just wrote it in case someone else has the same problem.
Thanks everyone.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Macnetworkprog mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden