6

似乎不知道在哪里(什么目录 - 源或类)正确使用 wsgen 反对我的 WebService 类......

创建一个基于 WebService 的示例文档文字:

package hello;

import javax.jws.WebService;

@WebService
public class HelloWorld {

public void sayHello() {
        System.out.println("Welcome to JAX-WS 2!");
    }
}

像这样创建发布者:

package hello;

import javax.xml.ws.Endpoint;

public class Publisher {
    public static void main(String[] args) {
        Endpoint.publish("http://localhost:8080/jaxws/hello", new HelloWorld());
    }
}

使用 Eclipse Helios,我在相应的类目录下自动将这两个文件构建为 *.classes。

因此,从文件系统来看,我的项目如下所示:

/code/jws_sample
          |
          src
             |
              hello
                  |
                  HelloWorld.java
                  Publisher.java
          |
           classes
                    |
                    HelloWorld.class
                    Publisher.class

我将在哪个目录中运行 wsgen?

当我在里面尝试时:

/code/jaxws_sample/src/wsgen -cp 。你好.HelloWorld

已收到:

  Class not found: "hello.HelloWorld"

  Usage: WSGEN [options] <SEI>

  where [options] include:

  -classpath <path>          specify where to find input class files

  -cp <path>                 same as -classpath &lt;path&gt;

  -d <directory>             specify where to place generated output files

  -extension                       
                             allow vendor extensions - functionality not specified
                             by the specification.  Use of extensions may
                             result in applications that are not portable or
                             may not interoperate with other implementations
   -help                     display help

   -keep                     keep generated files

   -r <directory>            resource destination directory, specify where to
                             place resouce files such as WSDLs

   -s <directory>            specify where to place generated source files

   -verbose                  output messages about what the compiler is doing

   -version                  print version information

   -wsdl[:protocol]          generate a WSDL file. The protocol is optional.
                             Valid protocols are [soap1.1, Xsoap1.2],
                             the default is soap1.1.
                             The non stanadard protocols [Xsoap1.2]
                             can only be used in conjunction with the
                             -extension option.

   -servicename <name>       specify the Service name to use in the generated WSDL
                             Used in conjunction with the -wsdl option.

   -portname <name>          specify the Port name to use in the generated WSDL
                             Used in conjunction with the -wsdl option.

   Examples:

   wsgen -cp . example.Stock
   wsgen -cp . example.Stock -wsdl -servicename {http://mynamespace}MyService

它实际上确实在浏览器中向我显示了 WSDL,而且当我尝试从 $MyProject/classes 发出 wsgen 命令时,它实际上确实创建了一个带有 SayHelloResponse.class 文件而不是 SayHelloResponse.java 文件的 jaxws 文件夹?

感谢您抽出时间来阅读。

4

7 回答 7

7

看起来您必须先将文件编译成类文件,然后再将它们提供给 wsgen。

classpath <path>          specify where to find input **class files**

我可能是错的,但我相信我过去也必须这样做。

谢谢,

杰弗里·凯文·普瑞

于 2011-06-23T20:33:00.213 回答
1

您需要启用“-keep”,并且可以选择指定“-s /path/to/src”来保存 JAXWS 生成的文件。由于这些是生成的文件,最佳实践通常会指导您不要保留这些文件,而只生成它们用于打包。保留文件并可能编辑它们的缺点是,如果您重新生成文件,您的更改可能会丢失。

例如,我有一个在 Maven 项目中定义的 JAX-WS 端点,并且每次打包服务时都会调用 WSGEN 目标。

于 2011-07-01T18:09:32.987 回答
1

您需要针对您的 sei 类文件而不是源文件运行 wsgen。cd 出 src 目录并进入 class 目录和 wsgen 针对 HelloWorld.class

于 2012-02-27T06:39:23.617 回答
1

答案有点晚,但我可以帮助别人。我在需要时使用此脚本生成 WSDL 和 XSD(仅限 Windows)。可以很容易地为 Linux 和 Mac 准备。我正在使用 glassfish appserver 的库。您可以用您的应用服务器或裸库替换这些库。

@echo off
set WSGEN="C:\Java\jdk1.6.0_39\bin\wsgen.exe"
set J1="C:\Java\jdk1.6.0_39\lib\tools.jar"
set J2="C:\Java\glassfish-3.1.2.2\glassfish\modules\webservices-osgi.jar"
set J3="C:\Java\glassfish-3.1.2.2\glassfish\modules\endorsed\webservices-api-osgi.jar"
set J4="C:\Java\glassfish-3.1.2.2\glassfish\modules\jaxb-osgi.jar"
set J5="C:\Java\glassfish-3.1.2.2\glassfish\modules\endorsed\jaxb-api-osgi.jar"
set J6="C:\Java\glassfish-3.1.2.2\glassfish\modules\javax.ejb.jar"
set J7="D:\NetBeansProjects\OTP\target\OTP-1.0\WEB-INF\lib\commons-lang3-3.1.jar"
set J8="D:\NetBeansProjects\OTP\target\OTP-1.0\WEB-INF\lib\commons-codec-1.8.jar"
set OUTPUT_DIR="D:\NetBeansProjects\OTP"
@echo on
%WSGEN% -classpath %J1%;%OUTPUT_DIR%\target\classes;%J2%;%J3%;%J4%;%J5%;%J6%;%J7%;%J8%; -d %OUTPUT_DIR%\jax-ws -Xendorsed -keep -wsdl -r %OUTPUT_DIR%\jax-ws -s %OUTPUT_DIR%\jax-ws -verbose com.avalant.ws.GenerateOTPWS
于 2013-06-14T04:34:39.123 回答
0

首先,您需要在“hello”目录下创建目录“jaxws”。

然后,尝试从“/code/jws_sample”目录运行此命令:

wsgen -keep -cp classes/ -s src/ HelloWorld

-s命令告诉生成器将源文件放在哪里。

这是使用我在工作中使用的脚本创建的,并且在提交之前无法对其进行实际测试。但是,我希望这能给你一些方向。

于 2012-03-19T12:45:30.703 回答
0

奇怪的是,您生成的类文件不在 /classes/hello/ 中,正如您的包所说...

好吧,考虑到您的类文件应该在 /classes/hello/HelloWorld.class 中,您只需从 classes 文件夹中执行以下操作:

wsgen-保持-cp。-d 。-s ../src hello.HelloWorld

刚刚检查并为我工作得很好。记住,从你的类文件夹中调用 CMD

于 2013-04-12T21:06:45.907 回答
0

这是很晚的回复,但为了他人的利益:

wsgen -verbose -keep -cp <folder with .class files> hello.HelloWorld -s <folder where u want the generated artifacts>

-verbose选项用于显示日志。<> -cp选项用于防止您当前的工作目录与 .class 文件所在的位置不同。-s用于目标源文件。-keep选项是保留生成的文件

于 2016-08-16T11:59:20.080 回答