admin
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:2k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. package org.jboss.blacktie.jatmibroker.core.admin;
  19. import java.util.Properties;
  20. import javax.management.MBeanServerConnection;
  21. import javax.management.remote.JMXConnector;
  22. import javax.management.remote.JMXConnectorFactory;
  23. import javax.management.remote.JMXServiceURL;
  24. import junit.framework.TestCase;
  25. import org.jboss.blacktie.jatmibroker.core.conf.XMLEnvHandler;
  26. import org.jboss.blacktie.jatmibroker.core.conf.XMLParser;
  27. import org.w3c.dom.Element;
  28. public class AdministrationTest extends TestCase {
  29. public void testTODO() {
  30. }
  31. public void xtest() throws Exception {
  32. Properties prop = new Properties();
  33. XMLEnvHandler handler = new XMLEnvHandler("", prop);
  34. XMLParser xmlenv = new XMLParser(handler, "Environment.xsd");
  35. xmlenv.parse("Environment.xml");
  36. JMXServiceURL u = new JMXServiceURL((String) prop.get("JMXURL"));
  37. JMXConnector c = JMXConnectorFactory.connect(u);
  38. MBeanServerConnection beanServerConnection = c
  39. .getMBeanServerConnection();
  40. String server = "foo";
  41. String service = "BAR";
  42. AdministrationProxy serverAdministration = new AdministrationProxy(
  43. beanServerConnection);
  44. Element aServerInfo = serverAdministration.getServersStatus();
  45. long serviceCounter = serverAdministration.getServiceCounter(server,
  46. service);
  47. serverAdministration.unadvertise(server, service);
  48. serverAdministration.advertise(server, service);
  49. serverAdministration.shutdown(server, 0);
  50. serverAdministration.close();
  51. c.close();
  52. }
  53. }