jdk 1.7 中是否存在方法 "getPort"
Did method "getPort" exist in jdk 1.7
我尝试通过使用 Eclipse 中的 WebService 来学习 SOAP。
在我使用 WSDL 之后,生成的 类 出现了这个问题。
"The method getHelloWorldImplPort() is undefined for the type HelloWorldImplService"
方法 "getPort" 是否存在于 jdk 1.7 中?如果不行,解决办法是什么?
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());
}
}
您看到的问题与 getPort
无关。它告诉您 class HelloWorldImplService
.
中没有方法 getHelloWorldImplPort()
我尝试通过使用 Eclipse 中的 WebService 来学习 SOAP。 在我使用 WSDL 之后,生成的 类 出现了这个问题。 "The method getHelloWorldImplPort() is undefined for the type HelloWorldImplService"
方法 "getPort" 是否存在于 jdk 1.7 中?如果不行,解决办法是什么?
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());
}
}
您看到的问题与 getPort
无关。它告诉您 class HelloWorldImplService
.
getHelloWorldImplPort()