我尝试使用Eclipse中的WebService来学习SOAP。 在我赞美了WSDL之后,我对生成的类有了这个问题。 “对于HelloWorldImplService类型,方法getHelloWorldImplPort()未定义”
jdk 1.7中是否存在方法“getPort”?如果没有,解决方案是什么?
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
PrintWriter out = response.getWriter();
response.setContentType("text/html");
try {
HelloWorldImplService helloWorldService = new HelloWorldImplService();
HelloWorld helloWorld = helloWorldService.getHelloWorldImplPort();
out.print(helloWorld.helloWorld("Silviu"));
} catch (Exception e) {
out.print(e.getMessage());
}
}
答案 0 :(得分:1)
您遇到的问题并未说明getPort
的任何内容。它告诉您类getHelloWorldImplPort()
中没有方法HelloWorldImplService
。