`

axis2 wsdl2java参数详解

 
阅读更多

axis2 wsdl2java参数详解  

Usage: WSDL2Java [options] -uri <url or path> : A url or path to a WSDL
 
where [options] include:
  -o <path>                Specify a directory path for the generated code.
  -a                       Generate async style code only (Default: off).
  -s                       Generate sync style code only (Default: off). Takes precedence over -a.
  -p <pkg1>                Specify a custom package name for the generated code.
  -l <language>            Valid languages are java and c (Default: java).
  -t                       Generate a test case for the generated code.
  -ss                      Generate server side code (i.e. skeletons) (Default: off).
  -sd                      Generate service descriptor (i.e. services.xml). (Default: off). Valid with -ss.
  -d <databinding>         Valid databinding(s) are adb, xmlbeans, jibx and jaxbri (Default: adb).
  -g                       Generates all the classes. It generates clases for both client side and server side including derived classes of the schema.
  -pn <port_name>          Choose a specific port when there are multiple ports in the wsdl.
  -sn <service_name>       Choose a specific service when there are multiple services in the wsdl.
  -u                       Unpacks the databinding classes
  -r <path>                Specify a repository against which code is generated.
  -ns2p ns1=pkg1,ns2=pkg2  Specify a custom package name for each namespace specified in the wsdls schema.
  -ssi                     Generate an interface for the service implementation (Default: off).
  -wv <version>            WSDL Version. Valid Options : 2, 2.0, 1.1
  -S <path>                Specify a directory path for generated source
  -R <path>                Specify a directory path for generated resources
  -em <file path>          Specify an external mapping file
  -f                       Flattens the generated files
  -uw                      Switch on un-wrapping.
  -xsdconfig <file path>   Use XMLBeans .xsdconfig file. Valid only with -d xmlbeans.
  -ap                      Generate code for all ports
  -or                      Overwrite the existing classes
  -b                       Generate Axis 1.x backward compatible code.
  -sp                      Suppress namespace prefixes (Optimzation that reduces size of soap request/response)
  -E<key> <value>          Extra configuration options specific to certain databindings. Examples:
                           -Ebindingfile <path>                   (for jibx) - specify the file path for the binding file
                           -Etypesystemname <my_type_system_name> (for xmlbeans) - override the randomly generated type system name
                           -Ejavaversion 1.5                      (for xmlbeans) - generates Java 1.5 code (typed lists instead of arrays)
                           -Emp <package name> (for ADB) - extension mapper package name
                           -Eosv (for ADB) - turn off strict validation.
                           -Ewdc (for xmlbeans) - Generate code with a dummy schema. if someone use this option
                              they have to generate the xmlbeans code seperately with the scomp command comes with the
                              xmlbeans distribution and replace the Axis2 generated classes with correct classes
  --noBuildXML             Dont generate the build.xml in the output directory
  --noWSDL                 Dont generate WSDLs in the resources directory
  --noMessageReceiver      Dont generate a MessageReceiver in the generated sources
  --http-proxy-host <host> Proxy host address if you are behind a firewall
  --http-proxy-port <port> Proxy port address if you are behind a firewall
  -ep <package-name-list>  Exclude packages - these packages are deleted after code generation
  -sin <interface-name>    Skeleton interface name - used to specify a name for skeleton interface other than the default one
  -scn <class-name>        Skeleton class name - used to specify a name for skeleton class other than the default one
                           -EbindingFileName <path>               (for jaxbri) - specify the file path for the episode file
  -oaa <override-absolute-address>  -change the absolute http addresses to local file addresses generated by wsdl2java tool
  -ebc <exception-base-class>  -generated Exceptions are inherited from this exception rather than the java.lang.Exception class
  -uon <use-operation-name>  -by default the first letter of the generated method name changeed to lowercase. This option stops that and make it same as operation name
 
分享到:
评论

相关推荐

    使用axis将wsdl文件转换为java代码

    wsdl2java -uri your_wsdl_file.wsdl ``` 这将生成一系列的Java类,包括服务代理、消息处理器和服务实现类,它们可以直接在Java项目中使用。 3. **理解生成的Java代码** - **服务代理**:这是客户端与服务...

    wsdl2java命令使用

    **WSDL2Java命令使用详解** 在Web服务开发中,WSDL(Web Service Description Language)是一种XML格式,用于定义服务接口、操作、消息结构等。它使得服务提供者和服务消费者可以进行互操作。Apache Axis是Java平台...

    Axis 把WSDL生成JAVA类

    - **WSDL解析**:WSDL2Java工具首先解析WSDL文件,提取出所有必要的元数据,如服务端点、操作、参数类型等。 - **类生成策略**:对于每个在WSDL中定义的操作,WSDL2Java会生成相应的Java接口和实现类(存根或骨架...

    axis生成wsdl的JAVA客户端服务接口

    当有了一个WSDL文件,开发者可以利用工具如Apache Axis将WSDL解析并生成相应的Java客户端 stubs(代理类),这些代理类包含了调用Web服务所需的所有逻辑。 **Apache Axis的工作流程:** 1. **解析WSDL**:首先,...

    Axis2 接口生成wsdl工具

    **Axis2接口生成WSDL工具详解** 在Web服务开发领域,Apache Axis2是一个重要的开源工具,它被广泛用于创建和部署SOAP(Simple Object Access Protocol)和RESTful Web服务。标题中的"Axis2接口生成WSDL工具"正是 ...

    wsdl2java_jar.zip

    `wsdl2java`工具是Apache Axis项目的一部分,它能够自动根据WSDL文件生成Java客户端存根类,这些类使得Java应用程序能够方便地与符合WS-I标准的Web服务进行交互。 【标签】"webservice"和"java"进一步确认了这个...

    axis解析wsdl所需jar

    这个版本的Axis支持Java 2平台标准版(J2SE)和企业版(J2EE),并且兼容多种Web服务器和应用服务器。它提供了服务端的SOAP处理,包括创建Web服务、发布服务、处理SOAP消息等功能,同时也可以生成客户端的Stubs,...

    axis2 1.6.2 生产wsdl客户端代码

    在 Axis2 中,我们可以使用WSDL2Java工具从一个给定的WSDL文件自动生成Java客户端代码。这个过程包括以下步骤: 1. **下载与安装**: 首先,你需要下载Axis2 1.6.2的发行版,这里提供的是"axis2-1.6.2"的压缩包。...

    Java2WSDL和WSDL2Java操作指南

    2. **执行命令:** 在命令行中使用`java org.apache.axis.wsdl.Java2WSDL`命令,加上必要的参数。 **命令示例:** ```bash D:\Tomcat\webapps\axis\WEB-INF\classes&gt;java org.apache.axis.wsdl.Java2WSDL -o ...

    axis2 - wsdl 2 java

    标题中的“axis2 - wsdl 2 java”指的是Apache Axis2框架的一个功能,它能够将WSDL(Web Services Description Language)文件转换为Java代码。这个过程通常被称为代码生成,是开发基于SOAP(Simple Object Access ...

    wsdl2java 客户端的自动生成工具

    **Wsdl2Java客户端生成工具详解** 在Java WebService开发中,`Wsdl2Java`是一个非常实用的工具,主要用于根据WSDL(Web Services Description Language)文件自动生成对应的Java客户端代码。这极大地简化了开发过程...

    AXIS2 1.7.3 idea wsdl 代码生成插件

    6. **配置与调试**:插件可能需要配置AXIS2的相关库,以确保正确解析WSDL并生成代码。在IDEA中,可以通过设置类路径或模块依赖来添加必要的AXIS2库。此外,IDEA的调试功能可以帮助测试生成的服务端和客户端代码,以...

    axis以及wsdl的jar包

    2. **生成Java服务端代码**:有了WSDL文件后,你可以使用Axis的`wsdl2java`工具将其转换为Java源代码。这将生成一个服务骨架,包含服务接口和服务实现类。你需要在实现类中编写业务逻辑。 3. **部署服务**:将生成...

    axis2发布webservice和调用axis2服务接口

    2. **使用Axis2的wsdl2java工具**:这个工具可以从WSDL文件生成Java客户端代码,包括服务代理类和服务接口。运行`wsdl2java`命令时,需要提供WSDL的URL或本地路径。生成的代码可以导入到项目中,方便调用服务。 3. ...

    onvif wsdl转成java代码

    这个过程通常涉及到SOAP(Simple Object Access Protocol)库,如Apache CXF或 Axis2,这些库能将WSDL解析并生成Java代码。 在Eclipse中,导入生成的Java包后,开发者就可以在Java项目中直接调用ONVIF服务,实现对...

    WSDL2Java--根据wsdl生成Java客户端工具

    **WSDL2Java工具详解** 在Web服务的世界中,`WSDL`(Web Service Description Language)是一种XML格式的规范,用于定义服务接口、操作、消息结构等,使得服务消费者能够理解如何与服务进行交互。而`WSDL2Java`工具...

    WSDL2Java工具

    WSDL2Java工具详解 WSDL(Web Services Description Language)是一种XML格式,用于定义网络服务的接口。它描述了服务的端点、消息格式、操作和协议绑定等关键信息,使得客户端能够理解如何与服务进行通信。WSDL2...

    wsdl生成java代码工具

    - **命令行参数**:运行`wsdl2java`时,可以指定各种参数,比如指定输出目录 (`-d`)、选择代码生成模式 (`-frontend`) 或指定特定的绑定配置 (`-b`)。 - **修改路径**:根据实际项目需求,用户可能需要修改Wsdl2...

    WebService的WSDL文件生成Java代码工具

    Java中,通常使用Apache CXF、 Axis2 或 JAX-WS等库来处理WSDL文件,生成对应的Java类和服务接口。以下是使用这些工具的一般步骤: 1. **Apache CXF**: - 首先,下载并安装Apache CXF。 - 使用CXF的wsdl2java...

Global site tag (gtag.js) - Google Analytics