我正在尝试使用复合服务调用服务器,如文档中所示创建:
Object compositeService = ProxyUtil.createCompositeServiceProxy(
this.getClass().getClassLoader(),
new Object[] { fileUploadService, remoteCommandService},
new Class<?>[] { FileUploadService.class, RemoteCommandService.class},
true);
问题是我不知道如何通过流(套接字)创建JsonRpcClient来连接复合服务器。我在文档中找不到任何示例,我编写的所有代码都抛出了一些异常。
我应该使用ProxyUtil.createClientProxy()方法吗?如果它需要一个接口作为参数,而Object是一个类?
,那怎么能工作呢?任何帮助都将受到高度赞赏。