Hi! I'm using Carbide.c++ 2.0 to create a S60 application that consumes my own webservice. I've used the Yahoo! Image Search example as a starting point and data is shipped back and forth nicely. Problems occur when there are non-english characters in the reply so the text presented to the user in the listbox is incorrect. The XML-document the webservice replies with is UTF8 encoded and when it's parsed the text is presented in a TDesC8 parameter to a function.
- What datatype should I use to store the UTF8 text?
- How do I convert UTF8 encoded text stored in a TDesC8 variable/parameter to a variable of the datatype above?
- Are there perhaps other methods in the Xml-class that I can implement in order to get a differend datatype of the parameter?