How do you download stubs from a Remote place?
Answer / janu
Java RMI uses special classes called stubs that can be
downloaded to the client that are used to communicate with
(make method calls on) the remote object. The
java.rmi.server.codebase property value represents one or
more URL locations from which these stubs (and any classes
needed by the stubs) can be downloaded.
| Is This Answer Correct ? | 1 Yes | 0 No |
How messaging services are done, before release of JMS?
Why use a datasource when you can directly specify a connection details? (in a J2EE application)
Difference between JRE and JVM?
3 Answers HeadStrong, Infotech,
In a multitiered application which tier is the browser in?
How many times may an objects finalize() method be invoked by the garbage collector?
Why JDBC has introduced
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
What are transaction attributes?
what is an isolation level?
Explain lazy activation?
what is JTS?
What are the types of scaling?