I am using thid code in android,I need the same code in iPhone..with appropriate syntex
NSString *soap = soapStart + "<" + soapAction + " xmlns:m='http://www.aras-corp.com/'>" + body + "</"+ soapAction + ">" + soapEnd;
error appers on screen “invalid operands in binary +(have struct ‘Struct NSString*’ ans
‘char *’
I am first time trying to use soap in my application
alternate code woukd b appreciated
Thankx in advance
You can’t concatenate a larger
NSStringfrom smaller strings using the “+” operator, like you do in Java.Instead, you create a new
NSStringfrom otherNSStringstrings, using a method called+stringWithFormat::