0

服务器:

Registry registry = LocateRegistry.createRegistry(1099);

InventoryInterface Inventory = new Inventory(registry);

registry.bind("Inventory", Inventory);

客户:

Registry registry = LocateRegistry.getRegistry(1099);


InventoryInterface inventory = (InventoryInterface) registry.lookup("Inventory");


String product_id = inventory.newProduct();

ProductFacade product_1 = (ProductFacade) registry.lookup(product_id);

问题是在铸造时发生异常,在这种情况下,它发生在:ProductFacade product_1 = (ProductFacade) registry.lookup(product_id);

例外:

Exception in thread "main" java.lang.ClassCastException: com.sun.proxy.$Proxy2 cannot be cast to rmi.ProductFacade
4

2 回答 2

1

以您正在查找的名称绑定到注册表的任何内容都不会实现rmi.ProductFacade远程接口。

所以我想知道我是否应该在再次投射之前重新启动注册表

当然不是。(a)您无法从客户端重新启动它,并且(b)您将得到的只是一个空注册表。这个建议没有意义。

很难看出为什么InventoryInterface.newProduct()返回 aString而不是实际的新ProductFacade对象。还有为什么listAllProducts()返回 aString而不是 a String[]。我会在不大量使用注册表的情况下重新设计它,如下所示:

public interface InventoryInterface extends Remote {    
    public ProductFacade newProduct() throws RemoteException;
    public ProductFacade getProduct(String id) throws RemoteException;    
    public String[] listAllProducts() throws RemoteException;
}
于 2016-12-11T04:50:12.900 回答
0

它可以是关于你如何绑定它。例如,如果 ProductFacade 实现了 InventoryInterface,您可能需要将其转换为 InventoryInterface 而不是 ProductFacade。

于 2016-12-11T04:32:07.040 回答