INFO-LINK



Java

Creating Java Grid Services


Sep03: Creating Java Grid Services

Aaron is the founder of Mantis Development Corps and director of the Media Grid and Web3D Web (http://Web3DWeb.com/). He teaches computer graphics and Internet/web-application development at Boston College, and is also author of J2EE 1.4 Essentials (http://www.wiley.com/compbooks/walsh/). Aaron can be contacted at aaron@mantiscorp.com.


Global Grid Forum, OGSA, and OGSI


Over the past decade, the technology behind computational grids has evolved from raw concept into tangible reality. Grids are generally distinguished from the field of traditional distributed computing by their ability to share resources such as processing power and databases on a large scale and with high performance. To date, grid technology has been used primarily by researchers for building specialized scientific and engineering applications. More recently, however, grids have migrated into the corporate world. Utility computing, on-demand computing, and autonomous computing are just a few of the buzzwords describing technology that is based, to some degree, on large-scale resource sharing across organizational boundaries.

Of the many grid technologies available to Java developers, the Globus Project's Globus Toolkit is perhaps the most well known and widely adopted. In this article, I briefly discuss the Globus Project, then examine the latest version of the Globus Toolkit, with which you can create Java-based grid services and grid clients.

The Globus Project

The Globus Project (http://globus.org/) was started in 1996 as a collaborative research and development project for building foundation technologies that enable computational grids. The project is based at the Argonne National Laboratory's Mathematics and Computer Science Division, the University of Southern California's Information Sciences Institute, and the University of Chicago's Distributed Systems Laboratory. In addition to universities and government agencies, the Globus Project is also sponsored by IBM, Microsoft, and Cisco.

The open-source Globus Toolkit is the project's key deliverable. As a unified collection of grid software services and libraries, the Globus Toolkit Version 2.4 provides a standard development framework you can use to develop special-purpose grids. The toolkit supports discovery, management, and monitoring of grid resources, as well as file management and security features. The Globus Toolkit is used by grid projects around the world and is the foundation on which many commercial grid projects are currently being built.

Version 3 of the Globus Toolkit has been released and shipped earlier this year. Globus Toolkit 3 gives Java developers a standard solution for developing and deploying grid services and clients. The Media Grid that powers the Web3D Web (http:// Web3DWeb.com/), for example, uses GT3 to enable digital media delivery and processing services on a massive scale.

Globus Toolkit 3

Globus Toolkit 3 (GT3) was officially released as open source by the Globus Project recently. As a high-performance grid framework, GT3 relies on native code that is exposed to Java developers through standard APIs. In other words, you can harness the power of GT3 using pure Java.

GT3 is an open-source implementation of the Open Grid Services Infrastructure (OGSI); see the accompanying text box entitled "Global Grid Forum, OGSA, and OGSI." By providing a number of premade OGSI services and the ability to create custom OGSI-compliant services as needed, the toolkit gives you a powerful framework for building grids based on standard web services. The OGSI specification builds on grid- and web-service technologies to define how "grid services" are created and managed, and how information can be exchanged among grid services. According to the specification, a grid service is merely a web service that conforms to specific interface and behavior conventions that define how clients interact with that service.

Simply put, a grid service is a special-purpose web service designed to operate in a grid environment. To this end, OGSI uses the Web Services Description Language (WSDL) to define compliant grid services that are accessible over the Internet using SOAP/HTTP. The current OGSI 1.0 specification implemented by GT3 extends WSDL 1.1 to define grid services and will eventually support WSDL 1.2. OGSI 1.0 defines a component model by extending WSDL 1.1 and XML Schema Definition (XSD) to support a number of useful and innovative enhancements, including: stateful web services; support for inheritance of web-service interfaces; asynchronous state change notifications; references to service instances; service collections; and service state data.

Although the full GT3 run time is a Linux product, the Java-based OGSI reference implementation portion of Globus Toolkit 3 can run in any of the following four Java environments on any platform (provided Java 1.3.1 or higher is available):

  • Embedded in any existing Java 2 Standard Edition (J2SE) application.

  • Standalone in a lightweight J2SE server (used primarily for testing and development work).

  • Java 2 Enterprise Edition (J2EE) web container by deploying to a servlet container such as Apache Jakarta Tomcat.

  • J2EE Enterprise JavaBean (EJB) container by using a Globus code generator that enables stateful Entity and Session beans to be exposed as OGSI-compliant grid services.

GT3 features a core architecture built on OGSI primitives and protocols. Figure 1 illustrates the GT3 core architecture, which is designed to make OGSI-based grids easy to create and use. The GT3 core provides an open-source implementation of all interfaces defined by OGSI 1.0. In addition, it provides various hosting environments layered on top of an abstract container. Conceptually, the GT3 core is a suite of building blocks that provide the main functionality necessary for a variety of grid applications. GT3 also provides a security framework, various system services (logging, management and administration, and so forth), and a development environment that includes code-generation tools to make life easier on grid application developers.

The white boxes in Figure 1 indicate components provided by the GT3 core, while gray boxes are considered outside of the core. User-defined services provided by application developers, for instance, are not considered part of the GT3 core. Similarly, the web-services engine and base services are not officially part of the core, although they are provided with the full GT3 run time (base services enable execution, data management, and information services; user-defined services are any services built using GT3 components).

The OGSI Reference Implementation in Figure 1 supports all of the interfaces defined by OGSI 1.0, in addition to related APIs and tools used to create compliant grid services. The Security Infrastructure implementation, meanwhile, provides a variety of security features such as SOAP and transport-level message protection; end-to-end mutual authentication; and single sign-on authorization. The OGSI Reference Implementation and Security Infrastructure don't provide run-time services directly—they are infrastructure building blocks used by other parts of the GT3 architecture.

The services and primitives that make up the GT3 core interact with an abstract OGSI run-time environment, known as the "Grid Services Container." This container hides low-level implementation details (such as the underlying database used for data persistence) from you so that you can focus on developing grid services and clients at a higher level.

Creating Grid Services

Creating a grid service with Version 3 of the Globus Toolkit is a four-stage process:

1. Create the service interface.

2. Generate stub and support code.

3. Implement the service.

4. Deploy the service.

You define grid services interfaces by writing Java code, from which the toolkit generates the appropriate WSDL interfaces, or you can create the WSDL interfaces manually. Listing One, for example, is the Java interface code for the Counter example program provided with the toolkit, while Listing Two shows key portions of a corresponding WSDL interface. Only the abstract definition of the service (including the types, message, and portType parts of WSDL) are necessary when creating a WSDL interface directly, since the binding and service portions are generated by the toolkit.

After defining the interface for your grid service, you must then generate the stub and support code for your service. At this stage, you use the Ant tasks and XML batch file tools provided with GT3 to generate the code needed to host your grid service. Listing Three, for instance, is the Ant command used to generate a WSDL interface from the Counter Java interface in Listing One. After the WSDL interface is available, you can then generate the Java stubs that let your service data be accessed via SOAP over HTTP. Listing Four is the Ant command that generates these stubs for the Counter example (Listings Three and Four are excerpts of the build.xml file that comes with this example).

Upon generating stubs and support code, you actually implement the service. Listing Five shows the Java implementation of the Counter grid service, for which the class CounterImp.java is defined. This class extends the base grid services implementation, GridServiceImpl, and implements the CounterPortType interface created in the previous step. In cases where you don't want your grid service to be dependent on implementation classes provided with GT3 (such as GridServiceImpl), you can provide an implementation using an operation-provider (delegation) approach instead. (For details, see the Java Programmer's Guide Core Framework, available through the GT3 download area.)

After providing an implementation for your service, it's ready to be deployed. To do so, you must write a deployment descriptor that describes and configures your service, then bundle the descriptor and the various files that comprise the service into a Grid Archive (GAR) package. GAR packages can be deployed to any suitable grid service hosting environment. Listing Six is a key excerpt of the deployment descriptor for the Counter grid service example that comes with GT3, while Listing Seven is the Ant command that builds the GAR package for this service.

Creating Grid Services Clients

Creating grid services is only half the battle: To be of any real value, a grid service is accessed and used by a grid client. Although you can create grid services clients using the standard JAX-RPC API, you'll find it much easier to use the JAX-RPC extensions provided with GT3. Standard JAX-RPC doesn't directly support grid services, and you'll save a lot of time by simply using the helper JAX-RPC classes provided with GT3 as illustrated by Listing Eight.

Getting Started with Globus Toolkit 3

GT3 is freely available at http://www.globus.org/. To get started, simply download and install the toolkit, then turn to the example programs that come with it (the Counter example presented here is just one of many GT3 grid-service examples). You will find the related User's Guide Core Framework and Java Programmer's Guide Core Framework documents essential, and can find links to both through the GT3 download area. Whereas the User's Guide Core Framework tells you how to install/configure the toolkit and run the various example programs that come with it, the Java Programmer's Guide Core Framework provides details on how you can create grid services using Java. You'll also find the Grid Service Development Tools Guide useful in learning the various Ant commands that you can use to create and manage your services (it's also available through the GT3 download area).

DDJ

Listing One

/* "Counter" interface example provided with Globus Toolkit 3. Refer to 
* guide/src/org/globus/ogsa/guide/impl/Counter.java for complete example.
*/
package org.globus.ogsa.guide.impl.guide;
public interface Counter {
public int add(int value);
public int subtract(int value);
public int getValue();
} 
Back to Article

Listing Two

<types>
...
<xsd:element name="add">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:int"/>
</xsd:sequence> 
</xsd:complexType>
</xsd:element>
...
</types>
...
<message name="AddInputMessage">
<part name="parameters" element="tns:add"/>
</message>
...
<gwsdl:portType name="CounterPortType" extends="ogsi:GridService">
<operation name="add">
<input message="tns:AddInputMessage"/>
<output message="tns:AddOutputMessage"/>
<fault name="Fault" message="ogsi:FaultMessage"/>
</operation>
</gwsdl:portType>
Back to Article

Listing Three

<ant antfile="${build.services}" target="generateWSDL">
<property name="interface.package" value="org.globus.ogsa.guide.impl"/>
<property name="interface.name" value="Counter"/>
<property name="generated.dir" value="guide"/>
</ant>
Back to Article

Listing Four

<ant antfile="${build.services}" target="generateStubs">
<property name="schema.file.dir" value="guide/Counter"/>
<property name="schema.file" value="counter_service.wsdl"/>
</ant> 
Back to Article

Listing Five

/* "Counter" implementation example provided with Globus Toolkit 3. Refer to 
* uide/src/org/globus/ogsa/guide/impl/CounterImpl.java for complete example.
*/
public class CounterImpl extends GridServiceImpl implements CounterPortType {
private int val = 0;
public CounterImpl() {
super("Guide Counter");
}
public int add(int val) throws RemoteException {
this.val = this.val + val;
return this.val;
}
public int subtract(int val) throws RemoteException {
this.val = this.val - val;
return this.val;
}
public int getValue() throws RemoteException {
return this.val;
}
}
Back to Article

Listing Six

<?xml version="1.0" encoding="UTF-8"?>
<deployment name="defaultServerConfig" 
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> 
<service name="guide/counter/CounterProviderFactoryService" 
provider="Handler" style="wrapped">
<parameter name="name" value="Guide Counter Provider Factory"/>
<parameter name="instance-name" value="Guide Counter Proivider Counter"/>
<parameter name="instance-schemaPath" 
value="schema/guide/Counter/counter_service.wsdl"/>
<parameter name="instance-className" 
value="org.globus.ogsa.guide.Counter.wsdl.CounterPortType"/>
<parameter name="instance-baseClassName" 
value="org.globus.ogsa.impl.ogsi.GridServiceImpl"/>
<parameter name="instance-operationProviders" 
value="org.globus.ogsa.guide.impl.CounterProvider"/>
<parameter name="persistent" value="true"/>
<parameter name="schemaPath" 
value="schema/ogsi/ogsi_notification_factory_service.wsdl"/>
<parameter name="baseClassName" 
value="org.globus.ogsa.impl.ogsi.PersistentGridServiceImpl"/>
<parameter name="handlerClass" 
value="org.globus.ogsa.handlers.RPCURIProvider"/>
<parameter name="className" 
value="org.gridforum.ogsi.NotificationFactory"/>
<parameter name="allowedMethods" value="*"/>
<parameter name="factoryCallback" 
value="org.globus.ogsa.impl.ogsi.DynamicFactoryCallbackImpl"/>
<parameter name="operationProviders" 
value="org.globus.ogsa.impl.ogsi.FactoryProvider org.
globus.ogsa.impl.ogsi.NotificationSourceProvider"/>
</service
</deployment>
Back to Article

Listing Seven

<ant antfile="${build.packages}" target="makeGar">
<property name="gar.name" value="${build.lib}/guide.gar"/>
<property name="garlib.dir" value="${build.lib}"/>
<property name="garserverdeployment.file" value="guide-config.wsdd"/>
<property name="garschema.origin" value="${build.schema}/guide"/>
<property name="garschema.path" value="guide"/>
</ant>
Back to Article

Listing Eight

/* "Counter" grid service client JAX-RPC example provided with Globus 
* Toolkit 3. Refer to GT3 Java Programmers Guide Core Framework for details.
*/
OGSIServiceGridLocator gridLocator = new OGSIServiceGridLocator();
Factory factory = gridLocator.getFactoryPort(handle);
GridServiceFactory gridFactory = new GridServiceFactory(factory);
LocatorType locator = gridFactory.createService();
CounterServiceGridLocator counterLocator = new CounterServiceGridLocator();
CounterPortType counter = counterLocator.getCounterPort(locator);
int val = counter.add(2); 

Back to Article


Around the Web

Honeypot Detection in Advanced Botnet Attacks

Honeypots have been successfully deployed in many computer security defense systems.

Quick Read

Swarm: A True Distributed Programming Language

The Swarm prototype is a simple stack-based language, akin to a primitive version of the Java bytecode interpreter.

Quick Read

Key Software Development Trends

Several trends are emerging within the area of software development. Here are some of the most important trends S. Somasegar has been thinking about recently.

Quick Read

Understanding Parallel Performance

Understanding parallel performance. How do you know when good is good enough?

Quick Read

Short and Tweet: Experiments on Recommending Content from Information Streams

The authors used 12 algorithms to study the URL recommendation on Twitter as a means of better directing attention in information streams.

Quick Read





Video

Forty finalists will gather in Washington, D.C. from March 11-16 to compete for $630,000 in awards.; DDJ; Intel; science; Dr. Dobb's talks with Commonsware's Mark Murphy about what's involved in developing software for the Android operating system; Android; apple; DDJ; tablet development; The new method uses analytics technology developed by the Mayo and IBM collaboration, Medical Imaging Informatics Innovation Center, and has proven a 95 percent accuracy rate in detecting aneurysm.; Algorithm; DDJ; diagnostics; ibm; imaging; T-Mobile USA is enabling phone calls to Haiti without charges for international long distance through January 31 and retroactive to the earthquake on January 12; DDJ; mobile; wireless; Al Williams gives you a demor of One-Der: The One Instruction CPU; DDJ; At the 2010 International Consumer Electronics Show, the auto industry's first working smartphone application was unveiled; DDJ; mobile; The Bluetooth Special Interest Group (SIG) has announced the adoption of BLUETOOTH low energy wireless technology.; bluetooth; DDJ; wireless; IBM has unveiled its list of five innovations that have the potential to change how people live, work and play in cities around the world over the next five to ten years; DDJ; ibm; TeliaSonera's LTE mobile broadband commercial network in Stockholm is now the fastest and largest in the world.; broadband; DDJ; ericsson; mobile; Google has introduced, google Goggles, a visual search application on Android devices that allows users to search for objects using images rather than words; Android; DDJ; google; mobile; Visual Search Applications; Dr. Dobb's talks with David Intersimone, Vice President of Developer Relations and Chief Evangelist at Embarcadero Technologies, about RAD Studio 2010, SQL optimization and his reflections on the software industry.; database programming; DDJ; sql; Researchers from Intel Labs have created an experimental, 48-core Intel processor or "single-chip cloud computer."; cloud computing; DDJ; Intel; multicore; parallelism; The Large Hadron Collider will produce roughly 15 million gigabytes of data annually, to be accessed by a distributed computing and data storage infrastructure called the LHC Computing Grid.; CERN; DDJ; grid computing; physics; A mobile handheld device designed to let users can point, shoot and listen to printed text.; DDJ; Intel; mobile; Ericsson has become the first vendor to prove end to end interoperability in TD-LTE, another standard of 4G radio technologies designed to increase the capacity and speed of mobile telephone networks.; DDJ; ericsson; mobile; TD-LTE; According to a recent study, 80 percent of US respondents feel there are unspoken rules about mobile technology usage, and approximately 69 percent agreed that violations of these unspoken mobile manners are unacceptable.; DDJ; Intel; mobile; IBM and Canonical will introduce a software package for netbooks and other thin client devices in Africa. This is the first cloud- and premise-based Linux netbook software package offered by IBM and Canonical.; cloud computing; DDJ; ibm; His unprecedented ability to manipulate individual atoms signaled a quantum leap forward in in nanoscience experimentation and heralded in the age of nanotechnology.; DDJ; ibm; nanotechnology; IBM honored for its invention of the Blue Gene family of supercomputers. Adobe founders also recognized.; adobe; DDJ; ibm; Former U.S. President Bill Clinton addressed thousands of online entrepreneurs from around the world gathered for the third APEC Business Advisory Council SME Summit in Hangzhou, China.; DDJ; e-business; With free cooling for several months a year, Sweden is an ideal location for cost-efficient data centers.; data centers; DDJ; PNC Bank introduces a new mobile App for the iPhone and iPod touch that provides Virtual Wallet customers with a high-def view of their money while on the go.; DDJ; iphone; The Swedish LTE site will be part of a commercial network scheduled to go live in 2010, bringing data rates far above what is possible in today's mobile broadband networks.; DDJ; ericsson; mobile broadband; Nanotechnology advancement could lead to smaller, faster, more energy efficient computer chips.; circuit boards; DDJ; nanotech; semiconductor; Dr Dobbs talks with with Claudia Backus, Senior Director of Ecosystem Programs at Motorola, regarding the company's recently released MotoDEV Studio for their Android-powered phones.; Android; DDJ; mobile; motodev; The Extremadura Regional Government of Spain and IBM have launched an electronic prescription system in 680 pharmacies in western Spain.; DDJ; ibm; Ericsson to Acquire Majority of Nortel's North American Wireless Business; DDJ; ericsson; mobile; telecom; Nintendo's Wii Sports Resort is an immersive, expansive active-play game that includes a dozen resort-themed activities.; DDJ; nintendo; video games; OnStar can remotely send a signal to the electronic system in the subscriber's stolen vehicle and the vehicle will not be able to be re-started.; cellular; DDJ; wireless; In celebration of the historic Apollo Moon landing, Google has released Moon in Google Earth.; DDJ; google; Ericsson has been awarded contracts with the three telecom operators in China to provide fixed broadband access.; broadband; DDJ; mobile; tv; wireless; Dr. Dobb's talks with Adobe's Adam Lehman about the upcoming release of ColdFusion specifically optimized for Flash and Adobe AIR platform delivery.; adobe; ColdFusion; DDJ; eclipse; Companies team to develop computing device and chipset architectures that will combine the performance of powerful computers with high-bandwidth mobile broadband communications and ubiquitous Internet connectivity.; broadband; DDJ; Intel; mobile; nokia; Adobe Systems and HTC recently announced that the new HTC Hero will be the first Android phone to ship with support for Adobe Flash Platform technology.; adobe; Android; cell phones; DDJ; flash; mobile; mobility; 3.2 million Euros awarded across eight prize categorie recognizing world-class scientific research and artistic creation.; DDJ; A parody of Paul Simon's "50 Ways to Leave Your Lover," but for software security nerds.; DDJ; sql; Dr. Dobb's Mike Riley talks with Jim Manias of Advanced Systems Concepts.  In this conversation, Jim discusses the new ActiveBatch 7 and how it can provide significant productivity gains for application developers and business process owners alike.; ActiveBatch; DDJ; Sun cofounder Scott McNealy and Oracle CEO Larry Ellison discussed Java's role in computing. Sun has also released OpenSolaris 2009.06.; DDJ; java; opensolaris; oracle; sun; Spotlight on NATO's centre of excellence on cyber defense in Tallinn, Estonia.; cyber defense; DDJ; nework security; security; Create Data Access Layers in ASP.NET; DDJ; In this demonstration you will learn how to layout a WPF application. We will explore the major layout panels that come with WPF, contrasting them with each other and describing when to use each.; DDJ; web development; windows; wpf; The Intel Foundation has announced the top winners of the Intel International Science and Engineering Fair; DDJ; Intel; News; science; Matt Hester demonstrates Internet Explorer’s 8 new feature Selectors API for utilizing CSS selectors for quick and easy element lookups.; DDJ; IE8; microsoft; windows; The NATO Virtual Silk Highway provides affordable, high-speed Internet access via satellite to the academic communities of the Caucasus and Central Asia.; DDJ; On a Windows Mobile device, applications are typically not closed down, but they stay in the background. Maarten Struys shows you a simple way to preserve battery power inside your own applications.; DDJ; microsoft; power consumption; windows; Windows Mobile Devices; Cadillac is now offering wireless Internet access with its CTS sedan.; DDJ; wireless broadband; By default, Windows Mobile Standard (Smartphone) applications launched from Visual Studio are not accessible on the device/emulator once they are minimized. In this video, Jim Wilson demonstrates two simple techniques to solve the problem.; DDJ; microsoft; smartphone; VIsual Studio; Mike Riley talks with the brass from Everypoint, creators of the NEMO mobile application development platform.; DDJ; Developers; development environments; mobile applications; Symmetric and asymmetric encryption algorithms, the SHA256 hash encryption algorithms, and how to implement in a simple application using Microsoft's Azure Services Platform.; Azure; DDJ; encryption; microsoft; security; windows; T-Mobile has introduced the Sidekick LX, which features enhanced video capability.; DDJ; Mobile Smartphone; Bluetooth 3.0 offers speedier transmission of large amounts of video, music and photos between devices wirelessly.; bluetooth; DDJ; mobile networks; wireless broadband; Cities around the world are battling with stressed transportation networks, so IBM has announced plans for three new smart rail projects in China, Taiwan and The Netherlands.; DDJ; ibm; ILOG; CASMOBOT is a Nintendo Wii remote controlled slope lawn mower.; DDJ; Denmark; nintendo wii; research; robotics; Project ensures documents, images, video and other Internet-based data growing at over 100 terabytes per month will live on for future generations; data storage; DDJ; history; Intenet; research; Sun Microsystems; Dr. Dobb's talks with Dave McAllister, Director of Standards and Open Source for Adobe, about the Open Screen Project.; adobe; DDJ; Open Screen Project; open source; The Facebook Connect SDK provides the code to let third-party developers embed hooks into their applications so users can connect to their Facebook accounts and exchange information using iPhone apps.; apple; cocoa; DDJ; Facebook; iphone; Mars in Google Earth Updated; DDJ; google; google earth; Google mars; red planet; The Sun Cloud is built on the Sun Open Cloud Platform that leverages the best in world-class open source technologies. The Sun Open Cloud Platform brings together Java, MySQL, OpenSolaris and OpenStorage.; cloud computing; DDJ; java; open solaris; sun; DDJ; High School; Intel; science; ILOG Elixir is a suite of professional user interface controls that gives developers a rich collection of innovative and interactive data display components for Adobe Flex and Adobe Air.; adobe; air; DDJ; elixir; flash; flex; ILOG; The inaugural San Diego Science Festival being held this month is touted as one of the largest multicultural, multigenerational, multidisciplinary celebrations of science ever seen on the West Coast; DDJ; lockheed; News; science; IBM has announced Innov8 version 2, a new version of its serious game that helps students and professionals hone their business and technology skills in a compelling, familiar video game format.; DDJ; ibm; serious games; Swiss Automobile Visionary Frank M. Rinderknecht builds a concept car with adaptive energy concept and iPhone controls.; apple; Concept Car; DDJ; iphone; j; siemens; Two-Year Plan to Focus on 32 Nanometer Manufacturing Technology; 32 nanometer technology; chip; cpu; DDJ; gpu; Intel; manufacturing; Nehalem; Westmere; New version features ocean layer, historical imagery, and more.; DDJ; google; Dr. Dobb's talks with Marty Alchin, author of "Pro Django" about his book and the deep internals of the Django framework.; DDJ; Django; A new content-authoring solution for learning professionals; adobe; DDJ; toolkits; web authoring; In a Second Life setting, Danny Coward discusses Java FX with Dr. Dobb's Jon Erickson.; DDJ; java; JavaFX; sun; The Core i7 processor is the first member of a new family of Nehalem processor designs with new technologies that boost performance on demand.; chip; DDJ; Intel; processors; Dan Diephouse, creator of XFire, a high-performance open-source SOAP framework (which became the Apache CXF project), shares the five common mistakes in SOA governance and insight about the Apache CXF and Mule RESTpack development environments.; apache; Apache CXF; DDJ; mule; open source; soa; soap; Xfire; Adrian Kaehler and Gary Bradski discuss the Open Computer Vision Library (sourceforge.net/projects/opencvlibrary/) and their book "Learning OpenCV".; DDJ; Open Computer Vision Library; OpenCV; In the first part of this two-part interview, Stephen Wolfram reflects on the 20-year anniversary of Wolfram Research.; DDJ; Mathematica; Mathematics; science; In the second part of this two-part interview, Stephen Wolfram discusses his book "A New Kind of Science."; DDJ; Mathematica; Mathematics; science; Nick Hodges talks about Delphi 2009, a RAD tool for Windows, and Delphi Prism, a database engine for Windows, Mac OS X, and Linux.; DDJ; delphi; RAD; windows; Dr. Dobb's talks with Tony Lombardo, lead Technical Evangelist at Infragistics, about all new UI tools for Windows and .NET.; .net; DDJ; silverlight; ui; windows; wpf; Dr. Dobb's talks with Eric Schulz about his International Mathematica User's Conference 2008 presentation on the Mathematica Essentials Palette and the future digital educational material; DDJ; Mathematica; Mathematics; Dr. Dobb's talks with ActiveState's Trent Mick about the recently released Komodo IDE 5.0.; DDJ; ide; open source; Dr. Dobb's talks with Continuity Logic's Kris Carlson about "Why We Die: Simulation of the Evolution of Senescence" and why he programs with Mathematica's functional programming language.; DDJ; functional programming; Mathematica; simulation; Ericsson collaborates with Intel; DDJ; ericsson; Intel; Mobile technology; Dr. Dobb's talks with Schoeller Porter about the grid and cloud versions of Mathematica; clouds; DDJ; Grid; Mathematica; Dr Dobb's interviews Yehuda Katz, maintainer of the Merb project, about the advantages this highly optimized Ruby on Rails alternative offers to web application developers.; DDJ; Ruby on Rails; Dr. Dobb's talks with Thomas Roman, Professor of Mathematics at Central Connecticut State University, about "Mathematica Visualization in a Theoretical Physics Problem - Negative Energy in an Unusual Quantum State."; DDJ; Mathematica; physics; quantum; science; The Forbidden City: Beyond Space & Time is a fully immersive, three-dimensional virtual world that recreates a visceral sense of space and time.; Blade Server; China; DDJ; ibm; linux; mac; online; virtual world; windows; Dr. Dobb's interviews open source luminary Miguel de Icaza about his latest milestone of achieving Microsoft .NET 2.0 Framework compatibility with the Mono Project .; DDJ; Dr. Dobb/s interviews Paul Kimmel, author of "LINQ Unleashed for C#", about Microsoft's new query technology that lets developers poll any information from any data source regardless of location or structure. I; C#; DDJ; Dr. Dobb's; LINQ; microsoft; It takes a supercomputer to build a super car. ; DDJ; HPC; simulation; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Perl for Windows Mobile devices.; DDJ; mobile devices; perl; windows; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Python CE which is optimized for Windows Mobile devices.; DDJ; mobile devices; python; windows; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Ruby for Windows Mobile devices.; DDJ; mobile devices; ruby; windows; Young participants at ITU TELECOM ASIA 2008 in Bangkok, Thailand received free laptops as part of ITU’s initiative to promote affordable devices to increase access to information and communication technologies.; communication; DDJ; itu; Currently technical strategist to Microsoft's Chief Software Architect, Rebecca Norlander has had a tremendous impact on Excel, Internet Explorer, Windows XP SP2, and Windows Vista Security. ; DDJ; microsoft; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 1 of 3.; DDJ; programming; software development; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 2 of 3.; DDJ; programming; software development; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 3 of 3.; DDJ; programming; software development; Anders Hejlsberg discusses C#, Turbo Pascal, and what it means to design a programming language. ; C#; DDJ; microsoft; Turbo Pascal; Solar powered laptops given to youths at ITU Asia 2008.; DDJ; News; telecommunications; IBM breakthrough stands to impact future direction of information technology.; DDJ; Mike Riley spoke to ActiveState's Jeff Hobbes about the new features in Tcl Dev Kit and Perl Dev Kit including the code coverage and hot-spot analysis tool and Mac OSX support.; DDJ; Tim O'Reilly addressed the OSCON convention in his Wednesday keynote titled "Degrees of Freedom, Open Source in the Wed 2.0 Era.; DDJ;