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 |
What is the map interface?
What is JNI?
What classes of exceptions may be caught by a catch clause?
When you will synchronize your code?
How to implement dphibernate to activate lazy loading in Flex with java ?thanx in advance!
What are transaction attributes?
diffrence between jsp and servelts.
Is a class a subclass of itself?
What restrictions are placed on the location of a package statement within a source code file?
how the mapping can be done from jsp to actionservlet?
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); } }
Why does the tag url-encode javascript and mailto links?