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 6650657
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:55:05+00:00 2026-05-26T00:55:05+00:00

in my app i try to get access to some web service. I’m going

  • 0

in my app i try to get access to some web service. I’m going through form based authentication and getting an authorized connection. If i passed authorization i want open new Activity, but any new instance of DefaultHttpClient got unauthorized right.

And questions is:
1) How pass this connection through activity
2) Or how keep connection authorized correctly, if i think about httpclient interceptor, I’m on the right way? If, yes, then first question remain, but relativity of pass CookieStore data.

  • 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-05-26T00:55:06+00:00Added an answer on May 26, 2026 at 12:55 am

    You should almost always make a class that handles your Http Requests call is ConnectionManager thats the most common name.
    And you should make it with Singleton Design Pattern. This way your connections will be handled correctly.

    public class ConnectionManager {
        private static ConnectionManager instance = null;
    private DefaultHttpClient client;
    
        private ConnectionManager() {
            client = new DefaultHttpClient(...);
        }
        //public method that will be invoked from other classes.
        public static ConnectionManager getInstance() {
            if(instance == null) {
            instance = new ConnectionManager();
            }
           return instance;
        }
    
        public void authenticate(){
     // Do your auth call with the client here
    }
    
        public void postStuff(){
     // Use the same client here, this way you keep using the same client for ALL of your calls.
    }
    }
    

    When you need to use the ConnectionManager use this:

    private static ConnectionManager conn = ConnectionManager.getInstance();
    conn.authenticate();
    conn.postStuff();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on some scraping app, i wanted to try to get it
Hello,I need to get the webcam input in my web app through web browser,
i try to get some data via WCF. İ created below app.config. But i
I am experiencing some difficulty getting a companies web service test-suite environment up and
For an ios app I try to develop, I need to get a listing
My app crash when I try to access any property of my NSDecimalNumber amount_before_current_year:
I try to create a very simple app using windows API. I've done some
i am making an iphone app that get data from web ,i use HPPLE
I am developing an Android App that gets some data from a web server,
I'm writing an app and I need to access some json data in the

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.