Every single screen in my application is composed from data that comes from my server. This server exposes many different types of web-services, based on WSDLs, that simply return one string containing a JSON.
Now, I am reaching the stage where I want to put this server online and I am concerned with the security aspects around it.
What is the best approach? Although the data going across mobile app and server is not exactly sensitive, I don't want it all open across the web.
Would just establishing a SSL channel be enough? I am also concerned with how the security will impact the performance of the application, in terms of sending and receiving data.
Is there any best practice document that maybe I should follow?
Thanks everyone, Felipe