本文整理匯總了Java中org.apache.commons.httpclient.methods.GetMethod.getRequestHeader方法的典型用法代碼示例。如果您正苦於以下問題:Java GetMethod.getRequestHeader方法的具體用法?Java GetMethod.getRequestHeader怎麽用?Java GetMethod.getRequestHeader使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.commons.httpclient.methods.GetMethod
的用法示例。
在下文中一共展示了GetMethod.getRequestHeader方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testCookieVersionSupportHeader1
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testCookieVersionSupportHeader1() throws IOException {
this.server.setHttpService(new CookieVer0Service());
this.client.getParams().setCookiePolicy(CookiePolicy.RFC_2965);
GetMethod httpget1 = new GetMethod("/test/");
try {
this.client.executeMethod(httpget1);
} finally {
httpget1.releaseConnection();
}
GetMethod httpget2 = new GetMethod("/test/");
try {
this.client.executeMethod(httpget2);
} finally {
httpget2.releaseConnection();
}
Header cookiesupport = httpget2.getRequestHeader("Cookie2");
assertNotNull(cookiesupport);
assertEquals("$Version=\"1\"", cookiesupport.getValue());
}
示例2: testCookieVersionSupportHeader2
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testCookieVersionSupportHeader2() throws IOException {
this.server.setHttpService(new CookieVer1Service());
this.client.getParams().setCookiePolicy(CookiePolicy.RFC_2965);
GetMethod httpget1 = new GetMethod("/test/");
try {
this.client.executeMethod(httpget1);
} finally {
httpget1.releaseConnection();
}
GetMethod httpget2 = new GetMethod("/test/");
try {
this.client.executeMethod(httpget2);
} finally {
httpget2.releaseConnection();
}
Header cookiesupport = httpget2.getRequestHeader("Cookie2");
assertNull(cookiesupport);
}
示例3: testCookieVersionSupportHeader3
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testCookieVersionSupportHeader3() throws IOException {
this.server.setHttpService(new CookieVer2Service());
this.client.getParams().setCookiePolicy(CookiePolicy.RFC_2965);
GetMethod httpget1 = new GetMethod("/test/");
try {
this.client.executeMethod(httpget1);
} finally {
httpget1.releaseConnection();
}
GetMethod httpget2 = new GetMethod("/test/");
try {
this.client.executeMethod(httpget2);
} finally {
httpget2.releaseConnection();
}
Header cookiesupport = httpget2.getRequestHeader("Cookie2");
assertNotNull(cookiesupport);
assertEquals("$Version=\"1\"", cookiesupport.getValue());
}
示例4: testBasicAuthenticationWithDefaultCreds
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testBasicAuthenticationWithDefaultCreds() throws Exception {
UsernamePasswordCredentials creds =
new UsernamePasswordCredentials("testuser", "testpass");
HttpRequestHandlerChain handlerchain = new HttpRequestHandlerChain();
handlerchain.appendHandler(new AuthRequestHandler(creds));
handlerchain.appendHandler(new HttpServiceHandler(new FeedbackService()));
HttpState state = new HttpState();
state.setCredentials(AuthScope.ANY, creds);
this.client.setState(state);
this.server.setRequestHandler(handlerchain);
GetMethod httpget = new GetMethod("/test/");
try {
this.client.executeMethod(httpget);
} finally {
httpget.releaseConnection();
}
assertNotNull(httpget.getStatusLine());
assertEquals(HttpStatus.SC_OK, httpget.getStatusLine().getStatusCode());
Header auth = httpget.getRequestHeader("Authorization");
assertNotNull(auth);
String expected = "Basic " + EncodingUtil.getAsciiString(
Base64.encodeBase64(EncodingUtil.getAsciiBytes("testuser:testpass")));
assertEquals(expected, auth.getValue());
AuthState authstate = httpget.getHostAuthState();
assertNotNull(authstate.getAuthScheme());
assertTrue(authstate.getAuthScheme() instanceof BasicScheme);
assertEquals("test", authstate.getRealm());
}
示例5: testBasicAuthentication
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testBasicAuthentication() throws Exception {
UsernamePasswordCredentials creds =
new UsernamePasswordCredentials("testuser", "testpass");
HttpRequestHandlerChain handlerchain = new HttpRequestHandlerChain();
handlerchain.appendHandler(new AuthRequestHandler(creds));
handlerchain.appendHandler(new HttpServiceHandler(new FeedbackService()));
HttpState state = new HttpState();
AuthScope authscope = new AuthScope(
this.server.getLocalAddress(),
this.server.getLocalPort(),
"test");
state.setCredentials(authscope, creds);
this.client.setState(state);
this.server.setRequestHandler(handlerchain);
GetMethod httpget = new GetMethod("/test/");
try {
this.client.executeMethod(httpget);
} finally {
httpget.releaseConnection();
}
assertNotNull(httpget.getStatusLine());
assertEquals(HttpStatus.SC_OK, httpget.getStatusLine().getStatusCode());
Header auth = httpget.getRequestHeader("Authorization");
assertNotNull(auth);
String expected = "Basic " + EncodingUtil.getAsciiString(
Base64.encodeBase64(EncodingUtil.getAsciiBytes("testuser:testpass")));
assertEquals(expected, auth.getValue());
AuthState authstate = httpget.getHostAuthState();
assertNotNull(authstate.getAuthScheme());
assertTrue(authstate.getAuthScheme() instanceof BasicScheme);
assertEquals("test", authstate.getRealm());
}
示例6: testPreemptiveAuthorizationTrueWithCreds
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testPreemptiveAuthorizationTrueWithCreds() throws Exception {
UsernamePasswordCredentials creds =
new UsernamePasswordCredentials("testuser", "testpass");
HttpRequestHandlerChain handlerchain = new HttpRequestHandlerChain();
handlerchain.appendHandler(new AuthRequestHandler(creds));
handlerchain.appendHandler(new HttpServiceHandler(new FeedbackService()));
HttpState state = new HttpState();
state.setCredentials(AuthScope.ANY, creds);
this.client.setState(state);
this.client.getParams().setAuthenticationPreemptive(true);
this.server.setRequestHandler(handlerchain);
GetMethod httpget = new GetMethod("/test/");
try {
this.client.executeMethod(httpget);
} finally {
httpget.releaseConnection();
}
assertNotNull(httpget.getStatusLine());
assertEquals(HttpStatus.SC_OK, httpget.getStatusLine().getStatusCode());
Header auth = httpget.getRequestHeader("Authorization");
assertNotNull(auth);
String expected = "Basic " + EncodingUtil.getAsciiString(
Base64.encodeBase64(EncodingUtil.getAsciiBytes("testuser:testpass")));
assertEquals(expected, auth.getValue());
AuthState authstate = httpget.getHostAuthState();
assertNotNull(authstate.getAuthScheme());
assertTrue(authstate.getAuthScheme() instanceof BasicScheme);
assertNull(authstate.getRealm());
assertTrue(authstate.isPreemptive());
}
示例7: testPreemptiveAuthorizationTrueWithoutCreds
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testPreemptiveAuthorizationTrueWithoutCreds() throws Exception {
UsernamePasswordCredentials creds =
new UsernamePasswordCredentials("testuser", "testpass");
HttpRequestHandlerChain handlerchain = new HttpRequestHandlerChain();
handlerchain.appendHandler(new AuthRequestHandler(creds));
handlerchain.appendHandler(new HttpServiceHandler(new FeedbackService()));
HttpState state = new HttpState();
this.client.setState(state);
this.client.getParams().setAuthenticationPreemptive(true);
this.server.setRequestHandler(handlerchain);
GetMethod httpget = new GetMethod("/test/");
try {
this.client.executeMethod(httpget);
} finally {
httpget.releaseConnection();
}
assertNotNull(httpget.getStatusLine());
assertEquals(HttpStatus.SC_UNAUTHORIZED, httpget.getStatusLine().getStatusCode());
Header auth = httpget.getRequestHeader("Authorization");
assertNull(auth);
AuthState authstate = httpget.getHostAuthState();
assertNotNull(authstate.getAuthScheme());
assertTrue(authstate.getAuthScheme() instanceof BasicScheme);
assertNotNull(authstate.getRealm());
assertTrue(authstate.isPreemptive());
}
示例8: testBasicAuthenticationWithMutlipleRealms1
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testBasicAuthenticationWithMutlipleRealms1() throws Exception {
UsernamePasswordCredentials creds =
new UsernamePasswordCredentials("testuser", "testpass");
HttpRequestHandlerChain handlerchain = new HttpRequestHandlerChain();
handlerchain.appendHandler(new AuthRequestHandler(creds));
handlerchain.appendHandler(new HttpServiceHandler(new FeedbackService()));
HttpState state = new HttpState();
AuthScope realm1 = new AuthScope(
this.server.getLocalAddress(),
this.server.getLocalPort(),
"test");
AuthScope realm2 = new AuthScope(
this.server.getLocalAddress(),
this.server.getLocalPort(),
"test2");
state.setCredentials(realm1, new UsernamePasswordCredentials("testuser","testpass"));
state.setCredentials(realm2, new UsernamePasswordCredentials("testuser2","testpass2"));
this.client.setState(state);
this.server.setRequestHandler(handlerchain);
GetMethod httpget = new GetMethod("/test/");
try {
this.client.executeMethod(httpget);
} finally {
httpget.releaseConnection();
}
assertNotNull(httpget.getStatusLine());
assertEquals(HttpStatus.SC_OK, httpget.getStatusLine().getStatusCode());
Header auth = httpget.getRequestHeader("Authorization");
assertNotNull(auth);
String expected = "Basic " + EncodingUtil.getAsciiString(
Base64.encodeBase64(EncodingUtil.getAsciiBytes("testuser:testpass")));
assertEquals(expected, auth.getValue());
AuthState authstate = httpget.getHostAuthState();
assertNotNull(authstate.getAuthScheme());
assertTrue(authstate.getAuthScheme() instanceof BasicScheme);
assertEquals("test", authstate.getRealm());
}
示例9: testBasicAuthenticationWithMutlipleRealms2
import org.apache.commons.httpclient.methods.GetMethod; //導入方法依賴的package包/類
public void testBasicAuthenticationWithMutlipleRealms2() throws Exception {
UsernamePasswordCredentials creds =
new UsernamePasswordCredentials("testuser2", "testpass2");
HttpRequestHandlerChain handlerchain = new HttpRequestHandlerChain();
handlerchain.appendHandler(new AuthRequestHandler(creds, "test2"));
handlerchain.appendHandler(new HttpServiceHandler(new FeedbackService()));
HttpState state = new HttpState();
AuthScope realm1 = new AuthScope(
this.server.getLocalAddress(),
this.server.getLocalPort(),
"test");
AuthScope realm2 = new AuthScope(
this.server.getLocalAddress(),
this.server.getLocalPort(),
"test2");
state.setCredentials(realm1, new UsernamePasswordCredentials("testuser","testpass"));
state.setCredentials(realm2, new UsernamePasswordCredentials("testuser2","testpass2"));
this.client.setState(state);
this.server.setRequestHandler(handlerchain);
GetMethod httpget = new GetMethod("/test2/");
try {
this.client.executeMethod(httpget);
} finally {
httpget.releaseConnection();
}
assertNotNull(httpget.getStatusLine());
assertEquals(HttpStatus.SC_OK, httpget.getStatusLine().getStatusCode());
Header auth = httpget.getRequestHeader("Authorization");
assertNotNull(auth);
String expected = "Basic " + EncodingUtil.getAsciiString(
Base64.encodeBase64(EncodingUtil.getAsciiBytes("testuser2:testpass2")));
assertEquals(expected, auth.getValue());
AuthState authstate = httpget.getHostAuthState();
assertNotNull(authstate.getAuthScheme());
assertTrue(authstate.getAuthScheme() instanceof BasicScheme);
assertEquals("test2", authstate.getRealm());
}