Eclipse - 尝试基于 WSDL 文件创建 Web 服务时出现意外异常

发布于 2024-10-26 07:36:36 字数 1053 浏览 2 评论 0原文

我试图在 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 文件是正确的 - 无论文件多么微不足道,都会发生错误。

我的做法是:

  1. 创建一个通用项目并向其中添加一个新的 WSDL 文件;
  2. 文件->新->其他->网络服务 -> Web 服务
  3. 在 Web 服务向导中,我选择“自顶向下 Java Bean 服务”并选择适当的 WSDL 文件。
  4. 当我点击“下一步”或“完成”时,出现上述异常,并且没有生成源文件。

我正在使用 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:

  1. create a general project and add a new WSDL file to it;
  2. File -> New -> Other -> Web Services -> Web Service
  3. In the Web Service wizard, I choose "Top down Java Bean Service" and select the appropriate WSDL file.
  4. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

似最初 2024-11-02 07:36:36

我通过去解决了这个问题

首选项->网络服务 ->服务器和运行时

,并将Web 服务运行时从“Apache Axis”更改为“Apache Axis2”。

I solved this by going to

Preferences -> Web Services -> Server and Runtime

and changing the Web Service Runtime from "Apache Axis" to "Apache Axis2".

時窥 2024-11-02 07:36:36

创建一个空的动态 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.

诠释孤独 2024-11-02 07:36:36

该问题是由于 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文