我有一个使用GET webinvoke的Authenticate Rest服务。我必须用我的服务发送用户名和密码。我必须在我的项目中使用AsyncTask调用它,但我不知道如何将带有json类型的参数(用户名和密码)发送到服务器。我能这样做吗?如果是,怎么样?
我的WebService:
Presentation.Slides.Add(1, 12)
在我的android项目代码中,我将jsonObject转换为字符串,我想发送到服务器:
[OperationContract]
[WebGet(UriTemplate = "/Authenticate",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped)]
Test<Person> Authenticate(string user,string password)
我知道Authenticate最好使用POST来保证安全,但我想测试和教育;)
谢谢
答案 0 :(得分:0)
尝试此函数调用web-service
//use whatever confirm box you want here