Hi,
if you want to change the components' namespace
(http://servicemix.apache.org/http/1.0, etc), you need to checkout the
component code and change the POM on the XBean plugin configuration.
For instance, to change the HTTP component namespace, you need:
1/ Check the HTTP source code:
svn co
http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-http/trunk
servicemix-http
2/ change the pom around the xbean plugin to set your namespace:
<plugin>
<groupId>org.apache.xbean</groupId>
<artifactId>maven-xbean-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>mapping</goal>
</goals>
<configuration>
<namespace>http://servicemix.yourcompany.com/http/1.0</namespace>
</configuration>
</execution>
</executions>
</plugin>
3/ rebuild the component:
mvn clean install
4/ deploy your component by copying the installer zip file in the deploy
or hotdeploy directory.
Regards
JB
jpepalmero wrote:
Hello everyone. I build my own based ESB ServiceMix and my space no names. I
want to run in files of the service units xbeans my
http://servicemix.mycompany.org/http/1.0.
What we tried several ways but did not work. I have also tried to install
ServiceMix from svn, and neither achievement. :rules: