private void request() throws Exception {
this.ae = null;
this.img = null;
String xml = executeHttpGet("/api/v2/detect/new?url=" + url);
this.dp = new DOMParser(xml);
if (dp.hasNodeNamed("error")) {
this.ae = dp.getApiError();
} else {
this.img = dp.getImage();
}