| By Kyle Gabhart, Jason Gordon | Article Rating: |
|
| January 11, 2002 12:00 AM EST | Reads: |
10,963 |
What happens when the hype of Web services meets the increasingly popular and ever-changing world of wireless computing? Most likely, confusion and disillusionment. In this two-part article, we'll explore the uncharted waters of wireless Web services. We'll use the J2ME platform for developing our Web service clients and access remote services on the Internet using standardized industry protocols. In this first article, we'll examine XML-RPC, a simple, lightweight mechanism for invoking remote services with XML. The second article will compare and contrast XML-RPC with SOAP, a more robust, sophisticated, and heavier solution for invoking remote services with XML.
The Wireless World
A Web service is a coarse-grained interface
to one or more business services that is invocable across a network.
With a wireless network, this invocation process becomes more
complicated. Many cellular telephone service providers use analog
circuit-switched networks that open a constant connection for the
duration of the exchange. More advanced providers are moving to
digital packet-switched networks. In packet switching, a stream of
digital bits is carved up into bit clusters, called packets, and
blasted across the network individually.
Circuit-switched analog networks are more expensive to maintain and offer limited bandwidth. Digital packet-switched networks are cheaper, more efficient, and do not have the same bandwidth limitations. The trade-off with packet-switched networks is that packets are occasionally lost ("dropped") during transmission. Dropped packets must be retransmitted. The larger a transmission is, the greater the likelihood that packets will be dropped, requiring retransmission and degrading performance.
The bottom line is that regardless of the type of network being used by a provider, wireless clients must keep their exchanges as thin as possible to ensure optimum performance. Additionally, mobile devices typically do not have an abundance of resources for processing fat requests or responses, or storing robust data models.
XML-RPC for Wireless Web Services
XML-RPC is a Remote Procedure Calling protocol that invokes remote
procedures over a network by sending XML-formatted messages. The
XML-RPC specification was developed and is maintained by UserLand
Software, Inc.; the full specification can be found at
www.xmlrpc.org/spec.
XML-RPC is an extremely lightweight mechanism that can be used as part of a Web services architecture. The key to a Web services architecture is the utilization of XML as a language-agnostic, vendor- and platform-neutral medium for accessing Internet or intranet services. XML-RPC provides the minimum functionality necessary to specify data types, pass parameters, and invoke remote procedures in a neutral way.
What makes XML-RPC so efficient? XML-RPC defines eight data types: six primitive types (int, Boolean, string, double, datetime, and base64) and two complex types (struct and array). These are the only types available, yet they provide all the functionality that is needed about 80% of the time. Although SOAP provides a more robust data-typing mechanism based upon XML Schemas (even allowing the creation of custom data types), this is often overkill in a wireless environment. We'll explore these topics further in our next article; for now, we simply need to understand that XML-RPC is an extremely lightweight mechanism for invoking Web services in a standardized and neutral manner.
The wireless applications that we'll be developing in these articles require the J2ME platform, so we'll take a brief look at J2ME to provide for a basic background for these wireless Web services.
J2ME Primer
The Java 2 Micro Edition is a Java 2 platform for developing
applications for devices with limited memory. Specifically, J2ME
addresses the need for application development for consumer and
embedded devices. Because it is designed for devices with extremely
small footprints, many of the features of the J2SE are not included.
Some of the notable features not included are floating point data
types, serialization (no JavaBeans), thread groups and thread
daemons, finalizations, user-defined class loaders, and the JNI. As
Figure 1 indicates, the J2ME platform is a layered stack consisting
of a virtual machine and the core J2ME class libraries, as well as
configuration class libraries and device-specific profiles.
Configurations
Configurations define the run-time environment by specifying the Java
features (classes) that are available as well as which virtual
machine will be used. A configuration can also be thought of as
relating to a category of devices that have common characteristics
and memory constraints. For devices that have a total memory from 160
to 512 kB, the Connected Limited Device Configuration (CLDC) for J2ME
can be used. CLDC devices usually include cell phones, two-way pagers
and low-end PDAs. The CLDC also targets devices with a network
connection and processing power of 16 or 32 bits. The CLDC uses the K
(k for kilobyte) Virtual Machine or KVM. For devices that have a
total memory of 2MB or greater and a 32-bit or 64-bit microprocessor,
the Connected Device Configuration (CDC) is used. The CDC uses the
CVM and is generally used on set-top TVs, higher-end PDAs,
and next generation mobile devices. A configuration (and
corresponding virtual machine), combined with a device-specific
profile, and the core J2ME libraries, constitutes a complete J2ME
environment.
Profiles Overview
Profiles work on top of configurations and focus on a "vertical"
market or industry segment of devices. Profiles also allow developers
to address more device-specific features such as the life cycle of an
application, user interfaces, and networking issues. CDC devices
typically use the Foundation profile, which targets devices that
require more networking capabilities and no GUIs. CLDC devices
typically use the Mobile Information Device Profile (MIDP). For the
wireless development that we focus on in this series, we'll be using
MIDP.
MIDP
The MIDP consists of APIs for user interface design as well as for
database activity. A MIDP application is referred to as a midlet.
MIDP even allows multiple midlets to be packaged together as a midlet
suite and share information between midlets within the suite. This is
generally only useful, however, in the case of midlets that maintain
a database. For our purposes, we're interested in MIDP's GUI
capabilities. MIDP supports 10 GUI components: Command, Alert,
Choice, Choice Group, Form, List, StringItem, TextBox, TextField, and
Ticker.
In our sample application, we'll be using the following GUI components:
- List: Contains a list of choices, typically relies upon a device's "select" or "go" functionality.
- Command: Presents a choice of action. Contains a label, a type, and a priority.
- Display: The midlet's canvas upon which UI components are displayed.
- Alert: Informs the user about an exceptional condition or error. It can also be used to display the results of a query to the user.
- Initialization: constructor: Every midlet has a default constructor. This is used to initialize a midlet's data members, including GUI components, with their desired property values (size, shape, color, label, text, reference, etc.).
- Activation: startApp(): Acquires necessary resources, makes display visible to user, and begins to perform requested services.
- Passivation: pauseApp(): Stops performing services and releases shared resources.
- Destruction: destroyApp(): Releases shared and local resources and saves any persistent data.
Writing a MIDP Web Service Client
In this article, we'll create a MIDP client that uses the XML-RPC
protocol for invoking remote Web services in a platform- and
language-neutral way. To do this, we'll need a J2ME implementation of
the XML-RPC protocol. At the time of this writing, the only publicly
available client implementation is kXML-RPC, an open-source XML-RPC
project for the J2ME platform. kXML-RPC is maintained by the Enhydra
organization and can be freely downloaded from their Web site at
http://kxmlrpc.enhydra.org. The kXML-RPC library uses Enhydra's kXML
parser to handle the low-level XML parsing details. With the addition
of the parser, the kxmlrpc jar file reaches a whopping 24kb!
With the kxmlrpc jar file downloaded to your system and placed in your application classpath, you can write the MIDP client. We'll walk through the creation of the midlet and highlight the most interesting lines of code, but the entire source code for the midlet can be seen in Listing 1, and the source for MyMidl et.java can be downloaded from the kXML-RPC Web site (kxmlrpc-samples.zip) located at http://kxmlrpc.enhydra.org/software/downloads/index.html.
The first step, obviously, is to import the necessary packages and declare the MIDP components that will be used in the application. After this, we define the midlet's constructor, initializing all the UI components and adding them to the display as necessary. With that complete, we need to fill in the three other life cycle methods. In the startApp() method, we simply bring the MIDP display into action. Since we don't use any shared resources, the pauseApp() method is blank. Finally, the destroyApp() method releases the local resources that we have allocated for our midlet.
Now we're ready for the interesting part of the code, the commandAction() method. This method is called anytime the user performs a command event (pressing a key, selecting an item from a list, etc.). The Command and Displayable objects are then queried to determine which component has actually been activated/deactivated, and the appropriate actions are performed. Our midlet has three remote XML-RPC Web services displayed in a list (see Figure 2), and a switch statement is performed on the index of that list to determine which item has been selected. In Listing 1, only the first service is given an implementation, but the other two can be seen by downloading the source code.
The Timestamp service is very simple, a parameterless request is sent to the service and a String object representing the current time is returned. To perform this query, a kxmlrpc object is created with the specified URL for the Web service. Then an empty Vector is created and the actual request is performed with the following line:
String serverTime = ( String )
xmlrpc.execute(
"sysTime.getSystemTime", params );
The execute() method accepts two parameters, a String representing the name of the service, and a Vector representing any parameters that should be passed to the service. This particular service returns a String object that is then sent to the screen to display the current time on the server. An example can be seen in Figure 3.
Deploying and Testing a Midlet
For deploying and testing our midlet, we used Sun's J2ME Wireless
Toolkit (J2MEWTK) version 1.0.3 beta which can be downloaded from
Sun's Web site at http://java.sun.com/products/j2mewtoolkit/. The
toolkit is 100% Java, built using the Java 2 Standard Edition,
so even though it contains the J2ME APIs
and is used for deploying and testing J2ME applications, it requires
a J2SE implementation in order to run.
To deploy and test your midlet, you need to do four things: create a project for your application, write the midlet's code, place all of the files and resources in their appropriate application directories, and then build and run the application.
With the toolkit properly installed, the first step is to create a project for your application. To do so, follow these steps:
- Start the KToolbar application
- Click the "New Project" button. Name your project and name your project's midlet (this will also be the name used for the midlet in the .java source file).
- Click the "OK" button on the Settings screen that shows keys and values. This screen represents your application's deployment properties. You can specify these properties now or later by clicking the "Settings" button.
- \src: Place your java midlet's source code files in this directory.
- \res: Place any resource files (images, text files, etc.) in this directory.
- \lib: Place JAR files and Java class files that your midlet(s) will need in this directory.
- Build the application into an executable midlet by clicking the "Build" button.
- Resolve any errors or exceptions that are thrown and rebuild the application until a successful build is accomplished.
- Execute the application by clicking the "Run" button after a successful build has been created.
Deploying into Production
Once your midlet development and testing is complete, you can package
your application into an executable format by selecting the "Package"
menu item from the "Project" menu. The toolkit will create a .jar and
jad file in your project's \bin directory. The .jad file is used for
describing and executing your midlet, while the .jar file contains
the Java class files, library and resource files used by your midlet.
From now on, simply double-clicking the .jad file will run the midlet.
Looking Ahead
In this article we've taken a look into the world of the wireless
Web, XML-RPC as a Web service communication protocol, and the J2ME
environment with special attention paid to the MID profile, and also
looked at a demonstration of an XML-RPC midlet using the kxmlrpc
code. XML-RPC provides a very thin, efficient means of invoking
remote services in a standard and neutral way. It defines a succinct
set of eight data types, providing the means necessary to encode
simple and moderately complex data structures in a highly efficient
manner. More often than not, XML-RPC will provide you with all the
functionality that you need, especially given the natural constraints
of wireless devices. For applications that require more
functionality, the Simple Object Access Protocol (SOAP) may be in
order. In our next article we'll delve into SOAP and provide a
detailed analysis of when to choose SOAP over XML-RPC for wireless
computing.
Published January 11, 2002 Reads 10,963
Copyright © 2002 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Kyle Gabhart
Kyle Gabhart is a subject matter expert specializing in service oriented technologies and currently serves as the SOA Solutions Director for Web Age Solutions, a premier provider of technology education and mentoring. Since 2001 he has contributed extensively to the SOA community as an author, speaker, consultant, and open source contributor.
More Stories By Jason Gordon
Jason Gordon is
- The Top 150 Players in Cloud Computing
- Commercial vs Federal Cloud Computing
- Why IBM’s Server Chief Got Busted
- An Interview with Federal CIO Nominee Vivek Kundra
- Deputy CIO of the CIA to Keynote 1st Annual GovIT Expo
- Stock in Focus: Dragon Capital
- CIA was Headed to an Enterprise Cloud All Along: Jill Tummler Singer
- 1st Annual Government IT Conference & Expo: Themes & Topics
- Industry Experts Discuss the State of Cloud Computing
- Cloud Computing Expo: Exclusive Q&A with Yahoo! SVP Cloud Computing
- Cloud Computing on Gartner's Top 10 List and SYS-CON Events' 2010 Calendar
- Cloud Expo New York Call for Papers Deadline December 15
- The Top 150 Players in Cloud Computing
- SYS-CON.TV: Cloud Computing Expo Power Panel
- Commercial vs Federal Cloud Computing
- Why IBM’s Server Chief Got Busted
- An Interview with Federal CIO Nominee Vivek Kundra
- 1st Annual GovIT Expo: Letter from the Technical Chair
- SOA World Power Panel on SYS-CON.TV
- Deputy CIO of the CIA to Keynote 1st Annual GovIT Expo
- Stock in Focus: Dragon Capital
- CIA was Headed to an Enterprise Cloud All Along: Jill Tummler Singer
- 1st Annual Government IT Conference & Expo: Themes & Topics
- Industry Experts Discuss the State of Cloud Computing
- The i-Technology Right Stuff
- Who Are The All-Time Heroes of i-Technology?
- Get the Message
- Where Are RIA Technologies Headed in 2008?
- Success, Arrogance, Rise and Fall
- i-Technology Viewpoint: Is Web 2.0 the Global SOA?
- i-Technology Viewpoint: Thinking Outside the VC Box
- ESB Myth Busters: 10 Enterprise Service Bus Myths Debunked
- i-Technology Viewpoint: When to Leave Your First IT Job
- SOA Web Services Edge Conference Coverage on SYS-CON.TV
- Five Reasons Why Web 2.0 Matters
- SYS-CON.TV's "SOA Web Services" and "Enterprise Open Source" Programs To Air in December









Cloud computing is a game changer. The cloud ...




















