requestString += "&BBOX=" + requestBounds.toString() + ",EPSG:4326";
HttpClient httpclient = ogpHttpClient.getHttpClient();
File outputFile = null;
String wfsLocation = ParseJSONSolrLocationField.getWfsUrl(layerInfo.getLocation());
HttpGet httpget = new HttpGet(wfsLocation + "?" + requestString);
logger.info("executing request " + httpget.getURI());
try {
HttpResponse response = httpclient.execute(httpget);
logger.info("Response code: " + Integer.toString(response.getStatusLine().getStatusCode()));
if (response.getStatusLine().getStatusCode() != 200){