I have app Android that consumes from a webservice where the database is PostgreSQL and the ASCII type. When I try to print the string returned in the app it unconfigures the letter with accentuation, for example, Pulmão = Pulm?o
.
Should I do this conversion on the service or on the client and which command should the case be? And should I configure anything in the Eclipse IDE to accept this command?
Example:
In-app return snippet:
HttpTransportSE Transport = new HttpTransportSE(URL);
Transport.debug = true;
Transport.call(SOAP_ACTION, envelope);
//Recebendo retorno do Webservice
SoapObject response = (SoapObject)envelope.bodyIn;