Java Network Computing Technologies 8 pages

Internet Inter-ORB Protocol (IIOP)

Java Network Computing Technologies

Don't use plagiarized sources. Get Your Custom Essay on
Java Network Computing Technologies 8 pages
Just from $9/Page
Order Essay

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 dynamic web applications because of its capability of separating the contents of a page from the user interface. 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 data from one computer to another, regardless of location of the sender and recipient users.

Almost all of Java-based products are developed for web-based and network applications. Some of which includes RMI (Remote Method Invocation), Java Applets, JSP (Java Server Pages), JDBC (Java Database Connectivity), and Java Servlets. These are products that offer specific uses in networking and the World Wide Web.

Distributed computing where diverse applications are distributed in different computers over a network is the main focus of Java client/server computing. Java applications accomplish this through the use of object-oriented programming and client and server-based applications that communicate with each other. Typically, as what other computing products do, client request and server acknowledgement and provision of results makes Java client/server computing alive.

The difference that perhaps makes Java client/server computing different from the others is its continuous development of Java-based products that provides ease and convenience in development of network and web-based applications.

Java client/server computing is best appropriate on applications written in Java that require communication between terminals.

Enterprise Java Beans (EJBs) & EJB/J2EE

Enterprise Java Beans (EJB) is used for distribution and set-up of applications on computers within a client/server model network. EJB is capable of controlling any changes made on an individual computer’s components through the server.

EJB is a counterpart of Microsoft’s Component Object Model and Distributed Component Object Model (COM/DCOM). However, EJB is platform independent. It supports applications running on any operating systems.

J2EE (Java 2 Platform, Enterprise Edition), on the other hand, is a platform that simplies the development of applications through its provision of standard and reusable components. J2EE is specifically best for mainframe-scale and large enterprises (J2EE. SearchWebServices.Com)

EJB/J2EE is best appropriate for installer applications.

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

Sundar, Rajan. Remote Method Invocation.

2001. Geocities.Com. 10 June 2003. http://www.geocities.com/sundar_rajan_in/java/rmi.html

Sullivan, John. Client/Server.

Search Networking.Com. 09 June 2003. http://searchnetworking.techtarget.com/sDefinition/0,sid7_gci211796,00.html

Java Servlet Technology.

Java.Sun.Com. 08 June 2003. http://java.sun.com/products/servlet/

Java Server Page.

What Is. 08 June 2003. http://searchwebservices.techtarget.com/sDefinition/0,sid26_gci214048,00.html

JavaServer Pages.

Java.Sun.Com. 08 June 2003. http://java.sun.com/products/jsp/

Java Database Connectivity.

2003. Search Database.Com. 09 June 2003. http://searchDatabase.techtarget.com/pageScripts/0,294327,sid13,00.js

What is Java IDL?

Sun Microsystems. 10 June 2003. http://java.sun.com/docs/books/tutorial/idl/intro/intro.html

J2EE.

SearchWebServices.Com. 10 June 2003. http://searchwebservices.techtarget.com/sDefinition/0,sid26_gci283984,00.html


Get Professional Assignment Help Cheaply

Buy Custom Essay

Are you busy and do not have time to handle your assignment? Are you scared that your paper will not make the grade? Do you have responsibilities that may hinder you from turning in your assignment on time? Are you tired and can barely handle your assignment? Are your grades inconsistent?

Whichever your reason is, it is valid! You can get professional academic help from our service at affordable rates. We have a team of professional academic writers who can handle all your assignments.

Why Choose Our Academic Writing Service?

  • Plagiarism free papers
  • Timely delivery
  • Any deadline
  • Skilled, Experienced Native English Writers
  • Subject-relevant academic writer
  • Adherence to paper instructions
  • Ability to tackle bulk assignments
  • Reasonable prices
  • 24/7 Customer Support
  • Get superb grades consistently
 

Online Academic Help With Different Subjects

Literature

Students barely have time to read. We got you! Have your literature essay or book review written without having the hassle of reading the book. You can get your literature paper custom-written for you by our literature specialists.

Finance

Do you struggle with finance? No need to torture yourself if finance is not your cup of tea. You can order your finance paper from our academic writing service and get 100% original work from competent finance experts.

Computer science

Computer science is a tough subject. Fortunately, our computer science experts are up to the match. No need to stress and have sleepless nights. Our academic writers will tackle all your computer science assignments and deliver them on time. Let us handle all your python, java, ruby, JavaScript, php , C+ assignments!

Psychology

While psychology may be an interesting subject, you may lack sufficient time to handle your assignments. Don’t despair; by using our academic writing service, you can be assured of perfect grades. Moreover, your grades will be consistent.

Engineering

Engineering is quite a demanding subject. Students face a lot of pressure and barely have enough time to do what they love to do. Our academic writing service got you covered! Our engineering specialists follow the paper instructions and ensure timely delivery of the paper.

Nursing

In the nursing course, you may have difficulties with literature reviews, annotated bibliographies, critical essays, and other assignments. Our nursing assignment writers will offer you professional nursing paper help at low prices.

Sociology

Truth be told, sociology papers can be quite exhausting. Our academic writing service relieves you of fatigue, pressure, and stress. You can relax and have peace of mind as our academic writers handle your sociology assignment.

Business

We take pride in having some of the best business writers in the industry. Our business writers have a lot of experience in the field. They are reliable, and you can be assured of a high-grade paper. They are able to handle business papers of any subject, length, deadline, and difficulty!

Statistics

We boast of having some of the most experienced statistics experts in the industry. Our statistics experts have diverse skills, expertise, and knowledge to handle any kind of assignment. They have access to all kinds of software to get your assignment done.

Law

Writing a law essay may prove to be an insurmountable obstacle, especially when you need to know the peculiarities of the legislative framework. Take advantage of our top-notch law specialists and get superb grades and 100% satisfaction.

What discipline/subjects do you deal in?

We have highlighted some of the most popular subjects we handle above. Those are just a tip of the iceberg. We deal in all academic disciplines since our writers are as diverse. They have been drawn from across all disciplines, and orders are assigned to those writers believed to be the best in the field. In a nutshell, there is no task we cannot handle; all you need to do is place your order with us. As long as your instructions are clear, just trust we shall deliver irrespective of the discipline.

Are your writers competent enough to handle my paper?

Our essay writers are graduates with bachelor's, masters, Ph.D., and doctorate degrees in various subjects. The minimum requirement to be an essay writer with our essay writing service is to have a college degree. All our academic writers have a minimum of two years of academic writing. We have a stringent recruitment process to ensure that we get only the most competent essay writers in the industry. We also ensure that the writers are handsomely compensated for their value. The majority of our writers are native English speakers. As such, the fluency of language and grammar is impeccable.

What if I don’t like the paper?

There is a very low likelihood that you won’t like the paper.

Reasons being:

  • When assigning your order, we match the paper’s discipline with the writer’s field/specialization. Since all our writers are graduates, we match the paper’s subject with the field the writer studied. For instance, if it’s a nursing paper, only a nursing graduate and writer will handle it. Furthermore, all our writers have academic writing experience and top-notch research skills.
  • We have a quality assurance that reviews the paper before it gets to you. As such, we ensure that you get a paper that meets the required standard and will most definitely make the grade.

In the event that you don’t like your paper:

  • The writer will revise the paper up to your pleasing. You have unlimited revisions. You simply need to highlight what specifically you don’t like about the paper, and the writer will make the amendments. The paper will be revised until you are satisfied. Revisions are free of charge
  • We will have a different writer write the paper from scratch.
  • Last resort, if the above does not work, we will refund your money.

Will the professor find out I didn’t write the paper myself?

Not at all. All papers are written from scratch. There is no way your tutor or instructor will realize that you did not write the paper yourself. In fact, we recommend using our assignment help services for consistent results.

What if the paper is plagiarized?

We check all papers for plagiarism before we submit them. We use powerful plagiarism checking software such as SafeAssign, LopesWrite, and Turnitin. We also upload the plagiarism report so that you can review it. We understand that plagiarism is academic suicide. We would not take the risk of submitting plagiarized work and jeopardize your academic journey. Furthermore, we do not sell or use prewritten papers, and each paper is written from scratch.

When will I get my paper?

You determine when you get the paper by setting the deadline when placing the order. All papers are delivered within the deadline. We are well aware that we operate in a time-sensitive industry. As such, we have laid out strategies to ensure that the client receives the paper on time and they never miss the deadline. We understand that papers that are submitted late have some points deducted. We do not want you to miss any points due to late submission. We work on beating deadlines by huge margins in order to ensure that you have ample time to review the paper before you submit it.

Will anyone find out that I used your services?

We have a privacy and confidentiality policy that guides our work. We NEVER share any customer information with third parties. Noone will ever know that you used our assignment help services. It’s only between you and us. We are bound by our policies to protect the customer’s identity and information. All your information, such as your names, phone number, email, order information, and so on, are protected. We have robust security systems that ensure that your data is protected. Hacking our systems is close to impossible, and it has never happened.

How our Assignment  Help Service Works

1.      Place an order

You fill all the paper instructions in the order form. Make sure you include all the helpful materials so that our academic writers can deliver the perfect paper. It will also help to eliminate unnecessary revisions.

2.      Pay for the order

Proceed to pay for the paper so that it can be assigned to one of our expert academic writers. The paper subject is matched with the writer’s area of specialization.

3.      Track the progress

You communicate with the writer and know about the progress of the paper. The client can ask the writer for drafts of the paper. The client can upload extra material and include additional instructions from the lecturer. Receive a paper.

4.      Download the paper

The paper is sent to your email and uploaded to your personal account. You also get a plagiarism report attached to your paper.

smile and order essaysmile and order essay PLACE THIS ORDER OR A SIMILAR ORDER WITH US TODAY AND GET A PERFECT SCORE!!!

order custom essay paper

Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more
error: Content is protected !!
Open chat
1
Need assignment help? You can contact our live agent via WhatsApp using +1 718 717 2861

Feel free to ask questions, clarifications, or discounts available when placing an order.
  +1 718 717 2861           + 44 161 818 7126           [email protected]
  +1 718 717 2861         [email protected]