transport.call()メソッドでksoap2が停止している状況が発生しています。transport.call()メソッドでKSOAPの実行が停止する
あなたの助けが私の唯一の希望であるため、検索後に解決策を見つけることができません。私は私のログだけに現れるのでtransport.call()が停止したことを知っている
:
Log.i(TAG, "start4");
はあなたの助けをいただき、ありがとうございます。ここではより多くの現在のコードがあります:
@Override
protected void onCreate(Bundle savedInstanceState) {
Log.i(TAG, "begining");
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tele = (TextView) findViewById(R.id.tele);
request res = new request();
Log.i(TAG, "start");
//try{
Log.i(TAG, "before Soapobject");
SoapObject Request = new SoapObject(NAMESPACE, METHOD_NAME);
Log.i(TAG, "start1");
SoapSerializationEnvelope soapEnvelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
Log.i(TAG, "start2");
soapEnvelope.dotNet = false;
Log.i(TAG, "start3");
soapEnvelope.setOutputSoapObject(Request);
HttpTransportSE transport = new HttpTransportSE(URL);
Log.i(TAG, "start4");
try{
transport.call(SOAP_ACTION, soapEnvelope);
Log.i(TAG, "transpoartCALL");
SoapObject resultString = (SoapObject) soapEnvelope.getResponse();
Log.i(TAG, "beforesetTele");
res.setTele(resultString.getProperty("tele").toString());
tele.setText(res.getTele().toString());
Log.i(TAG, "testing");
}catch(Exception e){
e.printStackTrace();
}
}
に
を交換してみてください? –
こんにちはmahdi私は何を意味するのですか? –
エラーや警告など、サーバーやアプリケーションから取得する場合 –