Mainframe-web middleware

 

Connecting state and local government leaders

Federal agencies, under mandate from Congress and the Office of Management and Budget to reduce paperwork, need to collect information electronically and publish on the Web.

CORBA and DCOM have essentially the same client-server architecture, and at a deeper level both use an interface definition language structure that separates the interface from the implementation. The IDL level is where differences begin to show up.CORBA includes error handling in the IDL and supports C++ exceptions. DCOM doesn't manage errors at the IDL level.CORBA allows multiple inheritance. With CORBA, objects have a single client interface or reference, which arguably makes it a simpler architecture than DCOM. DCOM doesn't support multiple inheritance and instead uses multiple interfaces to clients; the interfaces are managed through globally unique identifiers stored in a registry.Originally, DCOM was a Windows-only product, making it unsuitable for enterprise use, but eventually Microsoft ported it to SunSoft Solaris and IBM OS/390. It now also works with Linux, Compaq OpenVMS, IBM AIX and Hewlett-Packard HP-UX.CORBA still holds an edge in the number of platforms supported, but DCOM has an advantage when there are numerous Microsoft platforms involved.Where do Enterprise JavaBeans fit into all this? EJB is another distributed object system. CORBA's infrastructure supports EJB.With Sun's release of Java Development Kit Version 1.1, Java got its own ORB, called the Remote Method Invocation, which was not CORBA-compliant. But CORBA and Java work well together.For some applications, Java's RMI is a good fit, but for others, Java can work through CORBA. Because Java is a programming language and CORBA is an integration technology, CORBA can be the interface between Java Web objects and C++ data in databases or other applications. CORBA manages the complex cross-language problems transparently.If you believe the hype, the Extensible Markup Language is the answer to all such problems. But really it's just a way to specify data presented on Web pages.Like HTML, XML is derived from the much older Standard Generalized Markup Language. Although SGML can provide both data content tags and page formatting tags, it has a 500-plus-page-long specification and is essentially too complex for easy use.XML document type definition lets programmers specify text or integer data types. XML creates documents that are easy to read, but the data is not convenient for computers to manage. So although XML will be important as a way to display data to people, it isn't a substitute for middleware.Ultimately, when you sit down to plan a strategy for making your data easily accessible via browser'either for internal or external use'you must do a major systems and software inventory. Only then will you be able to fairly gauge your requirements against the potential costs and benefits.XXXSPLITXXX-XXXSPLITXXX-

By John McCormick

Special to GCN

Federal agencies, under mandate from Congress and the Office of Management and Budget to reduce paperwork, need to collect information electronically and publish on the Web.

Officials took a step toward meeting the mandate during the last few years as they prepared systems for year 2000. The work they did on date code forced them to do away with many redundant systems and to move reams of data off of antiquated systems that seemed destined for disaster.

Despite these efforts, agencies still have vast amounts of data stowed on myriad mainframes and disparate network servers'and it is often inaccessible to users via the Internet or intranets.

The Web browser is today's interface of choice, and TCP/IP is by far the simplest, most widely accepted and least costly WAN protocol. The Internet or an intranet is the only practical way to provide wide access to the government's mountain of data.

Middleware, acting as a translator, integrator or converter'or all three simultaneously'is the glue that can connect legacy data or applications for use on the Web.

Just what is middleware? It's a broad category of software covering products ranging in cost from a few hundred dollars to a tens of thousands of dollars. Although the software can be complex, the concept is easy to understand.

Applications such as databases or spreadsheets are used by individuals to create, store and manage raw data. But people who need to see this data may be using different operating systems and applications. Middleware, in the form of relational database management systems, bridges this gap for users.

There are other kinds of middleware. The products that get the most attention are message-oriented middleware and software that lets users run apps remotely. MOM manages the exchange of data, and distributed object middleware manages the real-time execution of processes on remote systems.

Middleware products can also be divided into two meta classes, management and development. Broadly speaking, management middleware connects existing apps, and development middleware provides management tools and a development platform.

As is evident in the low prices of some relational database management software, merely publishing a single legacy data set on one system to the Web isn't very difficult.

The trouble starts when you need to connect that database to the variety of systems found in a typical enterprise, publish the data to the Web and build new applications.

Plus, most agencies do a lot more than just manage a single database; many need to integrate dozens of servers running a mix of database programs from Oracle and DB2 to Informix and Adabas.

Traditionally, middleware has been the software that connects clients and servers in an enterprise environment. Web middleware, meanwhile, connects data and apps on mainframes and local servers to the Internet. The creation of software that can make data available in a form accessible via a standard Web browser is a relatively recent development.

When trying to select the right middleware product for your organization, consider two approaches: tactical and strategic.

Publishing data to the Web from a single mainframe or network can be treated as a tactical situation. Just select the middleware that will bridge the different protocols most easily.

If you have bigger concerns than merely publishing a single set of data, choosing middleware is a strategic decision. Your program choice will affect every aspect of your network.

And though implementing any middleware across an enterprise is expensive, if you make a mistake, changing your middleware will be massively more expensive.

The software you choose must support not only what you are asking of it today but also what you will ask of it in five years. A manufacturer's promise that the features in a future release will solve your problems could prove worthless if that release never comes through.

Get just enough

On the flip side, because of the up-front investment and heavy management requirements, you must also be certain you aren't buying more middleware than you need.

There are 10 basic requirements you should rank when selecting middleware:
' Security

' Access to legacy data

' Around-the-clock reliability

' Scalability

' Fault tolerance

' Remote management

' Load balancing

' Protocol support

' Programming ease

' Standard scripting support.

You might think the requirements listed have more to do with business than government apps, but you would be wrong. Many agencies use advanced middleware and have the same requirements as any business. Allaire Corp.'s ColdFusion is an example of business middleware widely used in the government.

The IRS' Compliance Research Division uses ColdFusion to give 33 field offices access to a database of more than 2,000 reports. The Texas Public Safety Department uses the middleware to manage a criminal records database through a Web interface.

For more background information on middleware, take a look at the International Middleware Association's Web site, at www.moma-inc.org.

In the world of middleware, objects reign supreme. Put in the simplest terms, objects are program modules, and distributed object controls are the tools used to manage users' requests to run the modules on remote systems. They are essential components to providing remote access to services over high-speed networks.

There are a number of competing object architectures, the most prominent being the Distributed Component Object Model (DCOM) and the Common Object Request Broker Architecture (CORBA).

DCOM is an extension of Microsoft's Component Object Model for distributed architectures. It places requests on top of Distributed Computing Environment remote procedure calls.

COM is a binary level specification that allows components to be created in C++, Java, Visual Basic and other languages. COM began as Microsoft's Object Linking and Embedding technology, which integrates Windows desktop applications.

The Object Management Group developed CORBA. OMG, whose original members in 1989 included Data General Corp., Hewlett-Packard Co. and Sun Microsystems Inc., formed in part to compete against Microsoft in the development of standards. There are now more than 700 OMG members. For more information, visit www.omg.org.

Both CORBA and DCOM work at the top layer, managing client-server interactions and providing essentially the same services. There is debate about which is better, but it is important to note is that one is backed by Microsoft and the other by Sun. Most of the arguments are not based on absolute merits.

Microsoft creates and manages COM and DCOM, so there is only one basic, compatible implementation.

CORBA is a specification rather than a set of programs, so initially, different vendors' CORBA products had incompatibilities that prevented them from working with one other. But through OMG's efforts, most incompatibilities have been resolved.


  • Choosing and implementing an
    enterprise middleware strategy is probably the most complex task any systems department will ever face.
  • Remote administration is vital for large installations.
  • The middleware must support not only your data but also all your database management tools.
  • Scripting control is vital.
  • Focus more on what you plan to do in the future than what you do now.



  • Similar situation















    Bridging the gap











    John McCormick, a free-lance writer and computer consultant, has been working with computers since the early 1960s.































































































































































































































    Vendor
    ProductPlatformsWeb server interfaceDBMS support
    Advanced Software
    Development Corp.
    Houma, La.
    504-851-6007
    www.advancedsoftware.com
    Total e-BizWindowsJavaScriptSQL Server
    Allaire Corp.
    Cambridge, Mass.
    617-761-2000
    www.allaire.com
    ColdFusionWindows, Linux,
    HP-UX
    CGI, ISAPI, GWAPI, NSAPIDB2, Informix, LDAP, Sybase, Oracle, SQL Server, OLE DB, ODBC
    Bluestone Software Inc.
    Philadelphia
    610-915-5000
    www.bluestone.com
    Total-e-BusinessWindows, Unix, Solaris, LinuxNSAPI, ISAPI, CGI, Servlet, JavaServer PageOracle, Sybase, SQL Server, Informix, DB2
    Computer Associates
    International Inc.
    Islandia, N.Y.
    631-342-6000
    www.ca.com
    Jasmine iiWindows, UnixJavaScript, JavaServer Page, ASP, XMLSQL Server, Sybase, Informix, Oracle, DB2, IMS, VSAM, CA-Datacom, CA-IDMS, Lotus Notes
    Ingres IIWindows, UnixCGISQL Server, Sybase, Informix, Oracle, DB2, IMS, VSAM, CA-Datacom, CA-IDMS
    EDBC (Enterprise Database Connectivity)Client: Windows; server: OS/390CGIDB2, IMS, CA-Datacom, CA-IDMS
    Data Access Worldwide Miami
    305-238-0012
    www.webappdeveloper.com
    WebApp ServerWindows NTGWAPI, ISAPI, WSAPI, JavaScript, CGI, NSAPIDB2, SQL Server, ODBC
    eBusiness Technologies
    Providence, R.I.
    401-752-4400
    www.ebt.com
    DynaBaseWindows, Mac OS
    Solaris
    ISAPI, NSAPI, Java ServletsODBC
    Expertelligence Inc.
    Santa Barbara, Calif.
    805-962-2558
    www.expertelligence.com
    WebBaseWindowsHas integrated Web serverODBC
    Inline Internet Systems Inc.
    Mississauga, Ontario
    905-813-8800
    www.inline.net
    iHTML MerchantWindows, Linux, HP-UX, SolarisISAPI, NSAPISybase, Lotus Notes, Oracle,
    SQL Server
    Metagon Technologies LLC
    Matthews, N.C.
    704-847-2390
    www.metagon.com
    DQbrokerWindows NT, Unix, AIX, DG/UX, HP-UX, Linux, SolarisC, C++, Java, COM/ActiveXDB2, Informix, Oracle, Progress, SQL Server, Sybase, ADABAS, CA-IDMS, DMS, DMSII, IMS-DL/I, =KEYEDIO, NEON, VSAM, Sequential, ODBC
    Pervasive Software Inc.
    Austin, Texas
    512-231-6000
    www.pervasive.com
    Tango 2000Windows, Linux, Solaris, Mac OSCGI, NSAPI, ISAPI, Apache Plug-in
    Oracle, P.SQL, ODBC
    SiteSoft LLC
    New York
    212-533-9210
    www.sitesoft.com
    Database2NetWindowsCGIProprietary
    WRQ Inc.
    McLean, Va.
    703-749-0555
    www.wrq.com
    Apptrieve/Super NovaUnix, NTJava, COMComplimentary through app server














































































































































































































    Vendor

    Standard scripting supported

    Remote administration?

    Server/application load balancing

    Distributed component technology support

    Price

    Advanced Software
    Development Corp.
    Houma, La.
    504-851-6007
    www.advancedsoftware.com

    VBScript

    Yes

    No

    COM+

    $2,495

    Allaire Corp.
    Cambridge, Mass.
    617-761-2000
    www.allaire.com

    Java, JavaScript, VBScript

    Yes

    Server-level and application-level

    XML, CORBA, Enterprise JavaBeans, COM, DCOM

    $4,495

    Bluestone Software Inc.
    Philadelphia
    610-915-5000
    www.bluestone.com

    Any

    Yes

    Yes

    XML, CORBA, COM, COM +, DCOM, MTS, JavaBeans, Enterprise JavaBeans

    $95,000 up

    Computer Associates
    Islandia, N.Y.
    631-342-6000
    www.ca.com

    JavaScript, VBScript

    Yes

    Server-level and application-level

    CORBA, COM, DCOM, COM+, Enterprise JavaBeans
    $2,000 up
    NoneYesServer-levelVia ODBC: MTS, ActiveX, ADO, COM, DCOM$995 up

    VBScript

    Yes

    No

    COM, COM+ , DCOM

    $10,000 per server; free for client

    Data Access Worldwide
    Miami
    305-238-0012
    www.webappdeveloper.com

    JavaScript, VBScript

    No

    No

    COM

    $2,495

    eBusiness Technologies
    Providence, R.I.
    401-752-4400
    www.ebt.com

    VBScript

    Yes

    Server-level and application-level

    XML

    $60,000 up

    Expertelligence Inc.
    Santa Barbara, Calif.
    805-962-2558
    www.expertelligence.com

    JavaScript, VBScript

    Yes

    Yes

    None

    $695 up

    Inline Internet Systems Inc.
    Mississauga, Ontario
    905-813-8800
    www.inline.net

    No

    Yes

    Server-level

    XML

    $739 up

    Metagon Technologies LLC
    Matthews, N.C.
    704-847-2390
    www.metagon.com

    Pearl

    Yes

    No

    XML

    $40,000 per server

    Pervasive Software Inc.
    Austin, Texas
    512-231-6000
    www.pervasive.com

    JavaScript

    Yes

    Server-level

    XML, COM, DCOM, COM+,
    JavaBeans

    $3,500 per CPU

    SiteSoft LLC
    New York
    212-533-9210
    www.sitesoft.com

    No

    No

    No

    XML

    $150 up

    WRQ Inc.
    McLean, Va.
    703-749-0555
    www.wrq.com

    Java, Visual Basic, C++

    Yes

    Yes

    Through client architecture

    $20,995 up














    Middleware glossary


    ActiveX: A Microsoft
    Corp. architecture that lets components interact in a networked environment, regardless of the language used to create them.




    ADO: Microsoft Active
    Data Objects.


    >

    API: Application
    Programming Interface.

    >

    Application server middleware:'

    >

    Software that lets users
    access legacy programs either locally or remotely via a browser.

    >

    CGI: Common gateway
    interface.

    >

    COM: Component Object
    Model.

    >

    COM+: An extension
    to COM that makes it easier to use C++ and avoid the complexities of the
    Interface Definition Language.

    >

    CORBA: Microsoft's
    Common Object Request Broker Architecture.
    >

    Database middleware:
    Software used to integrate database contents across an enterprise.

    >

    DCE: Distributed
    Computing Environment.

    >

    DCOM: Distributed
    COM.

    >

    Development middleware:
    Software that adds routines to make applications network-cognizant.

    >

    Distributed object middleware:


    >

    Software that makes apps
    on one part of a system available everywhere on the network.

    >

    EJB: Enterprise JavaBeans.

    >

    ISAPI: Internet Server
    API.

    >

    Java: Sun Microsystems
    Inc.'s universal platform language, which is replacing

    >

    C++ for many apps on the
    Web.

    >

    '
    >

    JavaBeans: Modules
    written in Java.

    >

    JavaScript: A Web
    scripting language derived from Java.

    >

    JSP: JavaServer Page.

    >

    JDBC: Java Database
    Connectivity.

    >

    J2EE: Sun's Java
    2 platform, Enterprise Edition.

    >

    Load balancing: Distributing
    work to avoid overloading a system.

    >

    Management middleware:
    Complex software that manages data moving between disparate elements.

    >

    MTS: Microsoft Transaction
    Server.

    >

    Middleware: Software
    that connects disparate computers, operating systems and protocols.

    >

    MOM: Message-oriented
    middleware.

    >

    NSAPI: Netscape API.

    >

    '
    >

    ODBC: Open Database
    Connectivity.

    >

    OLE: Object Linking
    and Embedding.

    >

    ONC: Open network
    computing.

    >

    ORB: Object Request
    Broker.

    >

    Perl: Practical Extraction
    Report Language.

    >

    RPC: Remote procedure
    call.

    >

    SGML: Standard Generalized
    Markup Language.

    >

    TP monitor: Transaction
    processing monitor.

    >

    VBScript: An extension
    of Visual Basic used to create scripts.

    >

    Web-to-RDBMS middleware:
    Software that can be used to publish data on the Web.

    >

    XML: Extensible Markup
    Language.
    X
    This website uses cookies to enhance user experience and to analyze performance and traffic on our website. We also share information about your use of our site with our social media, advertising and analytics partners. Learn More / Do Not Sell My Personal Information
    Accept Cookies
    X
    Cookie Preferences Cookie List

    Do Not Sell My Personal Information

    When you visit our website, we store cookies on your browser to collect information. The information collected might relate to you, your preferences or your device, and is mostly used to make the site work as you expect it to and to provide a more personalized web experience. However, you can choose not to allow certain types of cookies, which may impact your experience of the site and the services we are able to offer. Click on the different category headings to find out more and change our default settings according to your preference. You cannot opt-out of our First Party Strictly Necessary Cookies as they are deployed in order to ensure the proper functioning of our website (such as prompting the cookie banner and remembering your settings, to log into your account, to redirect you when you log out, etc.). For more information about the First and Third Party Cookies used please follow this link.

    Allow All Cookies

    Manage Consent Preferences

    Strictly Necessary Cookies - Always Active

    We do not allow you to opt-out of our certain cookies, as they are necessary to ensure the proper functioning of our website (such as prompting our cookie banner and remembering your privacy choices) and/or to monitor site performance. These cookies are not used in a way that constitutes a “sale” of your data under the CCPA. You can set your browser to block or alert you about these cookies, but some parts of the site will not work as intended if you do so. You can usually find these settings in the Options or Preferences menu of your browser. Visit www.allaboutcookies.org to learn more.

    Sale of Personal Data, Targeting & Social Media Cookies

    Under the California Consumer Privacy Act, you have the right to opt-out of the sale of your personal information to third parties. These cookies collect information for analytics and to personalize your experience with targeted ads. You may exercise your right to opt out of the sale of personal information by using this toggle switch. If you opt out we will not be able to offer you personalised ads and will not hand over your personal information to any third parties. Additionally, you may contact our legal department for further clarification about your rights as a California consumer by using this Exercise My Rights link

    If you have enabled privacy controls on your browser (such as a plugin), we have to take that as a valid request to opt-out. Therefore we would not be able to track your activity through the web. This may affect our ability to personalize ads according to your preferences.

    Targeting cookies may be set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant adverts on other sites. They do not store directly personal information, but are based on uniquely identifying your browser and internet device. If you do not allow these cookies, you will experience less targeted advertising.

    Social media cookies are set by a range of social media services that we have added to the site to enable you to share our content with your friends and networks. They are capable of tracking your browser across other sites and building up a profile of your interests. This may impact the content and messages you see on other websites you visit. If you do not allow these cookies you may not be able to use or see these sharing tools.

    If you want to opt out of all of our lead reports and lists, please submit a privacy request at our Do Not Sell page.

    Save Settings
    Cookie Preferences Cookie List

    Cookie List

    A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:

    Strictly Necessary Cookies

    We do not allow you to opt-out of our certain cookies, as they are necessary to ensure the proper functioning of our website (such as prompting our cookie banner and remembering your privacy choices) and/or to monitor site performance. These cookies are not used in a way that constitutes a “sale” of your data under the CCPA. You can set your browser to block or alert you about these cookies, but some parts of the site will not work as intended if you do so. You can usually find these settings in the Options or Preferences menu of your browser. Visit www.allaboutcookies.org to learn more.

    Functional Cookies

    We do not allow you to opt-out of our certain cookies, as they are necessary to ensure the proper functioning of our website (such as prompting our cookie banner and remembering your privacy choices) and/or to monitor site performance. These cookies are not used in a way that constitutes a “sale” of your data under the CCPA. You can set your browser to block or alert you about these cookies, but some parts of the site will not work as intended if you do so. You can usually find these settings in the Options or Preferences menu of your browser. Visit www.allaboutcookies.org to learn more.

    Performance Cookies

    We do not allow you to opt-out of our certain cookies, as they are necessary to ensure the proper functioning of our website (such as prompting our cookie banner and remembering your privacy choices) and/or to monitor site performance. These cookies are not used in a way that constitutes a “sale” of your data under the CCPA. You can set your browser to block or alert you about these cookies, but some parts of the site will not work as intended if you do so. You can usually find these settings in the Options or Preferences menu of your browser. Visit www.allaboutcookies.org to learn more.

    Sale of Personal Data

    We also use cookies to personalize your experience on our websites, including by determining the most relevant content and advertisements to show you, and to monitor site traffic and performance, so that we may improve our websites and your experience. You may opt out of our use of such cookies (and the associated “sale” of your Personal Information) by using this toggle switch. You will still see some advertising, regardless of your selection. Because we do not track you across different devices, browsers and GEMG properties, your selection will take effect only on this browser, this device and this website.

    Social Media Cookies

    We also use cookies to personalize your experience on our websites, including by determining the most relevant content and advertisements to show you, and to monitor site traffic and performance, so that we may improve our websites and your experience. You may opt out of our use of such cookies (and the associated “sale” of your Personal Information) by using this toggle switch. You will still see some advertising, regardless of your selection. Because we do not track you across different devices, browsers and GEMG properties, your selection will take effect only on this browser, this device and this website.

    Targeting Cookies

    We also use cookies to personalize your experience on our websites, including by determining the most relevant content and advertisements to show you, and to monitor site traffic and performance, so that we may improve our websites and your experience. You may opt out of our use of such cookies (and the associated “sale” of your Personal Information) by using this toggle switch. You will still see some advertising, regardless of your selection. Because we do not track you across different devices, browsers and GEMG properties, your selection will take effect only on this browser, this device and this website.