Web Service won't bind to external interface.

2013-12-16 Thread John Smith
Hello there, (SMX 4.5.3: Camel 2.10.7, CXF 2.6.9) Does anyone know what might be happening here: I have two supposedly identical linux servers with a camel route exposing a web service on each. Server 1 correctly binds to the external address but server2 binds to the local address only. I've als

split and parallelProcessing of sql results.

2014-02-23 Thread John Smith
Hello, I have a route that queries a database table for a list of urls. The results are then split and passed to another route to actually perform the lookup. This works fine until, for performance reasons, I would like to process the url lookups in parallel so I change the split to: .split(body(j

NoRouteToHostException when sending XML payload to Karaf hosted cxf web service.

2017-11-02 Thread John Smith
Hello, I have a cxf web service hosted on my karaf instance which works perfectly well from SOAPUI I can see that its listening on the correct interface on the correct port. If I attempt to send my xml payload using cxf I get a NoRouteToHostException e.g. to("xslt:xsl/createTicket.xsl").lo

HazelcastComponent deprecated in 2.20

2017-11-27 Thread John Smith
Hello there, I'm using the HazelcastComponent in one of my projects where I configure a hazelcast instance in blueprint and inject that bean into my routebuilder where I use code such as: HazelcastComponent hc = new HazelcastComponent(); hc.setHazelcastInstance(hazelcastInstance); getConte

Hazelcast serialization suddenly throwing ClassNotFoundException.

2018-01-27 Thread John Smith
Hello, I'm using the hazelcast component to store messages and forward to other routes. This has been working perfectly. However I am now seeing: com.hazelcast.nio.serialization.HazelcastSerializationException: java.lang.ClassNotFoundException: my.package.integrator.core.config.IntegrationProfile

nett4-http endpoint - sending multipart request

2018-10-13 Thread John Smith
Hello, I have a netty4-http endpoint that I can send XML to with Content-Type=application/xml from a SoapUI REST project. I'd also like to send XML with attachments as a multipart/form or multipart/mixed content type. However when I switch the Content-Type to multipart/form or multipart/mixed in

Bean's property value is null when used in a route.

2012-04-13 Thread John Smith
Hello, I have a bean defined below which is used in the route shown. When the bean is used I need it to know the server name defined in the beans's definition in the spring context file however it always comes out as null. In the server log I can see the setServer method being called and it being

Re: Bean's property value is null when used in a route.

2012-04-13 Thread John Smith
Sorry, there was some copy / paste typos in that code where it references RemedyServer as the constructor and in the log4j logger definition - it should read ServerSender. -- View this message in context: http://camel.465427.n5.nabble.com/Bean-s-property-value-is-null-when-used-in-a-route-tp56381

Re: Bean's property value is null when used in a route.

2012-04-13 Thread John Smith
Perfect, thanks Babak - still a bit new to camel :-) -- View this message in context: http://camel.465427.n5.nabble.com/Bean-s-property-value-is-null-when-used-in-a-route-tp5638139p5638196.html Sent from the Camel - Users mailing list archive at Nabble.com.

Specifying Netty remote host at runtime

2015-09-08 Thread John Smith
Hello, I'd like to "ping" a server on port 22 but I only have the server's IP at run time Is there a way to override the remote host address? e.g. something like there is in the http4 component with the Exchange.HTTP_URI header I tried the below but it doesn't seem to override the addres set in t