Basic Authentication Get JSP Method Return Code : Http Client : Apache Common : Java examples (example source code) Organized by topic

Java
C++
PHP
Java Home »  Apache Common   » [  Http Client  ]  Screenshots 
 



Basic Authentication Get JSP Method Return Code

import org.apache.commons.httpclient.URI;
import org.apache.commons.httpclient.HttpState;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.Credentials;
import org.apache.commons.httpclient.auth.AuthScope;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.HostConfiguration;
import org.apache.commons.httpclient.UsernamePasswordCredentials;

public class BasicAuthenticationGetJSPMethodReturnCode {

  public static void main(String args[]) throws Exception {

    HttpClient client = new HttpClient();
    client.getParams().setParameter("http.useragent""My Browser");

    HostConfiguration host = client.getHostConfiguration();
    host.setHost(new URI("http://localhost:8080"true));

    GetMethod method = new GetMethod("/commons/folder/protected.jsp");
    try{
      int statusCode = client.executeMethod(host, method);

      if(statusCode == HttpStatus.SC_UNAUTHORIZED) {
        System.err.println("Authorization required by server");
        Credentials credentials =new UsernamePasswordCredentials("tomcat""tomcat");
        AuthScope authScope = new AuthScope(host.getHost(), host.getPort());
        HttpState state = client.getState();
        state.setCredentials(authScope, credentials);

        client.executeMethod(host, method);
      }

      System.err.println(method.getStatusLine());
      System.err.println(method.getResponseBodyAsString());
    catch(Exception e) {
      System.err.println(e);
    finally {
      method.releaseConnection();
    }
  }
}
           
       
Download: BasicAuthenticationGetJSPMethodReturnCode.zip   ( 329  K )  
Related examples in the same category
1.  Get Http methods
2.  Get Http client parameters
3.  Execute Http method (post/get)Has Download File
4.  Http Client Simple Demo
5.  Get allowed http methods
6.  Http post method ExampleHas Download File
7.  Connect Method Example For Proxy ClientHas Download File
8.  Basic Authentication Execute JSP MethodHas Download File
9.  Basic Authentication For JSP PageHas Download File
10.  Get Cookie value and set cookie valueHas Download File
11.  Using Http Client Inside Thread








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.