1.xml如下所示<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetCircularTypeResponse xmlns="http://tempuri.org/">
<GetCircularTypeResult>
  内容〜〜
</GetCircularTypeResult>
</GetCircularTypeResponse>
</soap:Body>
</soap:Envelope>
2.使用good api,GDataXMLNode如何获取节点GetCircularTypeResult内容
  求大神帮忙

解决方案 »

  1.   

    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"1" ofType:@"xml"];  NSData *xmlData = [[NSMutableData alloc] initWithContentsOfFile:filePath];
      NSError *error; 
     GDataXMLDocument *doc = [[GDataXMLDocument alloc] initWithData:xmlData options:0 error:&error];
      if (doc == nil) { return nil; } 
     NSLog(@"%@", doc.GetCircularTypeResult); 
     [doc release]; 
     [xmlData release]; 明白?
      

  2.   

    doc.GetCircularTypeResult===>这个GetCircularTypeResult可以为动态的吗?
    比如我这次调用webservice的GetCircularType方法返回的内容包含在GetCircularTypeResult节点中,
    我调用另一个方法GetCircular方法返回的内容包含在GetCircularResult中另外小问一个问题,xml有命名空间的是怎么读取?
      

  3.   


    doc.GetCircularTypeResult报错,提示不存在?