gpt4 book ai didi

android - Android 登录中的 Soap Web 服务

转载 作者:太空狗 更新时间:2023-10-29 16:41:24 25 4
gpt4 key购买 nike

我有一个安卓应用程序。在这里,我必须使用 soap webservices 创建带有 mysql 连接的登录页面。

我的代码在 android 2.2 版本上运行良好。但它在 android 4.0 上不工作。

所以这里我不得不使用asynchronousTask。但是我不知道asynchronousTask。请帮助我解决这些问题。

编辑:

我使用了以下代码:

public class AndroidLoginExampleActivity extends Activity {
private final String NAMESPACE = "http://ws.userlogin.com";
private final String URL = "http://111.223.128.10:8085/AndroidLogin/services/Login?wsdl";
private final String SOAP_ACTION = "http://ws.userlogin.com/authentication";
private final String METHOD_NAME = "authentication";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button login = (Button) findViewById(R.id.btn_login);
login.setOnClickListener(new View.OnClickListener() {

public void onClick(View arg0) {
new LongOperation().execute();

}
} );
}
class LongOperation extends AsyncTask<String, Void, String> {
private ProgressDialog Dialog = new ProgressDialog(LoginActivity.this);

@Override
protected String doInBackground(String... aurl) {
// TODO Auto-generated method stub
loginAction();
return null;
}

protected void onPreExecute() {
Dialog.setMessage("Loading...");
Dialog.show();
}

protected void onPostExecute(String resultGot) {
Dialog.dismiss();
}
}
private void loginAction(){
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

EditText userName = (EditText) findViewById(R.id.tf_userName);
String user_Name = userName.getText().toString();
EditText userPassword = (EditText) findViewById(R.id.tf_password);
String user_Password = userPassword.getText().toString();

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

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

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

runOnUiThread(new Runnable() {
@Override
public void run() {
try{

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

TextView result = (TextView) findViewById(R.id.tv_status);
result.setText(response.toString());

}
catch(Exception e){

}
});
}

}

现在也出现同样的错误:

在那之前:

现在我必须在目标版本 android 4.0 上创建应用程序意味着它在 android 2.2 上运行良好。但它在 android 4.0 版本上不起作用。请检查我的代码并给我解决方案。

最佳答案

第 1 步。请在您现有的 AndroidLoginExampleActivity 中创建一个 extends AsyncTask 的类,如下所示:

class LongOperation extends AsyncTask<String, Void, String> {
private ProgressDialog Dialog = new ProgressDialog(OffersActivity.this);

@Override
protected String doInBackground(String... aurl) {
// TODO Auto-generated method stub
loginAction();
return null;
}

protected void onPreExecute() {
Dialog.setMessage("Loading...");
Dialog.show();
}

protected void onPostExecute(String resultGot) {
Dialog.dismiss();
}
}

第 2 步。调用您的方法 loginAction();,您已在其中实现了服务器实现代码。

第 3 步。从 Activity 的 AndroidLoginExampleActivity onCreate() 方法中执行 LongOperation 类,如下所示:

public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

new LongOperation().execute();

}

第 4 步。只是您想知道您不能直接在 doInBackground() 中执行任何 UI 任务,在您的情况下,您正在此处实现 TextView ,对于此问题,您必须执行 runOnUiThread(new Runnable() 然后编写所有 UI 的代码(在您的情况下为 TextView)。请参见下面的代码...

 runOnUiThread(new Runnable() {
@Override
public void run() {

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

TextView result = (TextView) findViewById(R.id.tv_status);
result.setText(response.toString());

}
catch(Exception e){

}

}
});

您可以直接将此代码部分粘贴到您的 loginAction() 方法中....

如果有任何困惑,请告诉我......

希望,现在您也可以在 ICS 和 JellyBean 中运行您的应用...:)

关于android - Android 登录中的 Soap Web 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17170175/

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