/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.axis2.transport.http.impl.httpclient3; import org.apache.axis2.AxisFault; import org.apache.axis2.context.ConfigurationContext; import org.apache.axis2.context.MessageContext; import org.apache.axis2.transport.http.AbstractHTTPTransportSender; import org.apache.axis2.transport.http.HTTPConstants; import org.apache.axis2.transport.http.HTTPSender; import org.apache.axis2.transport.http.HTTPTransportConstants; import org.apache.commons.httpclient.HttpMethod; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * The Class HTTPClient4TransportSender use Commons-HTTPclient 3.1. Users are highly * encouraged to use HTTPClient4TransportSender instead of CommonsHTTPTransportSender. */ public class HTTPClient3TransportSender extends AbstractHTTPTransportSender { private final static Log log = LogFactory.getLog(HTTPClient3TransportSender.class); public void setHTTPClientVersion(ConfigurationContext configurationContext) { configurationContext.setProperty(HTTPTransportConstants.HTTP_CLIENT_VERSION, HTTPTransportConstants.HTTP_CLIENT_3_X_VERSION); } @Override public void cleanup(MessageContext msgContext) throws AxisFault { HttpMethod httpMethod = (HttpMethod) msgContext.getProperty(HTTPConstants.HTTP_METHOD); if (httpMethod != null) { // TODO : Don't do this if we're not on the right thread! Can we confirm? log.trace("cleanup() releasing connection for " + httpMethod); httpMethod.releaseConnection(); msgContext.removeProperty(HTTPConstants.HTTP_METHOD); // guard against multiple calls } } @Override protected HTTPSender createHTTPSender() { return new HTTPSenderImpl(); } }