blob: 0bc04a792a7c639132c02acf6ebe6182489bc9d0 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/*
25 * @test
26 * @bug 4886799
27 * @summary Check that IIOP URLs have /ior/ in the path
28 * @author Eamonn McManus
29 * @run clean IIOPURLTest
30 * @run build IIOPURLTest
31 * @run main IIOPURLTest
32 */
33
34import javax.management.MBeanServer;
35import javax.management.MBeanServerConnection;
36import javax.management.MBeanServerFactory;
37import javax.management.Notification;
38import javax.management.NotificationListener;
39import javax.management.ObjectName;
40
41import javax.management.remote.JMXConnector;
42import javax.management.remote.JMXConnectorFactory;
43import javax.management.remote.JMXConnectorServer;
44import javax.management.remote.JMXConnectorServerFactory;
45import javax.management.remote.JMXServiceURL;
46
47public class IIOPURLTest {
48
49 public static void main(String[] args) throws Exception {
50 JMXServiceURL inputAddr =
51 new JMXServiceURL("service:jmx:iiop://");
52 JMXConnectorServer s =
53 JMXConnectorServerFactory.newJMXConnectorServer(inputAddr, null,
54 null);
55 MBeanServer mbs = MBeanServerFactory.createMBeanServer();
56 mbs.registerMBean(s, new ObjectName("a:b=c"));
57 s.start();
58 JMXServiceURL outputAddr = s.getAddress();
59 if (!outputAddr.getURLPath().startsWith("/ior/IOR:")) {
60 System.out.println("URL path should start with \"/ior/IOR:\": " +
61 outputAddr);
62 System.exit(1);
63 }
64 System.out.println("IIOP URL path looks OK: " + outputAddr);
65 JMXConnector c = JMXConnectorFactory.connect(outputAddr);
66 System.out.println("Successfully got default domain: " +
67 c.getMBeanServerConnection().getDefaultDomain());
68 c.close();
69 s.stop();
70 }
71}