To better understand XBeans, I wanted to understand where or how the
namespace is defined for each service type (binding component/service
engine).
For example:
For the servicemix-eip wiretap, I see in the
org.apache.servicemix.eip.patterns.WireTap.java class that the xbean is
defined as "wire-tap" but I don't see an obvious reference to which
namespace I should use when defining the xbean.xml for my service unit.
I used the following
<?xml version="1.0"?>
<beans
xmlns:f="http://myproject.com/myservice/1.0"
xmlns:j="http://myproject.com/myotherservice//1.0"
xmlns:eip="http://servicemix.apache.org/eip/1.0">
<eip:wire-tap
service="f:my-process"
endpoint="doit">
...
Is the url "http://servicemix.apache.org/eip/1.0" resolved? If so,
where can I find it?
Thanks in advance,
Gordon Dickens