Java Network Computing Technologies Term Paper

Internet Inter-ORB Protocol (IIOP) Java Network Computing Technologies

Internet Inter-ORB Protocol (IIOP) is a protocol that enables distributed programs located anywhere in the Internet to communicate with each other. It is an interoperability protocol that supports heterogeneous environments. IIOP offers possible communication between applications regardless of the platform and programming elements used in their development.

IIOP is an element of Object Management Group's (OMG) standard architecture called CORBA (Common Object Request Broker Architecture). It is a TCP/IP-based protocol and a GIOP mapping that provides standard communication methods between ORBs. ORB (Object Request Broker) is a communication mediator used by CORBA during requests and data interchange between clients and servers.

CORBA/IIOP is a solution to the complexity that web applications are now becoming. Before, protocols are specifically developed on the basis of applications to allow compatibility in communication. But with CORBA/IIOP, communication is possible between diverse application platforms.

IIOP technology is an element of Internet applications allowing communication between distributed applications.

Remote Method Invocation (RMI)

Remote Method Invocation (RMI) is a Java technology distributed computing that allows a remote object to call and execute another remote object from different virtual machines within a network. Through an object's reference or address, an object can be called by another remote object as if they reside in the same machine. This method is possible between clients and servers in which either can be a client that calls an object of the other.

RMI allows connection to systems using JNI (Java Native Interface), and to relational database using JDBC package (Java Data Base Connectivity) (java.sun.com). RMI is flexible in communicating in non-Java languages through the combination of RMI/JNI and RMI/JDBC (java.sun.com). Utilizing objects is the best advantage of RMI. It makes use of many capabilities mobile distributed objects can offer.

RMI technology, according to Sundan Rajar, is appropriate to "...applications which require a client to an application residing on another machine."

CORBA/Java Interface Definition Language (IDL)

Java IDL is a web technology that allows communication between distributed objects within a network regardless of their platforms. Like RMI (Remote Method Invocation), Java IDL supports distributed objects (What is Java IDL? java.sun.com). The difference between the two interface is that RMI supports only those objects written in Java, while IDL supports objects written in any programming language (What is Java IDL? java.sun.com).

Through RMI, Java IDL, Java ORB, and IIOP, CORBA works with Java. To further explain Java IDL and its relation to CORBA, the following paragraph is stated in Java's web site with page entitled What is Java IDL?, and located at http://java.sun.com/docs/books/tutorial/idl/intro/intro.html

This is possible because Java IDL is based on the Common Object Request Brokerage Architecture (CORBA), an industry-standard distributed object model. A key feature of CORBA is IDL, a language-neutral Interface Definition Language. Each language that supports CORBA has its own IDL mapping -- and as its name implies, Java IDL supports the mapping for Java. CORBA and the IDL mappings are the work of an industry consortium known as the OMG, or Object Management Group. Sun is a founding member of the OMG, and the Java IDL team has played an active role in defining the IDL-to-Java mapping.

To allow communication between a Java IDL application and a CORBA application, an ORB (Object Request Broker), which is a component of Java IDL, is used.

Java IDL technology is appropriate for applications written in Java and whose interfaces are based on CORBA.

Servlets

Java Servlets are programs used in the enhancement and extension of web servers. They are Java programs on the server side. Java Servlets provides extension of the capabilities of a web server.

Current extension mechanisms for servers are dependent to servers and the platforms used. Java Sevlets, on the other hand, are free and independent to such elements. They provide the development of web applications without the limitations of elements such as Apaches and Network Sever APIs. Java Servlets are components that are downloadable and can be integrated to web applications and servers

The Java Servlet API is the counterpart of ASP and CGI technologies. Further, from java.sun.com (web site of Java), a characteristic of Servlets is stated as Servlets have access to the entire family of Java APIs, including the JDBC API to access enterprise databases. Servlets can also access a library of HTTP-specific calls and receive all the benefits of the mature Java language, including portability, performance, reusability, and crash protection.

Java Server Pages (JSP)

Java Server Pages (JSP) is a web technology that allows easy development and maintenance of web pages. It is a useful medium in developing...

...

JSP does this through the use of Servlets that are server-based small programs. With JSP, developers are able to change the entire appearance and design of a web page or application without changing the contents.
JSP is a member of the Java family developed by Sun Microsystems. It is platform independent and is the counterpart of ASP (Active Server Pages) that was developed by Microsoft. While ASP uses a script interpreter to execute the scripts it contains, JSP uses Java programs residing in a web server (What Is.Com).

JSP handles the generation of the contents of a web application through an XML-like language. This method that can be accessed from the server which contains the logic in generating the contents. Through the separation of the process of contents generation from the process of page design, the development of web-based applications becomes easier. Java's website states its goal why JSP was developed.

Sun has made the JSP specification freely available to the development community, with the goal that every Web server and application server will support the JSP interface. JSP pages share the "Write Once, Run Anywhere" characteristics of Java technology.

Java Server Pages technology is appropriate for all web applications that may require dynamic pages.

Applet

With the introduction of Java, applets are small programs that are integrated with many web applications. It is almost similar to servlets only that servlets are on the server side while applets can be in either client or server side.

An Applet is a separate program or function that does a specific task such as computations, animations, or any interactive tasks. Java applets are usually used in web pages that are sent to users (What Is.Com). They are customized or built-in object-oriented programs that can be called from an HTML page.

Applet technology is appropriate in all web applications to provide ease in technical maintenance because of its usually small-sized codes, and to provide reusability of codes.

Java Database Connectivity (JDBC)

Java Database Connectivity (JDBC) is an Application Program Interface (API) and Java tool that provides connection to a database regardless of its format, whether spreadsheets, tabular, or flat files. With the library of routines of JDBC, it is able to connect and be used easily as an interface in connection with other database.

JDBC's function of interfacing with a wide range of database is similar to that of Microsoft's Open Database Connectivity (ODBC). Being a part of the Java family, the object libraries of JDBC are developed using Java.

JDBC accesses a database by sending an SQL request to the program that handles the database.

The results of the request are passed back to another JDBC interface. JDBC is also capable of using an ODBC interface to connect to a database. This is made possible with the use of an ODBC Bridge. For instance, a java program using JDBC can access a Microsoft database such as Microsoft Access.

JDBC accesses a database by addressing it almost similar to a URL or web page address. For intance, a database can be addressed by a Java SQL statement as jdbc:odbc:/ / www.javaexample.com:700/sampledbase

JDBC also has an interface from the JDBC manager. This interface communicates with the drivers of other database product and to the JDBC drivers as well.

JDBC is appropriate in web applications that require connectivity in diverse database formats.

Sockets Programming

Sockets are end-to-end communication points in a connection between a client and server program within a network. It is used by the client and the server in reading and writing data.

Socket communication has 2 classes, the connection oriented and the connectionless. The TCP (Transmission Control Protocol), and the UDP (User Datagram Protocol) are 2 protocols used by TCP/IP in supporting connection oriented and connectionless types.

Sockets programming is appropriate in all client/server network models.

Java Client/Server Computing

Client/Server computing is a communication between two programs in which a client program makes a request to the server program. Client/Server architecture may also be used within one computer but its idea is more applicable within a number of computers connected within a network.

The Client/Server model is the most popular method of computing in various industries today. It provides a convenient way of communicating data between computers located in different locations. The web applications that currently exist in diverse networks apply the Client/Server model. An example of which includes Internet applications such as performing bank transactions and online shopping.

Java client/server computing implements the same general idea of client/server computing.

Through the wide array of Sun Microsystems' Java-based products, the company aims to provide an efficient and effective transmission of…

Sources Used in Documents:

Bibliography

Curtis, David. IIOP: OMG's Internet Inter-ORB Protocol.

OMG. 08 June 2003. http://www.omg.org/library/iiop4.html

Golding, Michael. Java Socket Programming.

UEL.AC.UK. 09 June 2003. http://homepages.uel.ac.uk/2795l/pages/javaapps.htm
2001. Geocities.Com. 10 June 2003. http://www.geocities.com/sundar_rajan_in/java/rmi.html
Search Networking.Com. 09 June 2003. http://searchnetworking.techtarget.com/sDefinition/0,sid7_gci211796,00.html
Java.Sun.Com. 08 June 2003. http://java.sun.com/products/servlet/
What Is. 08 June 2003. http://searchwebservices.techtarget.com/sDefinition/0,sid26_gci214048,00.html
Java.Sun.Com. 08 June 2003. http://java.sun.com/products/jsp/
2003. Search Database.Com. 09 June 2003. http://searchDatabase.techtarget.com/pageScripts/0,294327,sid13,00.js
Sun Microsystems. 10 June 2003. http://java.sun.com/docs/books/tutorial/idl/intro/intro.html
SearchWebServices.Com. 10 June 2003. http://searchwebservices.techtarget.com/sDefinition/0,sid26_gci283984,00.html


Cite this Document:

"Java Network Computing Technologies" (2003, June 10) Retrieved April 25, 2024, from
https://www.paperdue.com/essay/java-network-computing-technologies-149983

"Java Network Computing Technologies" 10 June 2003. Web.25 April. 2024. <
https://www.paperdue.com/essay/java-network-computing-technologies-149983>

"Java Network Computing Technologies", 10 June 2003, Accessed.25 April. 2024,
https://www.paperdue.com/essay/java-network-computing-technologies-149983

Related Documents

Cloud Computing Many businesses are experimenting and slowly embracing the concept of cloud computing and Web2.0 .organizations choosing projects which can reap full benefits from cloud computing and Web2.0.this evolution has began as organizations are now taking a crawl, walk run approach which is building towards an eventual implementation of cloud and Web2.0 implementation. Organizations are now following the pragmatic path towards cloud computing and Web2.0 through the adoption of new

In addition to the stability, scalability and extensibility of its architecture, cloud platform have made it possible for workflows across government to become more pervasive and secure as a result [4]. The TCO of a given cloud platform or series of applications therefore has continued to become reduced by the experience effect (comparable to economies of scale yet only applied to data aggregated and knowledge creation) across government [6]. This

For the purposes of this review, Web-based instruction is considered to be any educational or training program distributed over the Internet or an intranet and conveyed through a browser, such as Internet Explorer or Netscape Navigator. Java applet-based instruction is a special form of Web-based instruction. Although there is very little research on comparing the effectiveness of Java applet-based instruction to the traditional face-to-face offering. However Web-based instruction has received enough

Business Systems Development The Strategic Benefits of Adopting an Enterprise Cloud Computing Platform Cloud computing platforms are enabling enterprises to attain faster time-to-market of new products, in addition to enabling higher levels of collaboration and communication with suppliers, stakeholders and partners externally. Enabling cost reductions through consolidation of legacy IT systems while increasing process efficiencies is delivering a positive Return on Investment (ROI) while also increasing customer responsiveness. The strategic benefits of

Linux Kernel Analysis Much has been written in praise of the Linux (Crandall, Wu, Chong, 359), (Parnas, 112), (Baliga, Iftode, Chen, 323), and its use of preemptive multitasking memory architectures to manage process control, file management, device management, information maintenance and communications subsystems securely and effectively. The Linux modular design, lack of reliance on Remote Procedure Calls (RPC), and use of UNIX-based system administration all are often cited as factors in how

Those who predict future behavior and demand for products and services correctly can profit tremendously from their planning; conversely, those who invest in technologies or applications based on assumptions or expectations that never materialize run the risk of losing their entire investment. In that respect, the computer realm is no different from the decisions and projections made in traditional types of businesses. It may just seem different by virtue