Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Case:

We got a server and a client.

On the server side, we have: Server (Socket bla bla bla) IDocument - Interface for Documents Message - Implements document

On the client side we have Client - Socket bla bla bla IDocument - Same interface

Now he claims that we with ObjectOutputStream, can send this Message Object to the Client, and execute its methods, because both the server AND the client have the IDocument interface.

Now he claimed this and told us today, that we should use this, so the client never will be affected by new types of Documents.

It's an assignment for tomorrow that we must do, and I don't have much time left. So either I figure out if this is even possible, or find another way to do it!

(And he's not talking about RMI, we already covered this, he claims we can distribute executable objects to client which don't have the class file, but only the interface describing the methods.)

Please help!

share|improve this question
2  
Please narrow the scope of your question. – mre Nov 17 '11 at 22:08
What is an executable object? – emory Nov 17 '11 at 22:15
Google? I found this for you. java2s.com/Code/Java/Network-Protocol/… – stefgosselin Nov 17 '11 at 22:22
Your teacher is 100% incorrect and you can tell him I said so. Unless the client has the actual class sent by the server, the client will get a ClassNotFoundException, which is why that exception appears in the method signature of readObject(). If he persists, ask him why that is so. – EJP Nov 17 '11 at 22:26
Command pattern anyone? en.wikipedia.org/wiki/Command_pattern – Kev Nov 17 '11 at 23:38

2 Answers

up vote 1 down vote accepted

Well, what you need to do (and I'm not gonna spoil whether what the teacher said is true or not) is to have two Java programs. In one of them define an Interface like:

public interface A {
     public void method();
}

and a class implementing this interface:

public class B implements A {
     public void method() {
         // some code
     }
}

now obviously you can cast am object of type B to A, since A is the interface. In this program create an instance of B and write it to a socket with ObjectOutputStream.

In the other program copy only interface A. Then on the socket communicating with B use an ObjectInputStream to read what the first process is sending and cast it to A. Then call the method and see what happens.

share|improve this answer
That is not the issue. The issue is that the Client is NOT allowed to have any of the class files locally. – André Snede Hansen Nov 17 '11 at 22:31
Well the server will have the interface and the class, and the client only the interface. Isn't this what you said in the original post? – Tudor Nov 17 '11 at 22:35
Yes, but that is not possible. Not with an ObjectOutputStream. It throws ClassNotFoundException even before the object is received... – André Snede Hansen Nov 17 '11 at 22:38
So, here is your answer. As EJP said in a comment, what your teacher asked is not possible anyway. I was just describing how to setup the experiment. – Tudor Nov 17 '11 at 22:40
Yes and I thank you. Unfortunately, it is wrong, is not the answer he will be looking for, I have to find an alternative way. I have looked into URL / HTTP class loading at runtime, and it works. But I can't receive the object and cast it to that class.. – André Snede Hansen Nov 17 '11 at 22:46
show 3 more comments

Just cast the object from the ObjectInputStream (clientside) to IDocument and handle it as such. Of course, the client will never know what concrete class the object was on the server. It will only have the methods of IDocument available.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.