You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Antoni Jakubiak <an...@gmail.com> on 2007/05/14 23:36:40 UTC

[AXIS2] axis2 + maven2 + jibx (axis2-wsdl2code-maven-plugin) -

Witajcie!

I have to use maven plugin for axis and jibx - axis2-wsdl2code-maven-plugin
version 1.2. It doesn't work for me. I made some changes:

1. pom.xml (axis2-1.2/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml)
add dependency to axis2-jibx:
<dependency>
  <groupId>org.apache.axis2</groupId>
  <artifactId>axis2-jibx</artifactId>
  <version>${version}</version>
</dependency

It helps with "java.lang.RuntimeException: JiBX framework jars not in
classpath" error.


2. WSDL2CodeMojo.java
(modules/tool/axis2-wsdl2code-maven-plugin/src/main/java/org/apache/axis2/maven2/wsdl2code/WSDL2CodeMojo.java)
2.1. add private field:
/**
 * JiBX binding file
 *
 * @parameter expression="${axis2.wsdl2code.jibxBindingFile}"
default-value="src/main/axis2/binding.xml"
 */
private File jibxBindingFile
2.2. modify method fillOptionMap - add code:
if ("jibx".equals(databindingName)) {
  String tmpName =
CommandLineOptionConstants.WSDL2JavaConstants.EXTRA_OPTIONTYPE_PREFIX
+ org.apache.axis2.wsdl.codegen.extension.JiBXExtension.BINDING_PATH_OPTION;
  optionMap.put( tmpName, new CommandLineOption( tmpName,
getStringArray(jibxBindingFile.getPath())));
}

It helps with error "java.lang.RuntimeException: JiBX wrapped support
requires a binding definition to be provided using the -Ebindingfile
{file-path} parameter"

This modifications allow me to build with maven axis2 jibx web service.
Please add it to axis2 distribution.




Example pom:
<?xml version="1.0" encoding="UTF-8"?>
<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.axis2.maven2</groupId>
  <artifactId>axis2-wsdl2code-maven-plugin-test1</artifactId>
  <version>1.2-SNAPSHOT</version>
  <name>Test 1 of the axis2-wsdl2code-maven-plugin</name>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.axis2</groupId>
        <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
        <version>1.2</version>
        <executions>
          <execution>
            <goals>
              <goal>wsdl2code</goal>
            </goals>
            <configuration>
              <generateServerSide>true</generateServerSide>
              <generateServerSideInterface>true</generateServerSideInterface>
              <generateAllClasses>true</generateAllClasses>
              <generateServicesXml>true</generateServicesXml>
              <packageName>demo</packageName>
              <databindingName>jibx</databindingName>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project



Pozdrawiam
Antoni Jakubiak
http://www.jakubiak.eu/

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


Re: [AXIS2] axis2 + maven2 + jibx (axis2-wsdl2code-maven-plugin) -

Posted by Davanum Srinivas <da...@gmail.com>.
Antoni,

This is great!. could you please open a JIRA issue
(http://issues.apache.org/jira/browse/AXIS2) please click on the link
in the top right corner to create an id for yourself.

thanks,
dims

On 5/14/07, Antoni Jakubiak <an...@gmail.com> wrote:
> Witajcie!
>
> I have to use maven plugin for axis and jibx - axis2-wsdl2code-maven-plugin
> version 1.2. It doesn't work for me. I made some changes:
>
> 1. pom.xml (axis2-1.2/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml)
> add dependency to axis2-jibx:
> <dependency>
>   <groupId>org.apache.axis2</groupId>
>   <artifactId>axis2-jibx</artifactId>
>   <version>${version}</version>
> </dependency
>
> It helps with "java.lang.RuntimeException: JiBX framework jars not in
> classpath" error.
>
>
> 2. WSDL2CodeMojo.java
> (modules/tool/axis2-wsdl2code-maven-plugin/src/main/java/org/apache/axis2/maven2/wsdl2code/WSDL2CodeMojo.java)
> 2.1. add private field:
> /**
>  * JiBX binding file
>  *
>  * @parameter expression="${axis2.wsdl2code.jibxBindingFile}"
> default-value="src/main/axis2/binding.xml"
>  */
> private File jibxBindingFile
> 2.2. modify method fillOptionMap - add code:
> if ("jibx".equals(databindingName)) {
>   String tmpName =
> CommandLineOptionConstants.WSDL2JavaConstants.EXTRA_OPTIONTYPE_PREFIX
> + org.apache.axis2.wsdl.codegen.extension.JiBXExtension.BINDING_PATH_OPTION;
>   optionMap.put( tmpName, new CommandLineOption( tmpName,
> getStringArray(jibxBindingFile.getPath())));
> }
>
> It helps with error "java.lang.RuntimeException: JiBX wrapped support
> requires a binding definition to be provided using the -Ebindingfile
> {file-path} parameter"
>
> This modifications allow me to build with maven axis2 jibx web service.
> Please add it to axis2 distribution.
>
>
>
>
> Example pom:
> <?xml version="1.0" encoding="UTF-8"?>
> <project>
>   <modelVersion>4.0.0</modelVersion>
>   <groupId>org.apache.axis2.maven2</groupId>
>   <artifactId>axis2-wsdl2code-maven-plugin-test1</artifactId>
>   <version>1.2-SNAPSHOT</version>
>   <name>Test 1 of the axis2-wsdl2code-maven-plugin</name>
>   <build>
>     <plugins>
>       <plugin>
>         <groupId>org.apache.axis2</groupId>
>         <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
>         <version>1.2</version>
>         <executions>
>           <execution>
>             <goals>
>               <goal>wsdl2code</goal>
>             </goals>
>             <configuration>
>               <generateServerSide>true</generateServerSide>
>               <generateServerSideInterface>true</generateServerSideInterface>
>               <generateAllClasses>true</generateAllClasses>
>               <generateServicesXml>true</generateServicesXml>
>               <packageName>demo</packageName>
>               <databindingName>jibx</databindingName>
>             </configuration>
>           </execution>
>         </executions>
>       </plugin>
>     </plugins>
>   </build>
> </project
>
>
>
> Pozdrawiam
> Antoni Jakubiak
> http://www.jakubiak.eu/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-dev-help@ws.apache.org
>
>


-- 
Davanum Srinivas :: http://davanum.wordpress.com

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org