我正在尝试通过ksoap连接到我的网络服务,并给出了这个错误
无法找到{}
的调度方法
我知道这两个问题都有同样的错误,他们都没有正确地放置命名空间或添加正确的方法名称,这里我添加了正确的命名空间,而且正确的方法现在它正在工作不是,那是问题,这是调用webservice的代码
ObjConexion object = new ObjConexion();
SoapObject request = new SoapObject(object.NameSpace(), "login");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
Bundle extras = getIntent().getExtras();
/*PropertyInfo namePro =new PropertyInfo();
namePro.setName("_name");
//namePro.setValue(extras.getString("name"));
namePro.setValue("sdfasdfsadf");
namePro.setType(String.class);
request.addProperty(namePro);
*/
PropertyInfo emailPro =new PropertyInfo();
emailPro.setName("email");
//emailPro.setValue(extras.getString("mail"));
emailPro.setValue("asdfsdfasdfasdf");
emailPro.setType(String.class);
request.addProperty(emailPro);
PropertyInfo passwordPro =new PropertyInfo();
passwordPro.setName("password");
//passwordPro.setValue(((EditText) findViewById(R.id.passwd)).getText().toString());
passwordPro.setValue("asdkasdkfkasdf");
passwordPro.setType(String.class);
request.addProperty(passwordPro);
HttpTransportSE androidHttpTransport = new HttpTransportSE("WSDLPath");
androidHttpTransport.debug = true;
try {
androidHttpTransport.call("", envelope);
SoapPrimitive result = (SoapPrimitive)envelope.getResponse();
}catch (Exception e) {
e.printStackTrace();
Toast.makeText(this,e.getMessage().toString(),Toast.LENGTH_LONG).show();
}
答案 0 :(得分:1)
您尚未输入方法名称:
androidHttpTransport.call("", envelope);
输入方法名称:
androidHttpTransport.call(METHOD_NAME, envelope);
在您得到答案的地方,请更喜欢关注网址。这个问题是我问的。在解决之后我把答案用于其他人。
create soap envelope with security header in android using ksoap2