मुझे जावा आरएमआई के आसपास आपकी मदद की ज़रूरत है, मैंने टेबल को सॉर्ट करने के लिए उपयोग किए गए नमूना प्रोग्राम को विकसित किया। लेकिन मैं यह अपवाद है:java.rmi.UmarmarshalException: त्रुटि unmarshalling तर्क; नेस्टेड अपवाद है: java.lang.ClassNotFoundException: ServicesTableau
Erreur RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: ServicesTableau
और यह मेरा सर्वर स्रोत कोड है:
public class Serveur {
public static void main(String args[]) {
try {
System.out.println("Server start ...");
ServicesTableauImpl od = new ServicesTableauImpl();
String url = "rmi://" + args[0] + "/ServicesTableauImpl";
System.out.println("Passe");
Naming.rebind(url, od);
System.out.println("Attente d'invocations de client/CTRL-C pour stopper");
} catch (Exception e) {
System.out.println("Erreur " + e.getMessage());
}
/*
catch(java.net.MalformatedURLException e){
System.out.println("Mauvais nom de serveur");
System.exit(1);
}
catch(RemoteException e){
System.out.println("Pas de Rmiregistry");
System.exit(1);
}
*/
}
}
क्या यह कक्षा ServicesTableauImpl कक्षा पथ में उपलब्ध है? –