Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am authenticating trying to login to a webservice with username and pwd. Then I have to use sessionid in subsequent we calls . I am using apache HttpClient (legacy version) 2.0.2 .

Below is my client side code to authenticate . My question is , how do I get session Id after I authenticate and How to use same session id in subsequent calls .

import java.io.IOException;

import org.apache.commons.httpclient.Header;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.methods.GetMethod;
public class TestHttpClient {


        public static void main(String args[]) {
            try {
                HttpClient client = new HttpClient();
                GetMethod get = new HttpGet("www.google.com");

                org.apache.commons.httpclient.UsernamePasswordCredentials upc =
                        new org.apache.commons.httpclient.UsernamePasswordCredentials("user", "pwd");

                client.getState().setCredentials(null, null, upc);

                get.setDoAuthentication(true);

                client.setConnectionTimeout(60000);

                client.executeMethod(get);

                System.out.println(get.getResponseBodyAsString());
            }
            catch (IOException e) {
                e.printStackTrace();
            }
        }

}

Thanks for helping newbie in web development.

share|improve this question

1 Answer

Here is how you can get the Session id:

.......

client.executeMethod(get); 

Header[] headers=get.getResponseHeader("jsessionid");

if(headers!=null && headers.length>0){

 String sessionId=headers[0].getValue();

}

I am sure there would be better way to handle the authenticated session without you reading the session id reciprocating.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.