secretos samsung por pasar para icono corazon contactos con como aplicaciones aplicacion amantes android json post

samsung - pasar contactos de iphone a android por bluetooth



Respuesta HTML del servidor (8)

Tengo una aplicación que envía algunos datos a un servidor local y, como resultado, el servidor devolverá un JSON. decir {estado: "éxito"}

Está funcionando cuando ejecuto la aplicación en mi emulador de 2.3 SDK, pero instalado en una Galaxy Tab (2.2 SDK), la misma respuesta es en forma de html.

I/RESPONSE( 8190): <?xml version="1.0" encoding="utf-8"?> I/RESPONSE( 8190): <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" I/RESPONSE( 8190): "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> I/RESPONSE( 8190): <html> I/RESPONSE( 8190): <head> I/RESPONSE( 8190): <title>417 Expectation Failed</title> I/RESPONSE( 8190): </head> I/RESPONSE( 8190): <body> I/RESPONSE( 8190): <h1>Error 417 Expectation Failed</h1> I/RESPONSE( 8190): <p>Expectation Failed</p> I/RESPONSE( 8190): <h3>Guru Meditation:</h3> I/RESPONSE( 8190): <p>XID: 1902486816</p> I/RESPONSE( 8190): <hr> I/RESPONSE( 8190): <address> I/RESPONSE( 8190): <a href="http://www.varnish-cache.org/">Varnish cache server</a> I/RESPONSE( 8190): </address> I/RESPONSE( 8190): </body> I/RESPONSE( 8190): </html> I/RESPONSE( 8190): <-- I/RESPONSE( 8190): I/RESPONSE( 8190): <?xml version="1.0" encoding="utf-8"?> I/RESPONSE( 8190): <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" I/RESPONSE( 8190): "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> I/RESPONSE( 8190): <html> I/RESPONSE( 8190): <head> I/RESPONSE( 8190): <title>417 Expectation Failed</title> I/RESPONSE( 8190): </head> I/RESPONSE( 8190): <body> I/RESPONSE( 8190): <h1>Error 417 Expectation Failed</h1> I/RESPONSE( 8190): <p>Expectation Failed</p> I/RESPONSE( 8190): <h3>Guru Meditation:</h3> I/RESPONSE( 8190): <p>XID: 1902486816</p> I/RESPONSE( 8190): <hr> I/RESPONSE( 8190): <address> I/RESPONSE( 8190): <a href="http://www.varnish-cache.org/">Varnish cache server</a> I/RESPONSE( 8190): </address> I/RESPONSE( 8190): </body> I/RESPONSE( 8190): </html> W/System.err( 8190): org.json.JSONException: A JSONObject text must begin with ''{'' at character 2 of W/System.err( 8190): <?xml version="1.0" encoding="utf-8"?> W/System.err( 8190): <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" W/System.err( 8190): "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> W/System.err( 8190): <html> W/System.err( 8190): <head> W/System.err( 8190): <title>417 Expectation Failed</title> W/System.err( 8190): </head> W/System.err( 8190): <body> W/System.err( 8190): <h1>Error 417 Expectation Failed</h1> W/System.err( 8190): <p>Expectation Failed</p> W/System.err( 8190): <h3>Guru Meditation:</h3> W/System.err( 8190): <p>XID: 1902486816</p> W/System.err( 8190): <hr> W/System.err( 8190): <address> W/System.err( 8190): <a href="http://www.varnish-cache.org/">Varnish cache server</a> W/System.err( 8190): </address> W/System.err( 8190): </body> W/System.err( 8190): </html>

Editar: Solicitud de envío: -

try { HttpClient client = new DefaultHttpClient(); String postURL = GlobalCodes.getBaseurl(); HttpPost post = new HttpPost(postURL); List<NameValuePair> params = new ArrayList<NameValuePair>(); params.add(new BasicNameValuePair("show", "testpost")); post.setEntity(new UrlEncodedFormEntity(params)); HttpResponse responsePOST = client.execute(post); HttpEntity resEntity = responsePOST.getEntity(); String str2 = EntityUtils.toString(resEntity); Log.i("RESPONSE", " <--"); if (resEntity != null) { Log.i("RESPONSE","**"); JSONObject jsonObj = new JSONObject(str2); if (jsonObj.getString("status").equalsIgnoreCase("succuss")) { ..... } else { ...... } } } catch (Exception e) { e.printStackTrace(); }

¿alguien puede decirme qué va mal?

Happy Coding ..!



No hay nada incorrecto en tu código de Java. El problema está en el lado del servidor. También me ha pasado una vez, pero mi equipo de servidores cambió el servidor y resolvió el problema.

En resumen, HTTP Error 417 indica que hubo un problema en la transferencia de datos de la aplicación, por el cual el servidor no recibió todos los paquetes que estaba anticipando (o estaban fuera de servicio). Este error solo lo arrojan los sitios web que usan CheckUpDown. Este es un problema con los servidores de CheckUpDown, por lo que es poco lo que puede hacer. Es posible que desee informar al administrador de su problema de wallbase.cc a través de su foro público.


Parece que el encabezado de aceptación de sus solicitudes indica text / html en lugar de application / json. Cambialo.


Solo revisa esta linea:

W/System.err( 8190): org.json.JSONException: A JSONObject text must begin with ''{'' at character 2 of

Estoy seguro de que cometió un error al crear / codificar el objeto JSON en el servidor.


Tal vez este es un problema con los valores predeterminados utilizados por DefaultHttpClient (cadena de agente de usuario, codificación de transferencia estricta, etc.)? Intenta usar AndroidHttpClient lugar de DefaultHttpClient . Sus valores predeterminados pueden ser más compatibles http://developer.android.com/reference/android/net/http/AndroidHttpClient.html

Si eso no funciona, es posible que deba comparar los encabezados HTTP enviados por el iPhone que funciona, los clientes del emulador con los del cliente Galaxy roto y actualizar la configuración en consecuencia.


bien rahul has probado cualquier tipo diferente de manejo de respuesta para el protocolo HTTP Post

uso algo como esto

try { String params; String encodedDataLength; connectURL = new URL(_uRL); params = "Blah... Blah... blah; encodedDataLength = "" + params.length(); conn = (HttpURLConnection) connectURL.openConnection(); //conn.setDoInput(true); conn.setDoOutput(true); // signify a post communcation protocol conn.setRequestProperty("User-Agent","mobile"); conn.setRequestProperty("Content-Language", "en-US"); conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); conn.setRequestProperty( "Content-Length", encodedDataLength); //System.out.println("con :" + conn); os = conn.getOutputStream(); os.write(params.getBytes()); os.flush(); // Getting the response code will open the connection, // send the request, and read the HTTP response headers. // The headers are stored until requested. is = conn.getInputStream(); // get session from the cookie String cookie = conn.getHeaderField("cookie"); if (cookie != null) { session = cookie; } // Get the length and process the data BufferedReader br = new BufferedReader(new InputStreamReader(is)); responseString = br.readLine(); //System.out.println(responseString); } catch (Exception e) { //java.lang.System.out.println("http exception: " + e.printStackTrace()); } finally { try { if (is != null) is.close(); if (os != null) os.close(); if (conn != null) conn.disconnect(); } catch (Exception e) { e.printStackTrace(); } }

una vez hecho esto ... puede insertar cualquier metodología de decodificación Json para recuperar los datos de la cadena llamada resposeString.

A continuación se muestran los archivos de importación incluidos para esta implementación. Sé que hay diferentes para esos.

import java.io.*; import java.net.URL; import java.net.HttpURLConnection; import java.util.zip.GZIPInputStream; import java.lang.String;


eso es porque el servidor respondió con el html de una página de error, no exactamente json-parseable.


tienes un error from server por lo que este tipo de datos se obtienen en respuesta.

Trate de handle error at server side , vea qué tipo de servidor de datos obtiene cuando envía una solicitud desde su aplicación, y cómo lo maneja el servidor.

EDITAR: en mi caso esto funciona,

JSONObject jsonObject = new JSONObject(); jsonObject.put("key1", value1); jsonObject.put("key2", value2); JSONArray jArrayParam = new JSONArray(); jArrayParam.put(jsonObject); List<NameValuePair> nameValuePair = new ArrayList<NameValuePair>(); nameValuePair.add(new BasicNameValuePair("bulkdata",jArrayParam.toString())); Log.e("bulkdata", jArrayParam.toString()); HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost("yor remote server url"); httppost.addHeader("Content-Type", "application/x-www-form-urlencoded"); httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs, HTTP.UTF_8)); // Execute HTTP Post Request HttpResponse response = httpclient.execute(httppost); // get response entity HttpEntity entity = response.getEntity(); if (entity != null) { InputStream is = entity.getContent(); // convert stream to string result = convertStreamToString(is); result = result.replace("/n", ""); }

y este es el método convertStreamToString (es);

public static String convertStreamToString(InputStream is) throws Exception { BufferedReader reader = new BufferedReader(new InputStreamReader(is, "UTF-8")); StringBuilder sb = new StringBuilder(); String line = null; while ((line = reader.readLine()) != null) { sb.append(line + "/n"); } is.close(); return sb.toString(); }