-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to work to secure a java based RMI service using SSL.
I have some basic questions about the capabilities of using SSL. Specifically, from what I understand, the client and server connecting via SSL will need to have appropriate credential certificates in both client and server, for a…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
When I try to run an RMI client after running the RMI server I get the following exception:
EncodeInterface exception: java.lang.ClassCastException: $Proxy30 cannot be cast to hw2.chat.backend.main.EncodeInterface
java.lang.ClassCastException: $Proxy30 cannot be cast to hw2.chat.backend.main.EncodeInterface
at…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have an RMI client/server set-up on two machines that works fine in a simple situation when the server doesn't require a client-side defned class. However, when I need to use a class defined on the client side I am unable to have the server unmarshall those classes. I suspect this is an issue…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
i m creating a Client/Server application in which my server and client can be on the same or on different machines but both are under ISP.
My RMI programs:-
-Remote Intreface:-
//Calculator.java
public interface Calculator
extends java.rmi.Remote {
public long add(long a, long b)
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to implement Sun Tutorials RMI application that calculates Pi. I'm having some serious problems and I cant find the solution eventhough I've been searching the entire web and several javaskilled people.
I'm hoping you can put an end to my frustrations.
The crazy thing is that I can run…
>>> More