site_archiver@lists.apple.com Delivered-To: Macnetworkprog@lists.apple.com This snippet right here is a potential problem: CFRelease(soapReq); CFMakeCollectable(soapReq); You're over-releasing soapReq, since CFMakeCollectable calls CFRelease. See http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/Garbag... Also, you are releasing a bunch of objects you should not, for example: NSString *method = @"GetProjects"; [method release]; is wrong. Check out the "object ownership rules" in the Core Foundation memory management guide: http://developer.apple.com/mac/library/documentation/CoreFoundation/Conceptu... _______________________________________________ Do not post admin requests to the list. They will be ignored. Macnetworkprog mailing list (Macnetworkprog@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/macnetworkprog/site_archiver%40lists.... This email sent to site_archiver@lists.apple.com