Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/01/2011, 05:33
mr_technology
 
Fecha de Ingreso: diciembre-2010
Mensajes: 10
Antigüedad: 13 años, 10 meses
Puntos: 0
Respuesta: Problemas con RMI

Este es el método donde da el fallo:

public ClienteChatI enviar_invitacion(String nick1, ClienteChatI cchat1) throws RemoteException
{
Object[] opciones = {"Si", "No"};
int n = JOptionPane.showOptionDialog(Contexto.interfaz, "¿Quieres iniciar un juego con "+nick1+"?", "Invitación de juego", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, opciones, opciones[1]);
if(n==0)
{
Concurrencia.cchatJugRival=(ClienteChat) cchat1;
Concurrencia.jugRival=nick1;
//HAY QUE LANZAR LA VENTANA DEL JUEGO TAMBIEN AQUI
IguJuego interfazJuego = new IguJuego("Hundir la flota");
interfazJuego.setSize(600,400);
interfazJuego.setVisible(true);
return this;
}
else return null;
}