Shun87 / wsdl2objc

Automatically exported from code.google.com/p/wsdl2objc
MIT License
0 stars 0 forks source link

why the output of response.bodyParts is Hexadecimal number? #86

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
sendSmsSoap12BindingResponse *response = [binding
SendSmsUsingParameters:request];

    NSArray *responseHeaders = response.headers;
    NSArray *responseBodyParts = response.bodyParts;
    NSLog(@"responseBodyParts:%@", [responseBodyParts objectAtIndex:0]);

why the output of responseBodyParts is Hexadecimal number, for exaplle:
0xf1f680

Original issue reported on code.google.com by yzhl...@163.com on 6 May 2010 at 8:16

GoogleCodeExporter commented 8 years ago
Because the object [responseBodyParts objectAtIndex:0] is an object. It could 
be a SOAPFault object, or a correct 
response type for your WSDL.

Original comment by hasse...@gmail.com on 7 May 2010 at 6:36