Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8256763
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T01:58:08+00:00 2026-06-08T01:58:08+00:00

hi i successfully develped one login form with mysql database via soap webservices.here i

  • 0

hi i successfully develped one login form with mysql database via soap webservices.here i wish to make session management.but i can’t able to develop.so please help me.when i fill in the username and password is successful means it is go to next activity.the next activity have to displayed username.also if i click logout button means it is move to login form.now i ll go back means it is redirect to login page only…didnot go to displayed username activity.please guide me.

my code is:

package com.androidlogin.ws;
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.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

 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) {
loginAction();

}
});
}

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);

    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 result = (TextView) findViewById(R.id.tv_status);
           result.setText(response.toString());
       if(status.equals("Success!"))
               {

                   //   ADD  to save  and  read next time
                       String strUserName = userName.getText().toString().trim();
                       String strPassword = userPassword.getText().toString().trim();
                       if (null == strUserName || strUserName.length() == 0)
                                   {
                           //  showToast("Enter Your Name");
                         userName.setError( "username is required!" );
isUserValidated = false;
                       }
 if (null == strPassword || strPassword.length() == 0)
                                   {
                               //      showToast("Enter Your Password");
 isPasswordValidated = false;
                         userPassword.setError( "password is required!" );
                       } 
 if(isUserValidated = true && isPasswordValidated == true)
                                   {

                           if (chkRememberMe.isChecked())
                                           {
                               SharedPreferences loginPreferences = getSharedPreferences(SPF_NAME, Context.MODE_PRIVATE);
                               loginPreferences.edit().putString(USERNAME, strUserName).putString(PASSWORD, strPassword).commit();
                           } else
                                           {
                               SharedPreferences loginPreferences = getSharedPreferences(SPF_NAME, Context.MODE_PRIVATE);
                               loginPreferences.edit().clear().commit();
                                           }
        }

        if(isUserValidated && isPasswordValidated)
     {
               Intent intent = new Intent(Login.this,HomePage.class);
                  **intent.putExtra("username",userName.getText().toString());**
                  startActivity(intent);
         }
      else
       {
     // what ever you want to do if the data in the EditText is not validated.
    //Maybe restart the same intent ?    
      // Intent i = new Intent(getApplicationContext(), Login.class);    startActivity(i);


         }

                                   }

                       else
                          {
                           Intent i = new Intent(getApplicationContext(), Login.class);
                             startActivity(i);
                          }
                         }



    catch(Exception e){

    }
   }

  }

How is make session concepts using shared preferences in dis android login form application.

Thank You

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T01:58:10+00:00Added an answer on June 8, 2026 at 1:58 am

    You can easily implement this, if you use SharedPreferences and the Activities lifecycle.

    Let’s say you have Activity A – the display loging Activity, and Activity B – the logout Activity + display username Activity.

    In Activity A, in your loginAction() method, put a boolean flag to track if the user is logged. If the user is valid, perform the login actions, set that flag to TRUE, than start your Activity B.

    In Activity B in the onResume() method, make a check each time, if the flag is TRUE or FALSE. If the flag is TRUE do nothing, if the flag is FALSE start Activity A (back to login screen). Something like:

    @Override
    protected void onResume() {
        super.onResume();
    
        boolean isLogged = <yourSharedPrefs>.getBoolean(IS_LOGGED, Boolean.FALSE);
    
        if (!isLogged) {
                        //here start your login Activity
            startActivity(new Intent(this, ActivityA.class));
        }
    
    }
    

    The logout button in Activity B, should set the flag to FALSE and than start Activity A.

    This way when you click the back button, your app will load Activity B, but the check in onResume() will detect that the user is not logged, and Activity A will be started.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi i developed one login form calling soap webservices.it is success fully worked for
Hi i have to developed one sample app.Here i wish to select the app
I successfully connected to my database when it was SQL Server 2008 R2. However
Hi i have successfully developed one listview app..now i have to click any item
i have developed one app.here i have to parse the value from one activity
With your help I have successfully resolved a question that I have asked here
I have to developed one expandablelistview.here if i have to run the program means
Ive developed an app for iPhone. Ive successfully tested it in the iPhone Simulator,
I have developed a view based project in Xcode. It is successfully running in
I did an Android project and run it. It ran successfully. I developed a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.