我正在尝试在android studio中创建一个项目来使用来自android的web服务。我的应用程序编译时没有错误,但是当我运行它时,所需的输出不会显示为完全不起作用。
网络服务链接: -
http://202.54.216.49/logs/test.asmx
http://202.54.216.49/logs/test.asmx?WSDL
MainActivity.java -
package com.example.abhimanyu.ws_soap;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
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;
public class MainActivity extends AppCompatActivity {
EditText textBox,textBox2;
Button button;
TextView ans;
String URL = "http://202.54.216.49/logs/test.asmx?WSDL";
String NAMESPACE = "http://tempuri.org";
String SOAP_ACTION = "http://tempuri.org/calculation";
String METHOD_NAME = "calculation";
String PARAMETER_NAME1 = "a";
String PARAMETER_NAME2 = "b";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textBox = (EditText)findViewById(R.id.txtBox);
textBox2 = (EditText)findViewById(R.id.txtBox2);
button = (Button)findViewById(R.id.btn);
ans = (TextView)findViewById(R.id.answer);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
new CallWebService().execute(textBox.getText().toString(),textBox2.getText().toString());
}
});
}
class CallWebService extends AsyncTask<String, Void, String> {
@Override
protected void onPostExecute(String s) {
ans.setText(s);
}
@Override
protected String doInBackground(String... params) {
String result = "";
SoapObject soapObject = new SoapObject(NAMESPACE, METHOD_NAME);
PropertyInfo propertyInfo1 = new PropertyInfo();
propertyInfo1.setName(PARAMETER_NAME1);
propertyInfo1.setValue(params[0]);
propertyInfo1.setType(String.class);
PropertyInfo propertyInfo2 = new PropertyInfo();
propertyInfo2.setName(PARAMETER_NAME2);
propertyInfo2.setValue(params[1]);
propertyInfo2.setType(String.class);
soapObject.addProperty("a",propertyInfo1);
soapObject.addProperty("b",propertyInfo2);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.setOutputSoapObject(soapObject);
HttpTransportSE httpTransportSE = new HttpTransportSE(URL);
try {
httpTransportSE.call(SOAP_ACTION, envelope);
SoapPrimitive soapPrimitive = (SoapPrimitive)envelope.getResponse();
result = soapPrimitive.toString();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}
}
activity_main.xml中 -
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
tools:context="com.example.abhimanyu.ws_soap.MainActivity">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/txtBox"
android:layout_marginBottom="5dp" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/txtBox2"
android:layout_below="@id/txtBox"
android:layout_marginBottom="5dp"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Calculate"
android:id="@+id/btn"
android:layout_below="@+id/txtBox2"
android:layout_marginBottom="5dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/answer"
android:layout_below="@id/btn"/>
</RelativeLayout>
注意:我从互联网上复制了这段代码,并根据我的要求做了一些调整。但是,我是android studio中的新手,所以很可能那些调整做错了。
答案 0 :(得分:0)
试试这个。
for each in list:
print(each)
答案 1 :(得分:0)
这是我的最终代码,现在它的工作非常好。谢谢你的帮助。
package com.example.abhimanyu.ws_soap;
import android.content.Context;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
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;
public class MainActivity extends AppCompatActivity {
EditText textBox, textBox2;
Button button;
TextView ans;
String URL = "http://202.54.216.49/logs/test.asmx";
String NAMESPACE = "http://tempuri.org/";
String SOAP_ACTION = "http://tempuri.org/calculation";
String METHOD_NAME = "calculation";
String PARAMETER_NAME1 = "a";
String PARAMETER_NAME2 = "b";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textBox = (EditText) findViewById(R.id.txtBox);
textBox2 = (EditText) findViewById(R.id.txtBox2);
button = (Button) findViewById(R.id.btn);
ans = (TextView) findViewById(R.id.answer);
final Context context;
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
new CallWebService().execute(textBox.getText().toString(), textBox2.getText().toString());
}
});
}
class CallWebService extends AsyncTask<String, Void, String> {
@Override
protected void onPostExecute(String s) {
ans.setText(s);
}
@Override
protected void onPreExecute() {
Log.i("onPreexecute","running");
super.onPreExecute();
}
@Override
protected String doInBackground(String... params) {
String result = null;
SoapObject soapObject = new SoapObject(NAMESPACE, METHOD_NAME);
PropertyInfo propertyInfo1 = new PropertyInfo();
propertyInfo1.setName(PARAMETER_NAME1);
propertyInfo1.setValue(params[0]);
propertyInfo1.setType(String.class);
soapObject.addProperty(propertyInfo1);
PropertyInfo propertyInfo2 = new PropertyInfo();
propertyInfo2.setName(PARAMETER_NAME2);
propertyInfo2.setValue(params[1]);
propertyInfo2.setType(String.class);
soapObject.addProperty(propertyInfo2);
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet=true;
envelope.implicitTypes=true;
envelope.setOutputSoapObject(soapObject);
HttpTransportSE httpTransportSE = new HttpTransportSE(URL);
try {
httpTransportSE.call(SOAP_ACTION, envelope);
SoapPrimitive soapPrimitive = (SoapPrimitive)envelope.getResponse();
result = soapPrimitive.toString();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}
}