This Section Introduces the Idea of Across-Platform Component Based Ecommerce Framework

This Section Introduces the Idea of Across-Platform Component Based Ecommerce Framework

1. INTRODUCTION

This section introduces the idea of across-platform component based ecommerce framework and the advantages the above framework has over a system with identical client and server technologies. This latter sectionstalk about the technologies involved in developing such a frame work and also present an architecture that implements this framework.

A cross-platform component based approach for an ecommerce framework holds many advantages. It allows enterprise developers to use business components developed by a third party to be integrated into their web application eliminating the time and energy involved in developing and testing the components themselves. As these business components are a major source of revenue for the organization developing them, the components are sure to work well under adverse conditions. Integrating third party business components involves using an architecture that

  • Is based on open standards
  • Is platform and language independent
  • Emphasizes on a mode of communication understandable to both systems

Web Services form an ideal choice for such an architecture as they are utilize XML, they are based on open standards like SOAP, WSDL and UDDI, and use HTTP ,which is understood

by many systems as the underlying transport mechanism. As a part of the study an architecture was designed and implemented that connected J2EE and Microsoft .NET (they being current and popular enterprise technologies) using web services. The architecture involved developing a web based shopping portal in .NET where generic functionalities were developed as third-party business components in EJB and plugged into the .NET web application. This represents a realistic scenario as many ecommerce applications need to implement functionalities that are common and found across the entire spectrum of applications. Such generic functionalities can be implemented as components and plugged into the web application as and when needed across platforms and across applications. EJB’s are ideally suited for developing secure, transactional, scalable and robust components.

Advantages of a Cross-Platform Approach

  1. Reduces software development lifecycle
  2. Eliminates time spent in testing and debugging the application
  3. Decreases “Time-to-Market” aspect of the web application

2. CROSS-PLATFORM INTEGRATION: KEY TECHNOLOGIES INVOLVED

2.1 Java 2 Enterprise Edition (J2EE)

The Java 2 Platform, Enterprise Edition (J2EE) was designed to simplify complex problems with thedevelopment, deployment, and management of multi-tier enterprise solutions. J2EE is an industry standard, and is the result of a large industry initiative led by Sun Microsystems.

It's important for realize that J2EE is a standard, not a product. J2EE describes agreements between applications and the containers in which they run. So long as both sides obey the J2EE contracts, applications can be deployed in a variety of container environments. The J2EE camp's goal is to give customers choice of vendor products and tools, and to encourage best-of-breed products to emerge through competition.

Java: The foundation for J2EE

The J2EE architecture is based on the Java programming language. What's exciting about Java is that it enables organizations to write their code once, and deploy that code onto any platform. J2EE is an application of Java. Your J2EE components are transformed into byte code and executed by a JRE at runtime. Even the containers are typically written in Java. Additionally, J2EE provides techniques for managing data persistence by allowing data to be persisted by the bean developer or by the container. These technologies are called Bean – Managed Persistence (BMP) and Container – Managed Persistence (CMP). Each has their own advantaged and disadvantages and can be applied beneficially to specific problems. J2EE also provides powerful state management facilities through the use of its Session Beans.

J2EE and Web Services

J2EE has historically been architecture for building server-side deployments in the Java programming language. It can be used to build traditional web sites, software components, or packaged applications. J2EE has recently been extended to include support for building XML-based web services as well. These web services can interoperate with other web services that may or may not have been written to the J2EE standard. J2EE web services development model is shown in Fig 1.

Fig 1:J2EE Architecture [1]

J2EE application is hosted within a container, which provides qualities of service necessary for

enterprise applications, such as transactions, security, and persistence services. The business layer performs business processing and data logic. In large-scale J2EE applications, business logic is built using Enterprise Java Beans (EJB) components. This layer performs business

processing and data logic. It connects to databases using Java Database Connectivity (JDBC) or SQL/J, or existing systems using the Java Connector Architecture (JCA). It can also connect to business partners using web services technologies (SOAP, UDDI, WSDL, ebXML) through the Java APIs for XML (the JAX APIs).Business partners can connect with J2EE applications through web services technologies (SOAP, UDDI, WSDL, ebXML). A servlet, which is a request/response oriented Java object, can accept web service requests from business partners. The servlet uses the JAX APIs to perform web servicesoperations. Shared context services will be standardized in the future through shared context standards that will be included with J2EE.

Traditional 'thick' clients such as applets or applications connect directly to the EJB layer through the Internet Inter-ORB Protocol (IIOP) rather than web services, since generally the thick clients are written by the same organization that authored J2EE application, and therefore there is no need for XML-based web service collaboration.

Web browsers and wireless devices connect to Java Server Pages (JSPs), which render user interfaces in HTML, XHTML, or WML.

2.2Microsoft .NET

Microsoft.NET8 is product suite that enables organizations to build smart, enterprise-class web services. Note the important difference: .NET is a product strategy, whereas J2EE is a standard to which products are written. Microsoft.NET is largely a rewrite of Windows DNA, which was Microsoft's previous platform for developing enterprise applications. The new .NET Framework replaces these technologies, and includes a web services layer as well as improved language support. The developer model for building web services with Microsoft.NET is shown in Fig 2

Fig 2: Microsoft .NET architecture [1]

The .NET application is hosted within a container, which provides qualities of service necessary for enterprise applications, such as transactions, security, and messaging services. The business layer of the .NET application is built using .NET managed components. This layer

performs business processing and data logic. It connects to databases using Active Data Objects

(ADO.NET) and existing systems using services provided by Microsoft Host Integration Server 2000, such as the COM Transaction Integrator (COM TI). It can also connect to business partners using web services technologies (SOAP, UDDI, and WSDL). Business partners can connect with the .NET application through web services technologies (SOAP, UDDI, WSDL, and BizTalk). Traditional 'thick' clients, web browsers, wireless devices connect to Active Server Pages(ASP.NET) which render user interfaces in HTML, XHTML, or WML. Heavyweight user interfaces are built using Windows Forms.

The .NET Framework

Microsoft.NET offers language-independence and language-interoperability. This is one of the most intriguing and fundamental aspects of the .NET platform. A single .NET component can be written, for example, partially in VB.NET, the .NET version of Visual Basic, and C#, Microsoft’s new object oriented programming language. How does this work? First, source code is translated into Microsoft Intermediate Language, sometimes-abbreviated MSIL, sometimes IL. This IL code is language-neutral, and is analogous to Java byte code. The IL code then needs to be interpreted and translated into a native executable. The .NET Framework includes the Common Language Runtime (CLR), analogous to the Java Runtime Environment (JRE),

which achieves this goal. The CLR is Microsoft’s intermediary between .NET developers’ source code and the underlying hardware, and all .NET code ultimately runs within the CLR.

This CLR provides many exciting features not available in earlier versions of Windows DNA, such as automatic garbage collection, exception handling, cross-language inheritance, debugging, and “side-by-side” execution of different versions of the same .NET component.

Understanding J2EE and .NET by analogy

FEATURE

/

J2EE

/

Microsoft .NET

Type of Technology / Standard / Product
Interpreter / JRE / CLR
Dynamic Web Pages / JSP / ASP .NET
Middle Tier Components / EJB’s / .NET managed components
Database Access / JDBC, SQL/J / ADO .NET
SOAP, WSDL, UDDI / Yes / Yes
Implicit Middleware / Yes / Yes

To help you understand both models, we offer analogies between J2EE and .NET technologies in Table 1[1]

3. WEB SERVICES

Thus section discusses the concepts of web services and the typical characteristics they embody. The key technologies under the web service rubric are discussed and the notion of a Service Oriented Architecture (SOA) on which web services is based is introduced.

3.1 Background

Web services are components that implement business logic via services and expose

these services programmatically over the web, which could be invoked by service clients

using SOAP over HTTP. Web services provide the language and platform independence by separating the specification from implementation and provide the loosely coupled integration between applications by message-based, synchronous or asynchronous communication. Web

services are based on decentralized architecture wherein there is no central server and

communication is over internet using standard protocols. Protocols do not make any

assumption on the underlying implementation.One of the important features of the Web services based computing model is that both clients and Web services are unaware of the implementation details of each other. The Web services infrastructure provides several components that enable client applications to locate and consume Web services dynamically. The promise of web services is to enable a distributed environment in which any number of applications, or application components, can interoperate seamlessly among and between organizations in a platform-neutral, language-neutral fashion. This interoperation brings heterogeneity to the world of distributed computing once and for all.A web service is a piece of business logic, located somewhere on the Internet, that is accessible through standard-based Internet protocols such as HTTP or SMTP. Using a web service could be as simple as logging into a site or as complex as facilitating a multi-organization business negotiation. Given this definition, several technologies used in recent years could have been classified as web service technology, but were not. These technologies include win32 technologies, J2EE, CORBA, and CGI scripting. The majordifference between these technologies and the new breed of technology that are labeled as web services is their standardization. This new breed of technology is based on standardized XML (as opposed to a proprietary binary standard) and supported globally by most major technology firms. XML provides a language-neutral way for representing data, and the global corporate support ensures that every major new software technology will have a web services strategy within the next couple years. When combined, the software integration and interoperability possibilities for software programs leveraging the web services model are staggering. A web service has special behavioral characteristics:

XML Based

By using XML as the data representation layer for all web services protocols and technologies that are created, these technologies can be interoperable at their core level. As a data transport, XML eliminates any networking, operating system, or platform binding that a protocol has.

Loosely Coupled

A consumer of a web service is not tied to that web service directly; the web service interface can change over time without compromising the client's ability to interact with the service. A tightly coupled system implies that the client and server logic are closely tied to one another, implying that if one interface changes, the other must also be updated. Adopting a loosely coupled architecture tends to make software systems more manageable and allows simpler integration between different systems.

Coarse Grained

Object-oriented technologies such as Java expose their services through individual methods. An individual method is too fine an operation to provide any useful capability at a corporate level. Building a Java program from scratch requires the creation of several fine-grained methods that are then composed into a coarse-grained service that is consumed by either a client or another service. Businesses and the interfaces that they expose should be coarse-grained. Web services technology provides a natural way of defining coarse-grained services that access the right amount of business logic.

Ability to be synchronous or asynchronous

Synchronicity refers to the binding of the client to the execution of the service. In synchronous invocations, the client blocks and waits for the service to complete its operation before continuing. Asynchronous operations allow a client to invoke a service and then execute other functions. Asynchronous clients retrieve their result at a later point in time, while synchronous clients receive their result when the service has completed. Asynchronous capability is a key factor in enabling loosely coupled systems.

  • Supports Remote Procedure Calls (RPCs)

Web services allow clients to invoke procedures, functions, and methods on remote objects using an XML-based protocol. Remote procedures expose input and output parameters that a web service must support. Component development through Enterprise JavaBeans (EJB’s) and .NET Components has increasingly become a part of architectures and enterprise deployments over the past couple of years. Both technologies are distributed and accessible through a variety of RPC mechanisms. A web service supports RPC by providing services of its own, equivalent to those of a traditional component, or by translating incoming invocations into an invocation of a EJB or a .NET component.

Supports document exchange

One of the key advantages of XML is its generic way of representing not only data, but also complex documents. These documents can be simple, such as when representing a current address, or they can be complex, representing an entire book or RFQ. Web services support the transparent exchange of documents to facilitate business integration

3.2 Major Web Services Technologies

Several technologies have been introduced under the web service rubric and many more will be introduced in coming years. The web service paradigm has grown at such a breakneck speed that several competing technologies are attempting to provide the same capability. However, the web service vision of seamless worldwide business integration is not feasible unless the core technologies are supported by every major software company in the world. Over the past two years, three primary technologies have emerged as worldwide standards that make up the core of today's web services technology. These technologies are:

  • Simple Object Access Protocol (SOAP)

SOAP provides a standard packaging structure for transporting XML documents over a variety of standard Internet technologies, including SMTP, HTTP, and FTP. It also defines encoding and binding standards for encoding non-XML RPC invocations in XML for transport. SOAP provides a simple structure for doing RPC: document exchange. By having a standard transport mechanism, heterogeneous clients and servers can suddenly become interoperable. .NET clients can invoke EJB’s exposed through SOAP, and Java clients can invoke .NET Components exposed through SOAP.

  • Web Service Description Language (WSDL)

WSDL is an XML technology that describes the interface of a web service in a standardized way. WSDL standardizes how a web service represents the input and output parameters of an invocation externally, the function's structure, the nature of the invocation (in only, in/out, etc.), and the service's protocol binding. WSDL allows disparate clients to automatically understand how to interact with a web service.

  • Universal Description, Discovery, and Integration (UDDI)

UDDI provides a worldwide registry of web services for advertisement, discovery, and integration purposes. Business analysts and technologists use UDDI to discover available web services by searching for names, identifiers, categories, or the specifications implemented by the web service. UDDI provides a structure for representing businesses, business relationships, web services, specification metadata, and web service access points.

Individually, any one of these technologies is only evolutionary. Each provides a standard for the next step in the advancement of web services, their description, or their discovery. However, one of the big promises of web services is seamless, automatic business integration: a piece of software will discover access, integrate, and invoke new services from unknown companies dynamically without the need for human intervention. Dynamic integration of this nature requires the combined involvement of SOAP, WSDL, and UDDI to provide a dynamic, standard infrastructure for enabling the dynamic business of tomorrow. Combined, these technologies are revolutionary because they are the first standard technologies to offer the promise of a dynamic business. In the past, technologies provided features equivalent to SOAP, WSDL, and UDDI in other languages, but they weren't supported by every major corporation and did not have a core language as flexible as XML.

Fig 3: Interaction between SOAP, UDDI and WSDL[2]

The relationship between these pieces (SOAP, WSDL, and UDDI) can be described as follows: an application acting in the role of a web services client needs to locate another application or a piece of business logic located somewhere on the network. The client queries a UDDI registry for the service either by name, category, identifier, or specification supported. Once located, the client obtains information about the location of a WSDL document from the UDDI registry. The WSDL document contains information about how to contact the web service and the format of request messages in XML schema. The client creates a SOAP message in accordance with the XML schema found in the WSDL and sends a request to the host (where the service is).