Support url encoding

It would be helpful if we could have application/x-www-form-urlencoded supported. It's common when using Android to include parameters in the body with this encoding but XData complains that it is not supported. For example:
from the Android code
@FormUrlEncoded
@POST("LoginService/Login")
Observable login( @Field("username") String username, @Field("password") String password );
gives an EXDataHttpUnsupportedMediaType exception from within XData

It's not supported with Consumes attribute.

[Consumes('x-www-form-urlencoded')]

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.