Write a program on RMI and JDBC using StoredProcedure?
Answer / satheesh kannan
Parameter are passed in RMI using Parameter marshalling.
As RMI is used to invoke remote objects, many of the times
objects, their references have passed across the network.
Hence these objects need to be serialized.
Is This Answer Correct ? | 4 Yes | 0 No |
Tell me about Firewalls in RMI?
String is immutable.it is true String can be change to mutable How?
6 Answers IBM, Professional Access, TCS,
Java is fully object oriented languages or not?
Why threads will block on I/O?
To make an object to begin executing as a separate thread, what method is used?
What is private static final long serialVersionUID = 1L;
Have you used threads in Servelet?
Difference Between java & javax
5 Answers Sun Microsystems, Wipro,
What are the benefits of detached objects?
1) Scenario: I developed my application on local system and everything is perfect and tested. Now on UAT this application is deployed on clustered server environment. They are logical or physically clustered. But application is not working over there.  What is the issue with application?  What are the first things which come in your mind?
java is fully object oriented languages or not? why?
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); } }