2 Replies Latest reply on Aug 12, 2011 9:29 AM by neledv

    Question about http entrypoint

    neledv

      I'm new to Fuse ESB and I would like to configure an application which receives some payload via an HTTP entrypoint and writes it to disk.

       

      Therefore I use the following config:

       

       

      When I deploy the application on the Fuse ESB, I can access the URL, but the Karaf web console is no longer accessible.

      When I change the ip address from localhost towards the ip address of my pc, I can no longer call the service. How can I fix this ?

        • 1. Re: Question about http entrypoint
          davsclaus

          Instead of localhost you should use 0.0.0.0. That should allow clients to access.

           

          eg like this

          <from uri="jetty:http://0.0.0.0:8181/sampleHTTPInbound" />
          

           

          And btw make sure you dont clash the port number with the default web console port number, which is also 8181. So you should use a different port number

          <from uri="jetty:http://0.0.0.0:8182/sampleHTTPInbound" />
          

           

          • 2. Re: Question about http entrypoint
            neledv

            Thanks ! It works perfectly now...