Hi all !!
I'm facing a problem when i try to deploy a jbi container which hold a
message filter component, the point is that this last one isn't create even
i followed the steps on this
http://cwiki.apache.org/SM/servicemix-eip.html i don"t know why it doesn't
work maybe there is a library missed or a class which i've to specify on the
configuration file ?? for information there is no error message i m just
looking that the service eip isn't create the jbi container start correctly
but whithout the previous eip service below you can see my configuration
file :
<beans
xmlns:eip="http://servicemix.apache.org/eip/1.0"
xmlns:test="http://servicemix.apache.org/test-cluster"
xmlns:sm="http://servicemix.apache.org/config/1.0"
>
<classpath>
<location>../lib/servicemix-eip-2008.01.jar
</location>
</classpath>
<bean id="jndi"
class="org.apache.xbean.spring.jndi.SpringInitialContextFactory"
factory-method="makeInitialContext" singleton="true" />
<!--
the JBI container
-->
<sm:container id="jbi" name="messagefilter-cluster" flowName="jms"
useMBeanServer="true" createMBeanServer="true" rmiPort="3011"
installationDirPath="../hotdeploy">
<sm:activationSpecs>
<!--
Filter message and send it to the file sender
-->
<sm:activationSpec componentName="messagefilter"
service="test:messagefilter" endpoint="endpoint">
<sm:component>
<eip:component/>
<eip:endpoints>
<eip:message-filter service="test:messagefilter" endpoint="endpoint1">
<eip:target>
<eip:exchange-target service="test:filesender" />
</eip:target>
<eip:filter>
<eip:xpath-predicate xpath="count(/test:world) = 0"
namespaceContext="#nsContext"/>
</eip:filter>
</eip:message-filter>
</eip:endpoints>
</sm:component>
</sm:activationSpec>
</sm:activationSpecs>
</sm:container>
</beans>
THANKS IN ADVANCE !
--
View this message in context:
http://www.nabble.com/jbi-container-tp20596782p20596782.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.