public void testURLConnector() throws Exception {
URLConnector connector = new URLConnector();
Properties properties = new Properties();
properties.setProperty("backend", "http://example.com/");
connector.configure(properties);
connector.connect();
OutputStream out = connector.getOutputStream();
out.close();