|
What is 1000Projects
'1000projects.com' is an educational content website dedicated to finding and realizing Final Year Projects, IEEE Projects, Engineering Projects, Science Fair Projects, Project Topics, Project Ideas, Major Projects, Mini Projects, Paper Presentations, Presentation Topics, IEEE Topics, .Net Projects, Java Projects, PHP Projects, VB Projects, SQL Projects, C & DS Projects, C++ Projects, Perl Projects, ASP Projects, Delphi Projects, HTML Projects, Cold Fusion Projects, Java Script Projects, Btech Projects, BE Projects, MCA Projects, Mtech Projects, MBA Projects, Project on Software, CBSE Projects, Testing Projects, Embedded Projects, Chemistry Projects, Electronics Projects, Electrical Projects, Science Projects, Mechanical Projects, Mba project Reports, Placement papers, Sample Resumes, Entrance Exams, Technical Faq's, Puzzles, etc
how it works?
Everything on this site is submitted by the students in this professional community. You Can submit your Projects, Project Topics & Ideas to info.1000projects{at}gmail.com after you submit your project/project Idea/Abstract/Seminar Topics, These are being verified and approved by our administrator. after approval of this project/project Idea/Abstract/Seminar Topics, It can be shown on 1000projects.com so that other users can read/discuss it.The entire content on this website is Only For Educational Purpose, Non Commercial use!
Please help us/Other Users by sending projects/project Ideas/Abstracts/Seminar Topics. Thanking You!!!!!
Category Articles
Explain RMI Architecture?
Added on Sat, Dec 26, 2009
RMI uses a layered architecture, each of the layers could be enhanced or replaced without affecting the rest of the system. The details of layers can be summarised as follows:<br><br>1. Application Layer: The client and server program<... Read More
How many types of protocol implementations does RMI have?
Added on Sat, Dec 26, 2009
RMI has at least three protocol implementations: Java Remote Method Protocol(JRMP), Internet Inter ORB Protocol(IIOP), and Jini Extensible Remote Invocation(JERI). These are alternatives, not part of the same thing, All three are indeed layer 6... Read More
What Is a Socket in Java Networking and RMI?
Added on Sat, Dec 26, 2009
A socket is one end-point of a two-way communication link between two programs running on the network. A socket is bound to a port number so that the TCP layer can identify the application that data is destined to be sent. Socket classes are used... Read More
What are the services in RMI ?
Added on Sat, Dec 26, 2009
An RMI "service" could well be any Java method that can be invoked remotely. The other service is the JRMP RMI naming service which is a lookup service. Read More
How do I make a connection to URL?
Added on Sat, Dec 26, 2009
You obtain a URL instance and then invoke openConnection on it. URLConnection is an abstract class, which means you can?t directly create instances of it using a constructor. We have to invoke openConnection method on a URL instance, to get the right... Read More
Does RMI-IIOP support dynamic downloading of classes?
Added on Sat, Dec 26, 2009
No, RMI-IIOP doesn't support dynamic downloading of the classes as it is done with CORBA in DII (Dynamic Interface Invocation).Actually RMI-IIOP combines the usability of Java Remote Method Invocation (RMI) with the interoperability of the... Read More
What is the difference between URL instance and URLConnection instance?
Added on Sat, Dec 26, 2009
A URL instance represents the location of a resource, and a URLConnection instance represents a link for accessing or communicating with the resource at the location. Read More
What information is needed to create a TCP Socket?
Added on Sat, Dec 26, 2009
In local System: IP Address and Port Number. And the Remote System: IPAddress and Port Number. Read More
What are the two important TCP Socket classes?
Added on Sat, Dec 26, 2009
Socket and ServerSocket. ServerSocket is used for normal two-way socket communication. Socket class allows us to read and write through the sockets. getInputStream() and getOutputStream() are the two methods available in Socket class. Read More
|