4

Possible Duplicate:
Android HttpClient and HTTPS

I want to write app on Android which will be exchange XML files with HTTP server. I want to use HTTPS and SSL to secure this connection but I'm really rookie with securing things. I was looking for some tutorial on the internet but all I found was confusing. Can someone explain me how can I use HTTPS and SSL to exchange files with HTTP server. Maybe you know some tutorial or book which describe this?

Community
  • 1
  • 1
AYMADA
  • 889
  • 3
  • 17
  • 37

2 Answers2

1

There is plenty of links on internet. Look for Apache HttpClient and HTTPS and file transfer.

For example:

Android HttpClient and HTTPS

Community
  • 1
  • 1
pawelzieba
  • 16,082
  • 3
  • 46
  • 72
1

If your webserver is already properly configured to provide the services in HTTPS or SSL, there isn't much to do on Android side, you basically need to use the API's provided by the platform. Check out the docs starting with: http://developer.android.com/reference/javax/net/ssl/HttpsURLConnection.html

Alécio Carvalho
  • 13,481
  • 5
  • 68
  • 74