}
@Override
public void run() {
try {
final SimpleHttpClient client = new SimpleHttpClient();
client.setMethodType(_method);
client.setUri(_url);
client.getMethodParams().putAll(_params);
// Execute the method.
_response = client.execute();
Thread.sleep(10);
} catch (Exception ex) {
_error = ex;
}
}