i have a dictionary and when i write it's element , it is like
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<UrunListesi6Response xmlns="http://tempuri.org//Stok">
<UrunListesi6Result>
<Urun6>
<UrunId>int</UrunId>
</Urun6>
<Urun6>
<UrunId>int</UrunId>
</Urun6>
</UrunListesi6Result>
</UrunListesi6Response>
</soap:Body>
</soap:Envelope>
To take UrunIds in an array, i use
NSMutableArray *a = [[NSMutableArray alloc] init];
a = [[[[[myDictionary objectForKey:@"soap"]objectForKey:@"UrunListesi6Response" ] objectForKey:@"UrunListesi6Result"] objectForKey:@"Urun6"] objectForKey:@"UrunId"];
NSLog(@"%@",a);
But result is null, what is the problem ?