Welcome!

Java Authors: Maureen O'Gara, Bruce Armstrong, Liz McMillan, Walter H. Pinson, III, Yakov Werde

Related Topics: Java

Java: Article

Writing Classpath-less J2EE Clients...

...using a simple technique

The thin J2EE client approach is faster than Web services, since it uses native communication protocols while making remote calls over the network. However, it's better suited for clients operating in intranet environments where there is a greater degree of control over the client's deployment and the J2EE server. A downside for this environment is passing through firewalls. Furthermore, this approach provides clients with secure access to the application business logic while at the same time taking care of the details of the client and server communication and marshalling and unmarshalling parameters.

Java Message Service (JMS) is another means for thin J2EE clients to communicate with server applications. It provides a means for asynchronous communication. Applications using JMS are better suited to a setting that is behind a firewall, since messaging systems generally don't work well on the Internet (often, messaging systems are not even exposed on the Internet).

Using Thin Clients with the WebLogic Server
Check your J2EE application server documentation to see if it comes with a resource to serve objects to the client. For example, the WebLogic server contains a built-in servlet, called ClasspathServlet, to serve Java resources in a distributed manner. The servlet code in Listing 2 is not required, since this feature comes out-of-the-box in WebLogic. The URL syntax is as follows:

http://<servername>:<port>/bea_wls_internal/classes

The bea_wls_internal is a default Web application that is enabled by default. The /classes part of the URL is registered to the internal weblogic.servlet.ClasspathServlet.

If the URL is set to /bea_wls_internal/classes, the classes required by the thin J2EE client should be available in the system classpath of the server.

If the URL is set to /bea_wls_internal/classes/DefaultWebApp@DefaultWeb-App, the classes required by the thin J2EE client should be in the applications/DefaultWebApp/WEB-INF/classes directory or in the system classpath.

Versions prior to WebLogic 7 must register the ClasspathServlet and it's accessed via the /classes URL.

For this to operate successfully, you must add the following parameter to the WebLogic start script:

-Dweblogic.servlet.ClasspathServlet.disableStrictCheck=true

This relaxes the restriction of the downloadable file type. Hence, any Java resource can be served from this servlet.

Java Web Start
Java Web Start (JSR 000056) is a built-in J2SE software-distribution mechanism that downloads and executes Java software from a HTTP server. Typically, it's used from a browser and works well with the Java plug-in. The Java Network Language Protocol (JNLP) is the underlying communication mechanism used by Java Web Start. Alternatively, Java Web Start can be invoked from the command line using the javaws utility.

The techniques presented in this article are not meant as a replacement for Java Web Start. They simply demonstrate how to create lightweight clients in your own programs when you need to selectively download and execute application code.

Summary
As service-oriented architectures reemerge, it becomes crucial to have a decoupled and extensible client layer that can accommodate change and dynamic behavior. Constant API changes and backward compatibility problems can occur during concurrent development cycles. For an architecture that consists of all Java components (both client and server), Web services may not be the best choice, since it can cause performance degradation (overhead of XML parsing), deployment problems (load balancing/failover), and security issues.

Utilizing the native application server features, such as clustering, transactions, and security, with a loosely coupled implementation, architectures can focus on integration versus environmental problems. Constant API changes and backward compatibility problems can occur during concurrent development cycles. Building a very thin client layer can facilitate dynamic code changes and provide an adaptable and extensible architecture.

Resources

  • Tutorial: Getting Started Using RMI-IIOP: http://java.sun.com/j2se/1.4.2/docs/guide/rmi-iiop/tutorial.html
  • Java Web Start FAQ: Click Here
  • java.net: Class URLClassLoader: http://java.sun.com/j2se/1.4.2/docs/api/java/net/URLClassLoader.html
  • More Stories By Bahar Limaye

    Bahar Limaye is a system architect at The College Board. He has extensive experience building distributed object-oriented systems.

    Comments (3) View Comments

    Share your thoughts on this story.

    Add your comment
    You must be signed in to add a comment. Sign-in | Register

    In accordance with our Comment Policy, we encourage comments that are on topic, relevant and to-the-point. We will remove comments that include profanity, personal attacks, racial slurs, threats of violence, or other inappropriate material that violates our Terms and Conditions, and will block users who make repeated violations. We ask all readers to expect diversity of opinion and to treat one another with dignity and respect.


    Most Recent Comments
    Venkat 01/09/08 04:19:06 PM EST

    Thank you very much for such a great Article. It solved my problem.

    PL 03/07/05 08:38:46 PM EST

    Wow. this article solved almost exactly the problem i was running into. it really works!

    Marat 02/18/05 07:29:37 PM EST

    You might want to take a look at our site as most of the J2EE APIs (JMS, EJB, RMI, CORBA and JAX-RPC) are available with a runtime of fixed size ~150 KB, App Server independent. No App Server resources are ever loaded onto the client but yet all of those API are accessible over the HTTP protocol (the Internet)

    See a full blown JMS client in action over HTTP here:

    http://www.jproxy.com/thinlet/demo.html

    Cheers,
    Marat