1

私は Android アプリケーションに取り組んでおり、WCF Restful WS への "POST" 要求 (いつものように) に問題があります。

安らかな方法:

 [OperationContract]
 [WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, UriTemplate = "createUser")]
 string createUser(string user);

メソッド実装のコメント本文の下にあるエラーを見つけるように指示したところ、次のようになりました。

public string createUser(string user)
        {
        return user;
        }

私は、JSON.stringify(datos) を使用して、JS(jQuery、Ajax) からこのメソッドを何百回も呼び出してきましたが、問題はありませんでした。Androidアプリケーションから同じことをする必要があります。これはおそらく問題を引き起こす私のコードのスニペットです:

JSONObject user =  new JSONObject();
user.put("id", "15");
user.put("name", "John");
user.put("city", "France");
user.put("email", "myemail");
user.put("password", "mypass");

HttpClient client = new DefaultHttpClient();
URI website = new URI("http://10.0.2.2/AutoOglasi/Service1.svc/createUser");
HttpPost request = new HttpPost();
request.setEntity(new StringEntity(user.toString()));
request.addHeader("content-type", "application/json");      
request.setURI(website);
HttpResponse response = client.execute(request);

サーバーからの応答を取得しています (クライアント側にエラーはありません):

The exception message is 'There was an error deserializing the object of type
System.String. End element 'root' from namespace '' expected. Found element 'id' from
namespace ''.'.See server logs for more details. The exception stack trace is: </p> <p>at
System.ServiceModel.Dispatcher.OperationFormatter.DeserializeRequest(Message message,
 Object[] parameters) at
System.ServiceModel.Dispatcher.DemultiplexingDispatchMessageFormatter.DeserializeRequest(Me    ssage message, Object[] parameters) at
   System.ServiceModel.Dispatcher.UriTemplateDispatchFormatter.DeserializeRequest(Message      message, Object[] parameters) at
System.ServiceModel.Dispatcher.DispatchOperationRuntime.DeserializeInputs(MessageRpc&amp;      rpc) at
 System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc&amp; rpc) at
 System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc&amp; rpc) at
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31(MessageRpc&amp; rpc)
 at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)</p> </div> </body></html>

アドバイスや助けをお願いします。

4

2 に答える 2

0

この問題と関係があるかどうかはわかりませんが、ID は文字列である必要がありますか?

代わりにこれが必要だと思います:

user.put("id", 15);

于 2013-04-05T12:20:22.757 に答える