我在我的应用程序中调用一个 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