2013-02-26 15 views
5

Ho problemi a pubblicare un JSONArray di valori sul mio servizio WCF. Quando inserisco i dati da Fiddler o .Net Test Client funziona correttamente. Ogni volta che provo a postare dalla mia applicazione Android ottengo Request ErrorRegistrazione di un JSONArray per il servizio WCF da Android

Questo è il dato JSON che invio al mio servizio WCF dall'applicazione Android. Ho provato questo dati esatti da Fiddler e funziona

[{"date":"2013-02-22 15:30:374:021","id":"1","description":"test","name":"test"}, 
"date":"2013-02-25 11:56:926:020","id":"2","description":"ghy","name":"fhh"}, 
"date":"2013-02-25 11:56:248:026","id":"3","description":"ghfm","name":"run"}] 

Il mio codice di Android

public JSONObject makeHttpPost(String url, String method, JSONArray params) { 
    try { 

     if (method == "POST") { 

      DefaultHttpClient httpClient = new DefaultHttpClient(); 
      HttpPost httpPost = new HttpPost(url); 
      httpPost.setHeader("Accept", "application/json"); 
      httpPost.setHeader("Content-Type", 
      "application/json; charset=utf-8"); 
      StringEntity se = new StringEntity(params.toString(),"UTF-8"); 

      se.setContentType("application/json;charset=UTF-8"); 
      httpPost.setEntity(se); 

      Log.e("Gerhard", params.toString()); 
      HttpResponse httpResponse = httpClient.execute(httpPost); 
      HttpEntity httpEntity = httpResponse.getEntity(); 
      is = httpEntity.getContent(); 



     } 

    } catch (UnsupportedEncodingException e) { 
     e.printStackTrace(); 
    } catch (ClientProtocolException e) { 
     e.printStackTrace(); 
    } catch (IOException e) { 
     e.printStackTrace(); 
    } 

mio servizio WCF

[OperationContract] 
    [WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, UriTemplate = "updateOrderAddress")] 
    String UpdateOrderAddress(Stream JSONdataStream); 

public String UpdateOrderAddress(Stream JSONdataStream) 
    { 
     try 
     { 
      // Read in our Stream into a string... 
      StreamReader reader = new StreamReader(JSONdataStream); 
      string JSONdata = reader.ReadToEnd(); 

      // ..then convert the string into a single "wsOrder" record. 

      if (JSONdata == null) 
      { 
       // Error: Couldn't deserialize our JSON string into a "wsOrder" object. 
       return "null"; 
      } 



      return JSONdata;  // Success ! 
     } 
     catch (Exception e) 
     { 
      return e.ToString(); 
     } 
    } 

L'errore che sto ottenendo

02-26 14:00:56.185: E/Gerhard(31064):  <p>The server encountered an error processing the request. The exception message is 'Incoming message for operation 'UpdateOrderAddress' (contract 'IService1' with namespace 'http://tempuri.org/') contains an unrecognized http body format value 'Json'. The expected body format value is 'Raw'. This can be because a WebContentTypeMapper has not been configured on the binding. See the documentation of WebContentTypeMapper for more details.'. See server logs for more details. The exception stack trace is: </p> 

Ho chiamato più richieste GET ts dall'applicazione Android allo stesso servizio WCF e funziona benissimo, ma ora ho bisogno di inviare una matrice di dati al servizio wcf. Si prega di aiutare prego me.Thanks in anticipo

+0

State ottenendo eventuali errori? Qual è la risposta? – Rajesh

+0

Scusa appena aggiunto l'errore al post – razeth01

+0

Puoi provare senza 'se.setContentType (" application/json; charset = UTF-8 ");'? – Rajesh

risposta

6

rimuovere

httpPost.setHeader("Accept", "application/json");     
httpPost.setHeader("Content-Type", "application/json; charset=utf-8"); 

dal codice ur

+0

Questo ha anche risolto un problema che avevo provato ad inviare un messaggio di prova da violinista. Mi piacerebbe una spiegazione ... –

+0

aiuta molto !! – anevil