我正在尝试制作一个控制台应用程序来测试我的网络服务。我在http://localhost:8080/WS/myWS成功部署了一个 web服务, 并使用 wsimport 创建了代理类:
wsimport -d bin -s src http://localhost:8080/WS/myWS?wsdl
现在我的 webservice 类位于 bin/mywebservice/ 中,我正在尝试使用 classpath = ./ 编译我的客户端类
这是我的课程的源代码:
import bin.mywebservice.myClass_Service;
public class TesterApp{
public static void main (String args[])
{
myClass_Service service = new myClass_Service();
}
}
我有错误:
TesterApp.java:1: error: cannot access myClass_Service
import bin.mywebservice_Service.myClass;
^
bad class file: .\bin\mywebservice\myClass_Service.class
class file contains wrong class: mywebservice.myClass_Service
Please remove or make sure it appears in the correct subdirectory of the classpath.
请帮忙,myClass_Service 有什么问题?我发誓,myClass_Service.class 存在于 .\bin\mywebservice\