In the objective c generated code, in Soap.m in the static function getNode
isEqual should be isEqualToString
// Gets the node from another node by name.
+ (CXMLNode*) getNode: (CXMLNode*) element withName: (NSString*) name {
for(CXMLNode* child in [element children]) {
if([child respondsToSelector:@selector(name)] && [[child name] isEqualToString: name]) {
return (CXMLNode*)child;
}
}
for(CXMLNode* child in [element children]) {
CXMLNode* el = [Soap getNode: (CXMLElement*)child withName: name];
if(el != nil) { return el; }
}
return nil;
}
Original issue reported on code.google.com by andreas....@gmail.com on 14 Sep 2011 at 4:10
Original issue reported on code.google.com by
andreas....@gmail.com
on 14 Sep 2011 at 4:10