2 * Copyright 2005 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.wamblee.crawler;
19 import java.io.IOException;
21 import javax.xml.transform.TransformerException;
23 import org.apache.commons.httpclient.HttpClient;
24 import org.apache.commons.httpclient.HttpMethod;
25 import org.apache.commons.httpclient.NameValuePair;
26 import org.apache.commons.httpclient.methods.GetMethod;
27 import org.w3c.dom.Document;
28 import org.wamblee.xml.XslTransformer;
31 * Gets a page by issueing a get request.
33 public class GetPageRequest extends AbstractPageRequest {
36 * Constructs the request.
37 * @param aMaxTries Maximum number of retries.
38 * @param aMaxDelay Maximum delay before executing the request.
39 * @param aParams Request parameters to use.
40 * @param aHeaders Request headers to use.
41 * @param aXslt XSLT to use.
43 public GetPageRequest(int aMaxTries, int aMaxDelay, NameValuePair[] aParams,
44 NameValuePair[] aHeaders, String aXslt, XslTransformer aTransformer) {
45 super(aMaxTries, aMaxDelay, aParams, aHeaders, aXslt, aTransformer);
51 * @see org.wamblee.crawler.PageRequest#getPage(org.apache.commons.httpclient.HttpClient)
53 public Document execute(String aUrl, NameValuePair[] aParams, HttpClient aClient)
54 throws PageException {
55 HttpMethod method = new GetMethod(aUrl);
56 NameValuePair[] params = getParameters(aParams);
57 if (params.length > 0) {
58 String oldQueryString = method.getQueryString();
59 method.setQueryString(params);
60 String queryString = method.getQueryString();
61 if (oldQueryString.length() > 0) {
62 queryString = queryString + '&' + oldQueryString;
63 method.setQueryString(queryString);
67 return executeMethod(aClient, method);
68 } catch (TransformerException e) {
69 throw new PageException("Transformation problem for url " + aUrl, e);
70 } catch (IOException e) {
71 throw new PageException("Problem getting " + aUrl, e);