오늘 계속 자바에게 보고합니다.lang.ClassCastException: org.ksoap2. SoapFault 오류

1848 단어
ksoap를 통해 웹 서비스를 호출하여java에 보고합니다.lang.ClassCastException: org.ksoap2. SoapFault 오류, 인터넷에서도 찾았는데 마지막에 자신의 매개 변수가 잘못 적혀서 서버와 대응할 수 없다는 것을 발견했습니다. 기록하세요!



그중 rpc.addproperty("account",account);rpc로 썼어요.addproperty("accout",account);pc.addProperty("account", account);


public void loginService(String account,String password,String bundleNo) { try { SoapObject rpc = new SoapObject(NAMESPACE, METHOD_NAME); rpc.addProperty("account", account); rpc.addProperty("password", password); rpc.addProperty("bundleNo", bundleNo); HttpTransportSE ht = new HttpTransportSE(ENDPOINT); ht.debug = true; SoapSerializationEnvelope envelope = new SoapSerializationEnvelope( SoapEnvelope.VER11); envelope.bodyOut = rpc; envelope.dotNet = true; envelope.setOutputSoapObject(rpc); ht.call(SOAP_ACTION, envelope); SoapObject result = (SoapObject) envelope.bodyIn; if (result != null) { Log.e("TAG", "get webservice succeed"); } else { Log.e("TAG", "get webservice failed"); } // getData(detail); } catch (Exception e) { e.printStackTrace(); } } va.lang.ClassCastException: org.ksoap2.SoapFault

좋은 웹페이지 즐겨찾기