{
public JMXConnector newJMXConnector(JMXServiceURL url, Map environment) throws IOException
{
String protocol = url.getProtocol();
if (!"soap+ssl".equals(protocol)) throw new MalformedURLException("Wrong protocol " + protocol + " for provider " + this);
return new SOAPConnector(url, environment);
}