Relay Message from a normal TCP end-point to Websocket endpoint in camel

2015-03-17 Thread vsk
Hi, We have a existing TCP server which streams application message. we need this message to be exposed via., a websocket endpoint for the Web GUI layer to consume What would be the best way to implement this in camel -- View this message in context: http://camel.465427.n5.nabble.com/Relay-

Camel production use

2015-03-19 Thread vsk
Hi We are currently considering camel for production use in our application Do anybody have any experience in creating few hundreds of routes for some asynchronous data collection and processing?? Appreciate if some example be shared on live deployments -- View this message in context: http://

Re: Relay Message from a normal TCP end-point to Websocket endpoint in camel

2015-03-19 Thread vsk
-- View this message in context: http://camel.465427.n5.nabble.com/Relay-Message-from-a-normal-TCP-end-point-to-Websocket-endpoint-in-camel-tp5764278p5764445.html Sent from the Camel - Users mailing list archive at Nabble.com.

Creating Custom JPA Endpoint Component in Camel

2015-09-26 Thread vsk
Hi, I'm new to camel framework. We want to use Spring Data JPA for our Data Access API Implementation. Please advise how to use our custom jpa component instead of the camel-jpa endpoint? regards VSK -- View this message in context: http://camel.465427.n5.nabble.com/Creating-Custo

Re: Camel production use

2015-09-26 Thread vsk
Hi , Thanks for the reply. We want to initiate polling to few hundred network entities using the camel-snmp4j. we plan to use quartz or the camel timers to setup the periodic polling of few hundred network entities. Please advise what would be the best practices for this setup/ regards VSK

Camel JMSConsumer creating lots of ActiveMQ Session Task

2015-11-22 Thread vsk
Hi, We are using Camel in a Spring Boot application. Need help to tuning the JMS Client. Am seeing lots of ActiveMQ Session Task & Inactivity Monitor Threads. How do i reduce these threads? Visual VM Output shows all the session task aren't doing anything.. Appreciate your help -- View this

Re: Camel JMSConsumer creating lots of ActiveMQ Session Task

2015-11-23 Thread vsk
Appreciate your support -- View this message in context: http://camel.465427.n5.nabble.com/Camel-JMSConsumer-creating-lots-of-ActiveMQ-Session-Task-tp5774232p5774318.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel JMSConsumer creating lots of ActiveMQ Session Task

2015-11-30 Thread vsk
Yes. The connections are pooled. PooledConnectionFactory pooled = new PooledConnectionFactory(coreConnectionFactory); pooled.setMaxConnections(2); pooled.setMaximumActiveSessionPerConnection(3); component.setUsePooledConnection(true);