private void queueBean(CachingIOResultHandler resultHandler)
{
if(logger.isInfoEnabled())
logger.info("Calling url in background...");
HttpUniqueRequestQueueBean bean = new HttpUniqueRequestQueueBean();
bean.setEncoding(this.charEncoding);
bean.setFetcher(helper);
bean.setHandler(resultHandler);
bean.setRequestParameters(requestParameters);
bean.setRequestProperties(requestProperties);
bean.setTimeout(timeout);
bean.setUrlAddress(url);
try
{
bean.setSerializedParameters(helper.toEncodedString(requestParameters, this.charEncoding));
}
catch (Exception e)
{
e.printStackTrace();
}