Basic Authentication Execute JSP Method : Http Client « Apache Common « Java






Basic Authentication Execute JSP Method

import org.apache.commons.httpclient.URI;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.HostConfiguration;

public class BasicAuthenticationExecuteJSPMethod {

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

    HttpClient client = new HttpClient();
    client.getParams().setParameter("parameterKey", "value");

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

    GetMethod method = new GetMethod("/commons/folder/protected.jsp");
    try{
      client.executeMethod(host, method);
      System.err.println(method.getStatusLine());
      System.err.println(method.getResponseBodyAsString());
    } catch(Exception e) {
      System.err.println(e);
    } finally {
      method.releaseConnection();
    }
  }
}
           
       








BasicAuthenticationExecuteJSPMethod.zip( 328 k)

Related examples in the same category

1.Get Http methods
2.Get Http client parameters
3.Execute Http method (post/get)
4.Http Client Simple Demo
5.Get allowed http methods
6.Http post method Example
7.Connect Method Example For Proxy Client
8.Basic Authentication For JSP Page
9.Basic Authentication Get JSP Method Return Code
10.Get Cookie value and set cookie value
11.Using Http Client Inside Thread