Tuesday, March 16, 2021

Android WebService

 

Android Web Service Tutorial

Creating web service application in android is not a difficult task. We can easily create a restful web service application in android to authenticate or save information into the external database such as oracle, mysql, postgre sql, sql server using other application developed in java, .net, php etc languages. That is what we are going to do.

Android Restful Web Service Tutorial

Before developing web services application, you must have basic knowledge of SOAP and Restful web services. That is why, we are going to discuss basic points about web services such as what is web service and brief information about SOAP and Restful web services.

What is Web Service?

A web service is a standard for exchanging information between different types of applications irrespective of language and platform. For example, an android application can interact with java or .net application using web services.

Android Restful Web Service Example

File: activity_main.xml
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:paddingBottom="@dimen/activity_vertical_margin"  
  6.     android:paddingLeft="@dimen/activity_horizontal_margin"  
  7.     android:paddingRight="@dimen/activity_horizontal_margin"  
  8.     android:paddingTop="@dimen/activity_vertical_margin"  
  9.     tools:context=".MainActivity" >  
  10.   
  11.     <EditText  
  12.         android:id="@+id/editText1"  
  13.         android:layout_width="wrap_content"  
  14.         android:layout_height="wrap_content"  
  15.         android:layout_alignParentTop="true"  
  16.         android:layout_centerHorizontal="true"  
  17.         android:hint="Username"  
  18.         android:ems="10" >  
  19.   
  20.         <requestFocus />  
  21.     </EditText>  
  22.   
  23.     <EditText  
  24.         android:id="@+id/editText2"  
  25.         android:layout_width="wrap_content"  
  26.         android:layout_height="wrap_content"  
  27.         android:layout_alignLeft="@+id/editText1"  
  28.         android:layout_below="@+id/editText1"  
  29.         android:layout_marginTop="67dp"  
  30.         android:ems="10"  
  31.         android:hint="Password"  
  32.         android:inputType="textPassword" />  
  33.   
  34.     <Button  
  35.         android:id="@+id/button2"  
  36.         android:layout_width="wrap_content"  
  37.         android:layout_height="wrap_content"  
  38.         android:layout_alignParentBottom="true"  
  39.         android:layout_marginBottom="24dp"  
  40.         android:layout_toRightOf="@+id/button1"  
  41.         android:text="New User" />  
  42.   
  43.     <ProgressBar  
  44.         android:id="@+id/progressBar1"  
  45.         style="?android:attr/progressBarStyleLarge"  
  46.         android:layout_width="wrap_content"  
  47.         android:layout_height="wrap_content"  
  48.         android:layout_alignLeft="@+id/button1"  
  49.         android:layout_below="@+id/editText2"  
  50.         android:layout_marginTop="22dp" />  
  51.   
  52.     <Button  
  53.         android:id="@+id/button1"  
  54.         android:layout_width="wrap_content"  
  55.         android:layout_height="wrap_content"  
  56.         android:layout_alignLeft="@+id/editText2"  
  57.         android:layout_below="@+id/progressBar1"  
  58.         android:layout_marginLeft="22dp"  
  59.         android:text="Login" />  
  60.   
  61. </RelativeLayout>  

File: activity_register_user.xml

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:layout_width="fill_parent"  
  3.     android:layout_height="fill_parent" >  
  4.   
  5.     <EditText  
  6.         android:id="@+id/editText1"  
  7.         android:layout_width="wrap_content"  
  8.         android:layout_height="wrap_content"  
  9.         android:layout_alignParentTop="true"  
  10.         android:layout_centerHorizontal="true"  
  11.         android:layout_marginTop="15dp"  
  12.         android:ems="10"  
  13.         android:hint="Enter UserName" />  
  14.   
  15.     <EditText  
  16.         android:id="@+id/editText2"  
  17.         android:layout_width="wrap_content"  
  18.         android:layout_height="wrap_content"  
  19.         android:layout_alignLeft="@+id/editText1"  
  20.         android:layout_below="@+id/editText1"  
  21.         android:layout_marginTop="50dp"  
  22.         android:ems="10"  
  23.         android:hint="Enter Password"  
  24.         android:inputType="textPassword" />  
  25.   
  26.     <Button  
  27.         android:id="@+id/button1"  
  28.         android:layout_width="wrap_content"  
  29.         android:layout_height="wrap_content"  
  30.         android:layout_alignParentBottom="true"  
  31.         android:layout_centerHorizontal="true"  
  32.         android:text="Resister" />  
  33.   
  34.     <ProgressBar  
  35.         android:id="@+id/progressBar1"  
  36.         style="?android:attr/progressBarStyleLarge"  
  37.         android:layout_width="wrap_content"  
  38.         android:layout_height="wrap_content"  
  39.         android:layout_alignLeft="@+id/button1"  
  40.         android:layout_below="@+id/editText2"  
  41.         android:layout_marginTop="87dp" />  
  42.   
  43. </RelativeLayout>  

MainActivity class

File: MainActivity.java
  1. package com.example.newrestapi;  
  2.   
  3. import java.io.BufferedReader;  
  4. import java.io.InputStream;  
  5. import java.io.InputStreamReader;  
  6. import java.util.ArrayList;  
  7. import java.util.List;  
  8. import org.apache.http.HttpEntity;  
  9. import org.apache.http.HttpResponse;  
  10. import org.apache.http.NameValuePair;  
  11. import org.apache.http.client.HttpClient;  
  12. import org.apache.http.client.entity.UrlEncodedFormEntity;  
  13. import org.apache.http.client.methods.HttpPost;  
  14. import org.apache.http.impl.client.DefaultHttpClient;  
  15. import org.apache.http.message.BasicNameValuePair;  
  16. import android.os.AsyncTask;  
  17. import android.os.Bundle;  
  18. import android.app.Activity;  
  19. import android.content.Intent;  
  20. import android.view.View;  
  21. import android.view.View.OnClickListener;  
  22. import android.widget.Button;  
  23. import android.widget.EditText;  
  24. import android.widget.ProgressBar;  
  25. import android.widget.Toast;  
  26.   
  27. public class MainActivity extends Activity {  
  28.     EditText password,userName;  
  29.     Button login,resister;  
  30.     ProgressBar progressBar;  
  31.       
  32.       
  33.          
  34.     protected void onCreate(Bundle savedInstanceState) {  
  35.         super.onCreate(savedInstanceState);  
  36.         setContentView(R.layout.activity_main);  
  37.         password=(EditText) findViewById(R.id.editText2);  
  38.         userName=(EditText) findViewById(R.id.editText1);  
  39.         login=(Button) findViewById(R.id.button1);  
  40.         resister=(Button) findViewById(R.id.button2);  
  41.           
  42.         //progess_msz.setVisibility(View.GONE);  
  43.         progressBar=(ProgressBar) findViewById(R.id.progressBar1);  
  44.         progressBar.setVisibility(View.GONE);  
  45.           
  46.           
  47.         resister.setOnClickListener(new OnClickListener() {  
  48.               
  49.             @Override  
  50.             public void onClick(View arg0) {  
  51.                 // TODO Auto-generated method stub  
  52.                 Intent  intent=new Intent(MainActivity.this,ResisterUser.class);  
  53.                 startActivity(intent);  
  54.             }  
  55.         });  
  56.         login.setOnClickListener(new OnClickListener() {  
  57.           
  58.             public void onClick(View v) {  
  59.                 progressBar.setVisibility(View.VISIBLE);  
  60.                   
  61.                 String s1=userName.getText().toString();  
  62.                 String s2=password.getText().toString();  
  63.                 new ExecuteTask().execute(s1,s2);  
  64.                   
  65.             }  
  66.         });  
  67.           
  68.   
  69.     }  
  70.       
  71.      class ExecuteTask extends AsyncTask<String, Integer, String>  
  72.         {  
  73.   
  74.             @Override  
  75.             protected String doInBackground(String... params) {  
  76.                   
  77.                 String res=PostData(params);  
  78.                   
  79.                 return res;  
  80.             }  
  81.               
  82.             @Override  
  83.             protected void onPostExecute(String result) {  
  84.             progressBar.setVisibility(View.GONE);  
  85.             //progess_msz.setVisibility(View.GONE);  
  86.             Toast.makeText(getApplicationContext(), result, 3000).show();  
  87.             }  
  88.               
  89.         }  
  90.       
  91.     public String PostData(String[] valuse) {  
  92.         String s="";  
  93.         try  
  94.         {  
  95.         HttpClient httpClient=new DefaultHttpClient();  
  96.         HttpPost httpPost=new HttpPost("http://10.0.0.8:7777/HttpPostServlet/servlet/Login");  
  97.           
  98.         List<NameValuePair> list=new ArrayList<NameValuePair>();  
  99.         list.add(new BasicNameValuePair("name", valuse[0]));  
  100.         list.add(new BasicNameValuePair("pass",valuse[1]));  
  101.         httpPost.setEntity(new UrlEncodedFormEntity(list));  
  102.         HttpResponse httpResponse=  httpClient.execute(httpPost);  
  103.       
  104.         HttpEntity httpEntity=httpResponse.getEntity();  
  105.         s= readResponse(httpResponse);  
  106.     
  107.         }  
  108.         catch(Exception exception)  {}  
  109.         return s;  
  110.       
  111.           
  112.     }  
  113.     public String readResponse(HttpResponse res) {  
  114.         InputStream is=null;   
  115.         String return_text="";  
  116.         try {  
  117.             is=res.getEntity().getContent();  
  118.             BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(is));  
  119.             String line="";  
  120.             StringBuffer sb=new StringBuffer();  
  121.             while ((line=bufferedReader.readLine())!=null)  
  122.             {  
  123.             sb.append(line);  
  124.             }  
  125.             return_text=sb.toString();  
  126.         } catch (Exception e)  
  127.         {  
  128.               
  129.         }  
  130.         return return_text;  
  131.           
  132.     }  
  133.       
  134. }  

RegisterUser class

File: RegisterUser.java
  1. package com.example.newrestapi;  
  2.   
  3. import java.util.ArrayList;  
  4. import java.util.List;  
  5. import org.apache.http.NameValuePair;  
  6. import org.apache.http.client.HttpClient;  
  7. import org.apache.http.client.entity.UrlEncodedFormEntity;  
  8. import org.apache.http.client.methods.HttpPost;  
  9. import org.apache.http.impl.client.DefaultHttpClient;  
  10. import org.apache.http.message.BasicNameValuePair;  
  11. import android.os.AsyncTask;  
  12. import android.os.Bundle;  
  13. import android.app.Activity;  
  14. import android.view.View;  
  15. import android.view.View.OnClickListener;  
  16. import android.widget.Button;  
  17. import android.widget.EditText;  
  18. import android.widget.ProgressBar;  
  19.   
  20. public class ResisterUser extends Activity {  
  21.      EditText userName,passwprd;  
  22.        Button resister,login;  
  23.        ProgressBar progressBar;  
  24.         protected void onCreate(Bundle savedInstanceState) {  
  25.             super.onCreate(savedInstanceState);  
  26.             setContentView(R.layout.activity_resister_user);  
  27.             userName=(EditText) findViewById(R.id.editText1);;  
  28.             passwprd=(EditText) findViewById(R.id.editText2);  
  29.             resister=(Button) findViewById(R.id.button1);  
  30.               
  31.             progressBar=(ProgressBar) findViewById(R.id.progressBar1);  
  32.             progressBar.setVisibility(View.GONE);  
  33.               
  34.             resister.setOnClickListener(new OnClickListener() {  
  35.                   
  36.                 @Override  
  37.                 public void onClick(View v) {  
  38.                       
  39.                     progressBar.setVisibility(View.VISIBLE);  
  40.                       
  41.                     String s1=userName.getText().toString();  
  42.                     String s2=passwprd.getText().toString();  
  43.                     new ExecuteTask().execute(s1,s2);  
  44.                 }  
  45.             });  
  46.               
  47.              
  48.               
  49.               
  50.         }  
  51.           
  52.         class ExecuteTask extends AsyncTask<String, Integer, String>  
  53.         {  
  54.   
  55.             @Override  
  56.             protected String doInBackground(String... params) {  
  57.                   
  58.                 PostData(params);  
  59.                 return null;  
  60.             }  
  61.               
  62.             @Override  
  63.             protected void onPostExecute(String result) {  
  64.             progressBar.setVisibility(View.GONE);  
  65.             }  
  66.               
  67.         }  
  68.           
  69.          
  70.           
  71.         public void PostData(String[] valuse) {  
  72.             try  
  73.             {  
  74.             HttpClient httpClient=new DefaultHttpClient();  
  75.             HttpPost httpPost=new HttpPost(  
  76.                                   "http://10.0.0.8:7777/HttpPostServlet/servlet/httpPostServlet");  
  77.             List<NameValuePair> list=new ArrayList<NameValuePair>();  
  78.             list.add(new BasicNameValuePair("name", valuse[0]));  
  79.             list.add(new BasicNameValuePair("pass",valuse[1]));  
  80.             httpPost.setEntity(new UrlEncodedFormEntity(list));  
  81.             httpClient.execute(httpPost);  
  82.             }  
  83.             catch(Exception e)  
  84.             {  
  85.                 System.out.println(e);  
  86.             }  
  87.               
  88.         }  
  89.          
  90.         }  

File: AndroidManifest.xml

You need to provide INTERNET permission in AndroidManifest.xml file.

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.example.newrestapi"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk  
  8.         android:minSdkVersion="8"  
  9.         android:targetSdkVersion="17" />  
  10.   
  11.     <uses-permission android:name="android.permission.INTERNET" />  
  12.   
  13.     <application  
  14.         android:allowBackup="true"  
  15.         android:icon="@drawable/ic_launcher"  
  16.         android:label="@string/app_name"  
  17.         android:theme="@style/AppTheme" >  
  18.         <activity  
  19.             android:name="com.example.newrestapi.MainActivity"  
  20.             android:label="@string/app_name" >  
  21.             <intent-filter>  
  22.                 <action android:name="android.intent.action.MAIN" />  
  23.   
  24.                 <category android:name="android.intent.category.LAUNCHER" />  
  25.             </intent-filter>  
  26.         </activity>  
  27.         <activity  
  28.             android:name="com.example.newrestapi.ResisterUser"  
  29.             android:label="@string/title_activity_resister_user" >  
  30.         </activity>  
  31.     </application>  
  32.   
  33. </manifest>  



Output:

android web service example output 1 android web service example output 2

No comments:

Post a Comment

Inapp update

  Inapp update https://desk.zoho.com/portal/vegabirdtech/en/kb/articles/how-to-use-burp-suite-with-android-mobile