You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

On this page, we are going to configure the my-cxf-bc-su to provide our service .

Configuring pom.xml

Changing the project name

In order to make the build output a little bit more comprehensible, we first change the project name in the generated pom.xml file.

 
<project>
  ...
  <name>CXF WSDL Tutorial :: CXF BC SU</name>
  ...
</project>

Adding parent's element to generated pom.xml

We must to specify parent of this project. So, we add this to generated pom.xml.

 
 <parent>
    <artifactId>parent</artifactId>
    <groupId>org.apache.servicemix.tutorial</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>

Next, we are going to create our service.wsdl.

Things to remember

  • In ServiceMix, most service units will be configured by a file named xbean.xml



  • No labels