Eclipse - 尝试基于 WSDL 文件创建 Web 服务时出现意外异常
我试图在 Eclipse Java EE IDE(Helios Service Release 2,Windows 7 32 位)中基于 WSDL 文件创建 Web 服务,但是当我在创建向导中单击“完成”时,我总是得到:
IWAB0014E 发生意外异常。
(details: java.lang.NullPointerException
at org.eclipse.jst.ws.internal.axis.creation.ui.widgets.skeleton.SkeletonConfigWidgetDefaultingCommand.getOutputJavaFolder(SkeletonConfigWidgetDefaultingCommand.java:86)
at org.eclipse.jst.ws.internal.axis.creation.ui.widgets.skeleton.SkeletonConfigWidgetDefaultingCommand.execute(SkeletonConfigWidgetDefaultingCommand.java:47)
at org.eclipse.wst.command.internal.env.core.fragment.CommandFragmentEngine.runCommand(CommandFragmentEngine.java:419)
at **...**)
我 100% 确定 WSDL 文件是正确的 - 无论文件多么微不足道,都会发生错误。
我的做法是:
- 创建一个通用项目并向其中添加一个新的 WSDL 文件;
- 文件->新->其他->网络服务 -> Web 服务
- 在 Web 服务向导中,我选择“自顶向下 Java Bean 服务”并选择适当的 WSDL 文件。
- 当我点击“下一步”或“完成”时,出现上述异常,并且没有生成源文件。
我正在使用 Tomcat 6.0 服务器(本地主机),但我认为这是无关紧要的。
任何有关如何解决此问题的提示将不胜感激。
I'm trying to create a Web Service in Eclipse Java EE IDE (Helios Service Release 2, Windows 7 32-bit) based on a WSDL file, but when I click "finish" in the creation wizard I always get:
IWAB0014E Unexpected exception occurred.
(details: java.lang.NullPointerException
at org.eclipse.jst.ws.internal.axis.creation.ui.widgets.skeleton.SkeletonConfigWidgetDefaultingCommand.getOutputJavaFolder(SkeletonConfigWidgetDefaultingCommand.java:86)
at org.eclipse.jst.ws.internal.axis.creation.ui.widgets.skeleton.SkeletonConfigWidgetDefaultingCommand.execute(SkeletonConfigWidgetDefaultingCommand.java:47)
at org.eclipse.wst.command.internal.env.core.fragment.CommandFragmentEngine.runCommand(CommandFragmentEngine.java:419)
at **...**)
I'm 100% sure that WSDL file is correct - the error happens no matter how trivial etc. the file is.
The way I'm doing it:
- create a general project and add a new WSDL file to it;
- File -> New -> Other -> Web Services -> Web Service
- In the Web Service wizard, I choose "Top down Java Bean Service" and select the appropriate WSDL file.
- When I click Next or Finish, the above exception occurs and no source files are generated.
I'm using Tomcat 6.0 server (localhost), but I suppose that's irrelevant.
Any tips on how to resolve this would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我通过去解决了这个问题
,并将
Web 服务运行时
从“Apache Axis”更改为“Apache Axis2”。I solved this by going to
and changing the
Web Service Runtime
from "Apache Axis" to "Apache Axis2".创建一个空的动态 Web 项目,复制粘贴 WSDL,并从那里生成代码,然后将生成的文件复制到您的项目中,这种方式对我有用。
我知道这很烦人,但我可以这样解决它,特别是如果您有多个 WSDL 文件,对我来说;我可以为第一个 WSDL 生成服务器代码,但不能为其余部分生成服务器代码。
此致。
Create an empty dynamic web project, copy paste the WSDL, and generate the code from there, then copy the generated files into your project, it worked for me this way.
I know this is annoying, but I could solve it like that,especially if you have more than one WSDL file, for me; I could generate the server code for the first WSDL, but not for the rest.
Best regards.
该问题是由于 WSDL URL 中存在连字符而引起的。您的 WSDL URL 中是否有“-”(连字符),如果有,那就是问题所在。
请检查--> IWAB0014E 发生意外异常
The problem is caused due to existence of hyphens in the WSDL URL. Do you have any '-'(hyphen's) in your WSDL URL, if yes, thats the problem.
Please check --> IWAB0014E Unexpected exception occurred