Hi Gert, thanks for your reply.
The definition of the namespace look like this:
xmlns:example="http://example.com",
so I think it's correct.
The jsr181 endpoint works just fine if I connect it directly to the Http
Component. In fact, I can get the WSDL and make some calls using SOAPUI.
What I think the problem really is, is on the Htpp Component <-> Camel
comunication. If I try this configuration on the Camel Context xml file
description:
<camelContext id="camel" trace="true"
xmlns="http://activemq.apache.org/camel/schema/spring">
<endpoint id="camelByPass"
uri="jbi:endpoint:http://example.com/camelReceiver/camelReceiverEndoint" />
<route>
<from ref="camelByPass" />
<to uri="log:INPUT" />
</route>
</camelContext>
nothing its printed on the "INPUT" log.
What am i doing wrong?