Document doc = null;
try {
Connection con = Jsoup.connect(""+url);
con.userAgent(
System.getProperty("jc.soupproxy.useragent", "JSoup"));
con.ignoreContentType(true);
doc = con.get();
}
catch (java.lang.Exception e) {
throw new SoupProxy.Exception(e);
}