重複の可能性:
Android の KSOAP で問題をシリアル化できません
私は自分のアプリケーションで 1 つの 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