{
public JMXConnectorServer newJMXConnectorServer(JMXServiceURL url, Map environment, MBeanServer server) throws IOException
{
String protocol = url.getProtocol();
if (!"hessian+ssl".equals(protocol)) throw new MalformedURLException("Wrong protocol " + protocol + " for provider " + this);
return new HTTPConnectorServer(url, environment, server);
}