L.S.,
You need to install the HTTP JBI component (just copy it from
$servicemix_home/components to $servicemix_home/install). Have a look
at one of our tutorials for more information on what is happening --
it's exercise explains what to do when this error occurs: cfr.
http://incubator.apache.org/servicemix/16-beginner-exercise.html
Gert
VishalKumarNalla wrote:
Hi,
I am getting the following warning when i am trying to deploy zip archive
which uses http component. I have all the component specific service mix zip
files under components directory.
Here is my configuration file: jbi.xml
<jbi xmlns="http://java.sun.com/xml/ns/jbi" version="1.0">
<service-assembly>
<identification>
<name>test-sa</name>
<description>test</description>
</identification>
<service-unit>
<identification>
<name>http-su-6.0.16</name>
<description>SU :: HTTP Component</description>
</identification>
<target>
<artifacts-zip>http-su-6.0.16.zip</artifacts-zip>
<component-name>servicemix-http</component-name>
</target>
</service-unit>
</service-assembly>
</jbi>
xbean.xml:
<beans xmlns:http="http://servicemix.apache.org/http/1.0"
xmlns:test="http://www.servicemix.apache.org/test/1.0">
<http:endpoint service="test:httpcomponent"
endpoint="soap"
role="consumer"
locationURI="http://localhost:8192/example/"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
</beans>
Thanks in advance