* @param serviceURL The JMXService URL
* @param server The MBeanServer to expose
*/
public static void fireUpJMXServer(final String bindInterface, final int serverSocketBacklog, CharSequence serviceURL, MBeanServer server) {
try {
fireUpJMXServer(bindInterface, serverSocketBacklog, new JMXServiceURL(serviceURL.toString()), server);
} catch (Exception e) {
throw new RuntimeException("Failed to start JMXServer on [" + serviceURL + "]", e);
}
}