When making a request using volley in Android 6 gives this error:
java.net.ProtocolException: Unexpected status line: <?xml version="1.0" encoding="UTF-8"?>
But if I try it in Android 7 works perfectly. I am using...
I am developing an app for my university, when I send the request to the server with its respective user and true passwords I get an Authenticated Data.htm response (That means that I can log in) but when I want to see my other data such as my K...
I am using volley to make a POST request in HTTP to an API in PHP that I created. This API will insert in a database the value it receives. Your code is as follows:
//datos para la conexión
$usuario = "******";
$password = "******";
$servidor...
I am doing a project in Android Studio, I require that, in a navigation drawer, when selecting a fragment that had already been loaded and emptied information in it (it is the first fragment that appears, in the onCreate event), the task to recr...
Greetings this is my first post and the problem I have is that I am making an application in which I store images in webservice and as a response I get a array with the names of the images that were stored, this process and update...
I hope you can support me with this question: how to call from android 2 queries (select) in php that show the data in the app. The php code is:
?php $idequivalente = $_REQUEST['idequivalente2'];
$idUsuario2 = $_REQUEST['idUsuario2'];...
I am developing an android app, the server responds to me by creating a json from php, but now it takes time to generate the text and until then the AsycnAsk already receives me as a null error.
How can I do to control that?
This is the fu...
I am doing a synchronization of information that is stored in the database Sqlite my problem esque is a field application that is to say it will work with mobile data, but I have problem that the sending of information is not executed cor...
I tried to update the data of my server with Volley by means of the PATCH method sending the data in a body, the form is the following:
String url = getString(R.string.ws_base) + getString(R.string.ws_ip) + getString(R.string.ws_servicios);...