0

可能重复:
无法在 android 中序列化 KSOAP 中的问题

我在我的应用程序中调用一个 Web 服务,因为我正在为该 SOAP 请求设置输入,如下所示:

 PropertyInfo usrid =new PropertyInfo();
            usrid.setName("LoginID");
            usrid.setValue(userid);
            usrid.setType(String.class);
            authentication.addProperty(usrid);        

            PropertyInfo pass =new PropertyInfo();
            pass.setName("Password");
            pass.setValue(password);
            pass.setType(String.class);
            authentication.addProperty(pass);    

            request.addProperty("authentication", authentication);

            PropertyInfo no =new PropertyInfo();
            no.setName("No");
            no.setValue("28448347");
            no.setType(String.class); 
            request.addProperty("Str",no);

但我收到错误:

java.lang.RuntimeException: Cannot serialize:no
4

0 回答 0