Re: [Solved] Consuming MLLP uri cannot be "seen" with localhost or 127.0.0.1 from external

2018-10-05 Thread Quinn Stevenson
You can also use from(“mlll://”) and camel-mllp will create the InetSocketAddress without specific a host, so it should work as well. HTH > On Oct 5, 2018, at 6:20 AM, John F. Berry wrote: > > Thanks Stephan! > For not knowing my question, you answered it perfectly. I knew localhost

Antwort: RE: Antwort: CXF : setting maxChildElements on endpoint

2018-10-05 Thread bjoern . ohm
Hi, I think you are right. But perhaps you can use your own (second) bus for some CXF-Enpoints, with its own configuration file (http://camel.apache.org/cxf.html --> bus, http://cxf.apache.org/docs/configuration-of-the-bus.html). But I have no practical knowledge. Wish you success, perhaps

[Solved] Consuming MLLP uri cannot be "seen" with localhost or 127.0.0.1 from external

2018-10-05 Thread John F. Berry
Thanks Stephan!  For not knowing my question, you answered it perfectly.  I knew localhost and 127.0.0.1 is a logical loopback, but I did not realize the significance 0.0.0.0.. I've seen that, but thought people used it as a placeholder as to not put in a "real" IP.  I did not realize it was a

Re: Integration tests with Spring annotations

2018-10-05 Thread Damien Nicolas
Hello, yes I have replaced all my beans (+ added a connection factory) in the configuration context and had to add some constructors in my routebuilder classes to directly initialize autowired services. Now Its work fine, thanks ;) Le jeu. 4 oct. 2018 à 18:28, Valdis Andersons a écrit : > Hi

RE: Antwort: CXF : setting maxChildElements on endpoint

2018-10-05 Thread Duchaine, David
Hi, Won't setting the property on the bus be effective for all endpoints in the Camel context? Reading the doc you reference, it says: Contextual properties which will be applied to all endpoints and clients using this bus Actually, I don't know how Camel manages all the CXF endpoints that

RE: REST endpoint to rabbitmq queue connection timeout

2018-10-05 Thread Valdis Andersons
Thank you very much Zoran, I'll try it out with those parameters and see how it goes. Valdis -Original Message- From: Zoran Regvart [mailto:zo...@regvart.com] Sent: 05 October 2018 10:45 To: users@camel.apache.org Subject: Re: REST endpoint to rabbitmq queue connection timeout Hi

Re: REST endpoint to rabbitmq queue connection timeout

2018-10-05 Thread Zoran Regvart
Hi Valdis, I think you're looking for `channelPoolMaxSize` and `channelPoolMaxWait` parameters[1]. From the snippet, I guess, you would set them on the `feedbackEndpoint`, and from the message history I see that you already set the `connectionFactory`, so you would configure these much in the same

RE: Consuming MLLP uri cannot be "seen" with localhost or 127.0.0.1 from external

2018-10-05 Thread Siano, Stephan
Hi, I am not sure if I get your question. If you bind the listening socket to localhost: it is bound to the (IPv4) loopback interface, which is of course only reachable from the local host. If you want to bind to all interfaces, you would have to use mllp:0.0.0.0: (which would mean