gpt4 book ai didi

java - 如何通过 ksoap2 和 axis2 Web 服务正确使用 asynctask

转载 作者:行者123 更新时间:2023-12-01 18:47:48 27 4
gpt4 key购买 nike

我使用 Web 服务向导从动态 Web 项目开发了一个 Web 服务(遵循教程,所以我不太确定我在做什么)。本教程让我安装 axis2 插件,因此我假设这是用于生成 Web 服务的插件。无论如何,当我从浏览器中尝试该服务时,该服务正在运行,因此该部分没有问题。

我的问题是,我想从 Android 应用程序访问此 Web 服务。这两天看了很多教程,尝试实现一个,但后来发现它已经过时了,它尝试在主线程中连接网络,而android 3.0之后不允许这样做。然后我发现了 asynctask 并尝试了它,但有太多我不明白的地方。我发现的教程没有解释其中任何一个,所以我在这里问。

我在听说 asynctask 之前编写的代码在这里:

import org.ksoap2.SoapEnvelope; 
import org.ksoap2.serialization.PropertyInfo;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapPrimitive;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity {

private final String NAMESPACE = "http://eko.erdem.com";
private final String URL = "http://159.20.89.38:9398/EkoBiletTest/services/EkoClass?wsdl";
private final String SOAP_ACTION = "http://eko.erdem.com/homePage";
private final String METHOD_NAME = "homePage";

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);


SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

String place = "Paris";
String checkinDate = "2013-06-10";
String checkoutDate = "2013-06-12";

//Pass value for place variable of the web service
PropertyInfo placeProp =new PropertyInfo();
placeProp.setName("place");//Define the variable name in the web service method
placeProp.setValue(place);//Define value for place variable
placeProp.setType(String.class);//Define the type of the variable
request.addProperty(placeProp);//Pass properties to the variable

//Pass value for checkinDate variable of the web service
PropertyInfo checkinDateProp =new PropertyInfo();
checkinDateProp.setName("checkinDate");
checkinDateProp.setValue(checkinDate);
checkinDateProp.setType(String.class);
request.addProperty(checkinDateProp);


//Pass value for checkinDate variable of the web service
PropertyInfo checkoutDateProp =new PropertyInfo();
checkoutDateProp.setName("checkoutDate");
checkoutDateProp.setValue(checkoutDate);
checkoutDateProp.setType(String.class);
request.addProperty(checkoutDateProp);



SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

try {
androidHttpTransport.call(SOAP_ACTION, envelope);
SoapPrimitive response = (SoapPrimitive)envelope.getResponse();


TextView tv = (TextView) findViewById(R.id.textView);
tv.setText(response.toString());
setContentView(tv);

} catch (Exception e) {
e.printStackTrace();
}
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

}

现在我不知道代码的哪些部分应该在 asynctask 的哪个函数中( doinBackground() 等),而且我也不了解 asynctask 的参数发送系统。例如,如果我想将 NAMESPACE、URL、METHOD_NAME 等传递给 asynctask,我应该怎么做?另外我应该在哪里更新主要 Activity 的textView?如果有人可以向我指出涵盖这些问题的教程,那就太好了。我也非常感谢您对这些问题的任何回答。提前致谢。

最佳答案

任何与网络相关的工作都需要在 doInBackground 中完成AsyncTask的方法

要将数据发送到异步任务,您需要声明类的传入数据

puclic class MyNetowrkTask extends AsyncTask<String[],Void,Void>

<>中的第一个参数是传入的数据,第二个是进度,第三个是返回到 onPostExecute 的结果当任务完成时。

所以要传递字符串,你会做这样的事情

new MyNetworkTask().execute(new String[] {"namespace","url","method"});

doInBackground你得到这样的数据

protected Void doInBackground(String... params) {
String[] data = params[0];
String namespace = data[0];
String url = data[1];
String method = data[2];
....
}

UI 元素的任何更新都需要在 onPostExecute 中完成,因此如果您想更新 TextView ,则需要在那里完成。

代码并不完全正确,但这会让你开始明白这个想法

关于java - 如何通过 ksoap2 和 axis2 Web 服务正确使用 asynctask,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16970235/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com