您好,我一直在为拍卖系统做一些课程。服务器一直工作正常,直到今天出现错误:
Server Error: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: auction
这是发生错误的代码
import java.rmi.Naming;
public class auctionserver {
public auctionserver() {
try {
Auction a = new auctionimpl();
Naming.rebind("rmi://localhost/AuctionSevice", a);
}
catch (Exception e) {
System.out.println("Server Error: " + e);
}
}
public static void main(String args[]) {
new auctionserver();
}
}
我确实在我正在做的工作的路径中有RMIregistry。 任何帮助都会得到很多批评。 感谢