2 Replies Latest reply on Aug 14, 2009 1:10 PM by bliessen_bliessen

    Service vs Endpoint

    bliessen_bliessen

      Hi Forum,

       

       

      I'm trying to deploy a Camel route in Fuse ESB 4 but I don't understand the difference between service and endpoint URIs:

       

      Camel's JBI documentations state both these URIs are OK:

      jbi:service:serviceNamespace\[sep\]serviceName

      jbi:endpoint:serviceNamespace\[sep\]serviceName\[sep\]endpointName

       

      Does that mean the Endpoint is optional ? When should I use it ?

       

      Regards,

      Benoît

       

      Edited by: bliessen on Aug 13, 2009 8:48 AM

       

      Edited by: bliessen on Aug 13, 2009 8:49 AM

        • 1. Re: Service vs Endpoint
          hzbarcea_hzbarcea

          Hi Benoit,

           

          Since you are looking at the Camel JBI documentation I must assume that your routes involve jbi endpoints.  You should probably know that Camel is capable of routing between many types of endpoints, jbi being one of them.  Since you are using ESB 4, which is based on OSGi you have quite a lot of options besides jbi.

           

          That said, the JBI spec section 4.1.2 describes the service model used by jbi, based on wsdl actually, where you have a service which is "a collection of endpoints that offer access to the same service. A service "implements" a particular service type (interface)".  That means that camel will accept just the service uri if for instance the service only has one Endpoint, which is quite a common case, or if you don't really care which endpoint is used for the given service.  However if your service has multiple endpoints you may want to use the full endpoint uri for disambiguation.

          • 2. Re: Service vs Endpoint
            bliessen_bliessen

            Thanks for the explanations.