I am developing two applications -
First one is web application using Spring MVC 3
And the second one is an Android application for same web application.
In both, I am integrating basic authentication to authenticate user on that site using the APIs.
In the API tutorial, following curl command is given to authenticate user -
$ curl -u username:password insert_Url_here -d '[xml body here]'
I am not getting, how to convert this command in Java and android code.
Please guide me. I am totally stuck here.