簡體   English   中英

從Android消費SOAP Web服務

[英]Consuming SOAP web services from Android

我試圖在android studio中創建一個項目,以使用android的網絡服務。 我的應用程序編譯沒有錯誤,但是當我運行它時,所需的輸出沒有顯示出來,好像它根本無法正常工作。

網絡服務鏈接:

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的新手,所以很可能這些調整做錯了什么。

嘗試這個。

public class test extends AsyncTask<String,Void,Integer>{
    int a;
    @Override
    protected void onPreExecute() {
        super.onPreExecute();
    }

    @Override
    protected Integer doInBackground(String... params) {
            String value1 = params[0];
            String value2 = params[1];
        try {
            SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
            request.addProperty("a", Integer.valueof(value1));
            request.addProperty("b", Integer.valueof(value2));
            SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
            envelope.dotNet = true;
            envelope.setOutputSoapObject(request);
            HttpTransportSE androidHttpTransport = new HttpTransportSE(URL, 60 * 10000);
            androidHttpTransport.call(SOAP_ACTION, envelope);
            SoapPrimitive soapPrimitive = (SoapPrimitive) envelope.getResponse();
            a = new Integer(Integer.valueOf(soapPrimitive.toString()));
        }catch (Exception e){

        }

        return a;
    }

    @Override
    protected void onPostExecute(Integer integer) {
        super.onPostExecute(integer);
        Toast.makeText(MeetActivity.this, ""+String.valueOf(integer), Toast.LENGTH_SHORT).show();
    }
}

這是我的最終代碼,現在可以正常工作。 謝謝您的幫助。

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;

        }
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM