Questions tagged [akka-camel]

The akka-camel module allows Untyped Actors to receive and send messages over a great variety of protocols and APIs. In addition to the native Scala and Java actor API, actors can now exchange messages with other systems over large number of protocols and APIs such as HTTP, SOAP, TCP, FTP, SMTP or JMS, to mention a few. At the moment, approximately 80 protocols and APIs are supported.

23 questions
0
votes
1 answer

Accessing Twitter with Akka Camel to return JSON

I was using an HTTP POST method using the URL "https://stream.twitter.com/1.1/statuses/filter.json" and in the body I was posting the key/value I wanted to get tweets from - for example "track=london". This was working fine. Now I am trying to…
Fabio
  • 555
  • 3
  • 9
  • 24
0
votes
1 answer

camel-akka and response from actor

Dear Akka/Camel Masters! I have following route: (netty4:tcp) -> (akka:actor) I'm using akka-camel module where: akka:actor is of type UntypedConsumerActor netty4:tcp is an endpoint defined in getEndopointUri method of…
0
votes
2 answers

Consumer/Producer AWS SQS akka scala with synchrone consumer

My application have a producer and a consumer. My producer produces messages irregularly. Sometime my queue will be empty, sometime I will have a few messages. I would like to have my consumer listen to the queue and when a message is in it, take…
GermainGum
  • 1,349
  • 3
  • 15
  • 40
0
votes
2 answers

Akka Camel: Messages routed to incorrect SEDA route

My simplified Akka Camel application is set up as follows: AppleProducer -> seda:appleRoute -> AppleConsumer OrangeProducer -> seda:orangeRoute -> OrangeConsumer What I am seeing though is that Apple events are intermittently being consumed by…
DJ180
  • 18,724
  • 21
  • 66
  • 117
0
votes
1 answer

Akka Scala Camel. Exception handling

I have akka camel-ftp consumer. I would like to handle all exceptions in code (e.g. Authentification Exception, or file on ftp cannot be read). I can see stacktrace in logs only and cannot handle it. Maybe it is better to use…
Alex S
  • 11
  • 3
0
votes
1 answer

Akka Camel and ActiveMQ: How to set delivery mode

As far as I know, ActiveMQ sets delivery mode to PERSISTENT by default... so how do I set delivery mode to NON_PERSISTENT for a specific topic when using Akka-Camel? Here below is my sample code: import akka.actor._ import akka.camel._ import…
j3d
  • 9,492
  • 22
  • 88
  • 172
0
votes
1 answer

How to use a header value inside an XML attribute using Apache Camel?

I have the following in a camel route, but it doesn't seem to get the header value. Is this the right way to do it?
Phil
  • 46,436
  • 33
  • 110
  • 175
0
votes
1 answer

Akka Camel RabbitMQ Creating New Connections Every Time

I'm using akka-camel to subscribe to a rabbitmq exchange. There will be several of these actors created... one per requested routingKey. The exchange and queue doesn't change. Each time a new routingKey is requested I create a new actor and, instead…
threejeez
  • 2,314
  • 6
  • 30
  • 51
1
2