First off, thanks for the code samples. They have helped me tremendously. I'm a .NET web developer in transition. :-)
I have my application calling a .NET web service. The service returns only an integer value wrapped in "<int></int>". That is the full response from the service. Example: <int>456</int>
The parser returns the value correctly when I check it in a breakpoint during debugging (value is at currentElementValue), but I can't seem to get the value into something usable within the application.
I'm assuming that I need to use objectAtIndex somehow, but all of my efforts have failed.
Do you guys have any suggestions?
|