Answer Posted / anuj pandey
hi everybody,
Remote Reference Layer is using in Remote method
invocation.when method of one machine execute in one
machine but run in another machine then it is calledremote
method invocation.In RMI there is four layers (application
layer,stub or skelton layer,remote referense
layer,transportation layer).stub is a client side java
object and skelton is java object of server side.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How do you sort data in java?
What is a boolean used for?
Why to use nested classes in java? (Or) what is the purpose of nested class in java?
if u open login & logout ,how can udisplay the timelogin & logout members ?
When a thread is executing a synchronized method , then is it possible for the same thread to access other synchronized methods of an object ?
Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.
What is bufferedwriter?
What is difference between stringbuffer and string?
Why vector is used in java?
What are the pillars of java?
What are jee technologies?
Describe 2 different ways to concatenate two strings.
What is a dynamic array in java?
What is the properties class?
Why synchronization is important?