Re: Using ExecutorService from JEE server

2018-06-22 Thread Darius Cooper
Zoran, thanks for the great answer. I got it working by implementing a proof-of-concept ExecutorServiceManager and delegating all the methods that return either ExecutorService of ScheduledExecutorService Thinking about how this should look in production… 1. get/set ThreadPoolFactory: I assu

SOLVED: [Camel route help] HL7 listener, to parse body, to base64 decode, pdf to file on filesystem

2018-06-22 Thread John F. Berry
Thank you!  This helped. My route ended up looking like this: package org.mainegeneral.camel; import org.apache.camel.Exchange; import org.apache.camel.Processor; import ca.uhn.hl7v2.model.Message; import org.apache.camel.builder.RouteBuilder; import ca.uhn.hl7v2.util.Terser; import ca.uhn.hl7

Re: Cannot send files bigger then 256kb to service bus via amqps

2018-06-22 Thread Mark Nuttall
the following link on stackoverflow seems to indicate it is an Azure service bus limitation https://stackoverflow.com/questions/22384193/azure-service-bus-message-size-technology-limit-and-pricing On Fri, Jun 22, 2018 at 10:09 AM, Tunikov, Eugeniy wrote: > I am new to camel framework so I canno

RE: Cannot send files bigger then 256kb to service bus via amqps

2018-06-22 Thread Tunikov, Eugeniy
I am new to camel framework so I cannot go deeper into the problem. Basicly what we are doing is sending messages to azure service bus queue and getting error when messages are bigger then 256kb. The owner of service bus suggested that I should change configuration to something like this and

Re: Cannot send files bigger then 256kb to service bus via amqps

2018-06-22 Thread Quinn Stevenson
Can you be more specific about what is failing where? We process over 100,000 multi-megabyte messages per day and have never hit this sort of an issue. > On Jun 22, 2018, at 1:20 AM, Tunikov, Eugeniy wrote: > > We are routing messages to service bus. And getting error when trying to send >

Cannot send files bigger then 256kb to service bus via amqps

2018-06-22 Thread Tunikov, Eugeniy
We are routing messages to service bus. And getting error when trying to send messages bigger then 256kb. Error{condition=message-size-exceeded,description=The received message (delivery-id:0, size:327565 bytes) exceeds the limit (262144 bytes) currently allowed on the link.} And also exception