I run an application on Android phone.
The application connects to a webservice via internet and I want to intercept the traffic between the application and the webservice.The connection is http/ssl
The connection is http/ssl
Without the SSL private key, dumping the traffic at any point isn't going to be fruitful. All you can do is trace the execution of the application on the phone (for which you'll need a jailbroken phone) to see what it's doing. Even then, it's not just a matter of tracing the write
calls, you need to trace the calls to the SSL encryption routines. It's not trivial.