这有点奇怪。
使用最新的Eclipse Juno版本,我正在尝试连接到.NET Web服务。 通过内置向导,我已经连接到WSDL,它在我的项目中生成了一个包含java源文件的java包。
但是在其中一个中,我收到错误java.rmi.Remote cannot be resolved to a type
实施例: 该向导为我生成了以下行:
public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
//a bunch of code here...
return _stub;
}
每当我尝试import java.rmi.Remote;
时,都会收到以下错误:
The import java.rmi.Remote cannot be resolved
我正在使用Java v1.6。
哦,我正在开发一个Android应用程序。
答案 0 :(得分:1)
据我所知,Java.rmi很遗憾没有安装Android,因此无法使用它。
编辑: 可以将所有rmi类打包到jar文件中,并在应用程序中使用此jar文件。讨论了here