getting java.io.IOException: HTTP request failed, HTTP status: 404 in ksoap2 while passing xml data to soap1.2 android

后端 未结 2 1714
有刺的猬
有刺的猬 2020-12-06 15:10

i have to pass


test@test.com
test         


        
2条回答
  •  再見小時候
    2020-12-06 15:58

    Try the below

    PropertyInfo req = new PropertyInfo();
    req.name="silent";
    req.type=String.class;
    req.setValue(""
    +""+logon+""
    +""+mygameid+""
    +""+mypwd+""
    +""
    +""+test@test.com+""
    +""+test+""
    +""
    +"");
    request.addProperty(req);   
    

提交回复
热议问题