Comments
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Cloud Expo on Google News


2008 West
DIAMOND SPONSOR:
Data Direct
SOA, WOA and Cloud Computing: The New Frontier for Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
GOLD SPONSORS:
Appsense
User Environment Management – The Third Layer of the Desktop
Cordys
Cloud Computing for Business Agility
EMC
CMIS: A Multi-Vendor Proposal for a Service-Based Content Management Interoperability Standard
Freedom OSS
Practical SOA” Max Yankelevich
Intel
Architecting an Enterprise Service Router (ESR) – A Cost-Effective Way to Scale SOA Across the Enterprise
Sensedia
Return on Assests: Bringing Visibility to your SOA Strategy
Symantec
Managing Hybrid Endpoint Environments
VMWare
Game-Changing Technology for Enterprise Clouds and Applications
Click For 2008 West
Event Webcasts

2008 West
PLATINUM SPONSORS:
Appcelerator
Get ‘Rich’ Quick: Rapid Prototyping for RIA with ZERO Server Code
Keynote Systems
Designing for and Managing Performance in the New Frontier of Rich Internet Applications
GOLD SPONSORS:
ICEsoft
How Can AJAX Improve Homeland Security?
Isomorphic
Beyond Widgets: What a RIA Platform Should Offer
Oracle
REAs: Rich Enterprise Applications
Click For 2008 Event Webcasts
SYS-CON.TV
Top Links You Must Click On


NetDynamics
NetDynamics

If you are planning to deploy your database application on the Internet or Intranet, very soon you will need to deal with state management.' The stateless nature of Web architecture makes it radically different from the other (traditional) client-server architectures. The servers do not maintain any information on a client after the request is served. NetDynamics offers a solution for such problems. You can develop a fully object-oriented Web application in Java using the NetDynamics system. It supports server side Java for the generation of dynamic Web pages, application logic and database connectivity. It also addresses security, access control and flow control of the user in a Web application.

Installation and Configuration
Thanks to Installshield, installation is easy. The software requires about 20Mb of disk space. For development, it needs a §minimum of 32 Mb RAM on Windows 95/ NT3.51 and 48Mb on NT4.0. On UNIX, 50MB of hard disk and 64 Mb are RAM required. The installation requires HTTP servers. I had installations of Microsoft's Front Page Web Server and Netscape's Fasttrak. The Setup detected both the servers along with their port numbers. It allowed me to select HTTP server and an appropriate connectivity (CGI/NSAPI/ISAPI) to it. Then I could start the Application Server' without any hassle.

System Components, Architecture and Working
The NetDynamics solution is based on a three-tier architecture in which its application server, along with the HTTP server, forms a middle tier. The middle tier implements the business logic processing. The application server is responsible for session state management, automatic queuing, scheduling and load balancing. Since the server is always running, the Web request does not have to share the time overhead of starting and stopping it.

The HTTP server passes the HTTP request to the NetDynamics Application Server through a client connection (CC) interface. The CC can either be a lightweight CGI executable (20K) or you can use the Microsoft ISAPI runtime library or Netscape server API (NSAPI). The CC puts the request in a shared memory-based request queue. A Connection Processor (CP) monitors the queue, validates the access privileges and loads and executes the Java code corresponding to the project on a Java Virtual machine. For every connection, CP interacts with a Persistence Engine (PE) to verify the existence of the user session. For the existing user session, PE maintains the information related to the session and login privileges. The programmers can also store some data at the page level, user session level or global level for all projects. The CP puts a database-related request in another queue. The Data Servers monitor the request queue and interact with RDBMS/DBMS natively (for Oracle, Informix, Sybase) or using ODBC. NetDynamics 3.0, comes with a WebEXTEND module which enables DS to interact with enterprise applications like SAP and PeopleSoft. The DS establishes persistent connections with the database. These persistent connections enhance the performance. The DS then sends the database results to CP. Using this data, CP dynamically generates an HTML page as designed by an application programmer.

As an administrator, you can control the number of CPs and DS's on the application servers. Again, you can distribute application servers over multiple machines. This can make your system scalable and distributed, which I think is a pretty good architecture.

Session Management, Access Control and Flow Control
NetDynamics computes and encrypts a unique session ID to each session and stores it as a hidden field' on every page. It also allows you to store your own data at the page level, user session level or global (to all) level. This facility is very good for designing applications like shopping cart.

They also provide a good security mechanism. You can authenticate the users whenever they log into the application. You can select database tables, Java events or Gradient WebCrusader (third party software) to authenticate the user. It maintains an access privilege list at every page and verifies user access with the list.

Development Process
NetDynamics Studio is a GUI development environment for Rapid Application Development (RAD). If you have used any other visual development tool, you will find yourself on home ground. Using drag-and-drop facility, you can create page templates, data sources, data objects and security objects. You can also use wizards to create all of these objects. The wizards are very useful for creating most commonly required templates. With the page template wizard, you can create single or multiple pages (search, master-detailed or drill-down). Then, you can customize the pages by adding use interface elements like static text box, text box, list box, combo box and radio button. The HTML generator generates an HTML page template that you can customize to add client side Java applets, JavaScript or images. With the Inspector window, you can set the properties of each of these GUI objects. You can bind the display objects, such as text box or radio buttons, to columns of the data objects and you can automatically fill the list box or combo box with data from database tables. The data object itself is derived from single or multiple tables with SQL or stored procedure access. The studio automatically generates Java code for the page.

Java API
NetDynamics's Java API is one of the best Java implementations. It is a set of classes organized in different packages - namely CSpider (general), visual, database, session, access and util, for adding your business logic. All classes begin with the characters "CSp", which stands for Spider (the former name of NetDynamics). The company name has changed but it is still stuck to the classes. Today, this is very common. However, it is better not to use thecompany name for API classes and methods!

  • CSpider Package consists of a static class called CSpider and other high level classes like CSpProject, etc. CSpider consists of static methods to access all projects, pages and data objects while creating project-specific information (e.g. session time out).
  • Visual Package consists of all server side classes of the GUI objects that the end user sees. It includes CSpPage, which is a server side container class. CSpPage can contain GUI classes like CSpTextBox, CSPListBox, CSpButton, etc.
  • Database Package contains classes related to relational databases as SQL abstraction (select, insert, update, delete and all), stored procedure abstraction, transaction processing, database schema, etc. You might frequently use methods related to joining tables or adding where clauses, (addDynamicCriterion). Here, I should note that the database API offers a high level abstraction. NetDynamics developed this excellent package well before JDBC was available. Still, if someone needs to access low level database calls, it is yet another API.' I look forward to seeing that JDBC API, which is planned to become an integral part of the existing API.
  • Session Package contains classes that are wrappers over standard Java data types. These classes have serialization and deserialization methods that make them sessionable. You can create your own sessionable objects using these classes.
  • Access package is very important for access control and privileges. It contains classes for security table, user profile, privileges and page flow security.
  • Util Package contains general purpose classes for error logging, encryption, named lists, etc.

    The Java API seems to be very impressive. It is flexible and complex and you may need to allow a considerable learning time.

    Conclusion
    NetDynamics has developed a complex system on a very strong foundation. It provides a user-friendly development tool and excellent Java API. Through its session management capability, it has bridged the gap between the HTTP server and database server. Its security model makes it more suitable for the Web. While deploying your application, it is worth considering using JIT compilers for better performance

    About Khanderao Kand
    Khanderao Kand is a Lead Architect for Oracle Fusion Middleware at Oracle Corp. He is involved in the development of Oracle’s SOA Suite covering various Integration and BPM technologies including BPEL and ESB. He also provides Architectural consultancy for Oracle’s next generation Fusion Applications to architect their solutions around SOA and BPM. He has been involved in the development of various industry standards like BPEL 2.0, SCA-Assembly, SCA-BPEL etc. In his two decades of Software Development experience, he played various roles like an Enterprise Architect of Peopletools, an architect in CRM and others. Being a code slinger, he plays around with various emerging tools and technologies. Occasionally he writes in technical magazines like Java Developers Journal, Web Services Journal, SOA World etc. He also speaks at various conferences like Oracle Open World, JAX Conference, and Software Development Best Practices.

  • In order to post a comment you need to be registered and logged in.

    Register | Sign-in

    Reader Feedback: Page 1 of 1

    Enterprise Open Source Magazine Latest Stories . . .
    Apache Deltacloud, the Red Hat-contributed ReSTful API that abstracts differences between clouds so services on any cloud can be managed – provided of course there’s a driver – has graduated from the Apache Foundation’s incubator and is now a full-fledged Top-Level Project (TLP). The...
    With Cloud Expo 2012 New York (10th Cloud Expo) just four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference... We have technical and st...
    AMD said late Tuesday that its chief sales officer Emilio Ghilardi had left the company and that CEO and president Rory Read is going to do his job while a replacement is sought. AMD didn’t say why Ghilardi left but it’s assumed Read wants his own people. Read is relatively new to th...
    During the lifespan of M3 (Monitis Monitor Manager) there has always been something lacking – timers. M3 execution procedure was outlined in this previous article. The execution mentioned in the latter was a one-time-execution, whereas server monitoring requires periodic invocati...
    Red Hat is putting its bought-in Gluster scale-out NAS storage technology, acquired in October, on the Amazon cloud. It’s styled Red Hat Virtual Storage Appliance for Amazon Web Services and other clouds are supposed to follow in short order.
    A new episode of the screencast series is now available at the OpenNebula YouTube Channel. This screencast demonstrates the new easily-customizable self-service portal for cloud consumers. Its aim is to offer a simplified access to shared infrastructure for non-IT end users. The scree...
    Subscribe to the World's Most Powerful Newsletters
    Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
    Click to Add our RSS Feeds to the Service of Your Choice:
    Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
    myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
    Publish Your Article! Please send it to editorial(at)sys-con.com!

    Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021


    SYS-CON Featured Whitepapers
    ADS BY GOOGLE