Source Code Cross Referenced for Client.java in  » JMX » mx4j » mx4j » examples » remote » rmi » iiop » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » JMX » mx4j » mx4j.examples.remote.rmi.iiop 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Copyright (C) The MX4J Contributors.
03:         * All rights reserved.
04:         *
05:         * This software is distributed under the terms of the MX4J License version 1.0.
06:         * See the terms of the MX4J License in the documentation provided with this software.
07:         */
08:
09:        package mx4j.examples.remote.rmi.iiop;
10:
11:        import javax.management.MBeanServerConnection;
12:        import javax.management.MBeanServerDelegateMBean;
13:        import javax.management.MBeanServerInvocationHandler;
14:        import javax.management.ObjectName;
15:        import javax.management.remote.JMXConnector;
16:        import javax.management.remote.JMXConnectorFactory;
17:        import javax.management.remote.JMXServiceURL;
18:
19:        /**
20:         * This example shows how to connect to a JSR 160 connector server over IIOP.
21:         * It is very similar to the simple example also present in these examples, except
22:         * that it uses the IIOP protocol instead of native RMI's one, called JRMP.
23:         *
24:         * @version $Revision: 1.3 $
25:         */
26:        public class Client {
27:            public static void main(String[] args) throws Exception {
28:                // The JMXConnectorServer protocol, in this case is IIOP
29:                String serverProtocol = "iiop";
30:
31:                // The RMI server's host: this is actually ignored by JSR 160
32:                // since this information is stored in the RMI stub.
33:                String serverHost = "host";
34:
35:                // The host, port and path where the rmiregistry runs.
36:                String namingHost = "localhost";
37:                int namingPort = 1099;
38:                String jndiPath = "/jmxconnector";
39:
40:                // The address of the connector server
41:                JMXServiceURL url = new JMXServiceURL("service:jmx:"
42:                        + serverProtocol + "://" + serverHost + "/jndi/iiop://"
43:                        + namingHost + ":" + namingPort + jndiPath);
44:
45:                // Connect a JSR 160 JMXConnector to the server side
46:                JMXConnector connector = JMXConnectorFactory.connect(url);
47:
48:                // Retrieve an MBeanServerConnection that represent the MBeanServer the remote
49:                // connector server is bound to
50:                MBeanServerConnection connection = connector
51:                        .getMBeanServerConnection();
52:
53:                // Call the server side as if it is a local MBeanServer
54:                ObjectName delegateName = ObjectName
55:                        .getInstance("JMImplementation:type=MBeanServerDelegate");
56:                Object proxy = MBeanServerInvocationHandler.newProxyInstance(
57:                        connection, delegateName,
58:                        MBeanServerDelegateMBean.class, true);
59:                MBeanServerDelegateMBean delegate = (MBeanServerDelegateMBean) proxy;
60:
61:                // The magic of JDK 1.3 dynamic proxy and JSR 160:
62:                // delegate.getImplementationVendor() is actually a remote JMX call,
63:                // but it looks like a local, old-style, java call.
64:                System.out.println(delegate.getImplementationVendor()
65:                        + " is cool !");
66:            }
67:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.