I got it
<jms:message-driven-channel-adapter id="inChannel" destination="queueName" channel="commStatusChannel" selector="APPLICATION_NAME = 'XYZ' AND NOTIFICATION_TYPE = 'OPEN'"/>
set...
Type: Posts; User: mahender.j; Keyword(s):
I got it
<jms:message-driven-channel-adapter id="inChannel" destination="queueName" channel="commStatusChannel" selector="APPLICATION_NAME = 'XYZ' AND NOTIFICATION_TYPE = 'OPEN'"/>
set...
Can anybody provide an example for 'selector' expression in message-driven-channel-adapter.
Thanks
Upgraded SI to latest version.
Issue resolved after adding property cache-level="3".
Thanks a lot.
Thanks for reply.
I'm using Spring Integration 2.0.0.RC1 version. after I added cache-level="3" this is the exception.
<Jan 29, 2012 6:14:31 PM CST> <Error> <Console> <BEA-240003> <Console...
I have the following code which receives a JMS message
.....
<int:channel id="setPriorityChannel" />
<int:router id="assignPriorityRouter" input-channel="setPriorityChannel"...
Issue is straight forward there is a message in channel "service_reply_channel" and you are not forwarding it to any output-channel
set the output-channel="nullChannel" in service-activators instead...
Try this. where fixed-delay is milliseconds
<int:poller id="poller" default="true" fixed-delay="1000"/>
I have to process a priority message even in between the JMS has started processing low priority messages.
here I have splitter which receives List and splits into single object then sends output...
Upgraded Spring Integration libraries from 2.0.0.RC1 to 2.0.5.RELEASE then deployed application in weblogic cluster environment. During server restart there are no errors found but once application...
Thanks for explanation.
This helped me a lot, it fits for my requirement.
-Mahender
I know outbound-channel-adapters are fire and forget...I have scenario after email has been sent out need to update the status
is there any way to have an output-channel once...
Thanks Ghillert,
I implemented priority value in my code but the message was not processed as priority, it processed only after all the messages in queue have done.
here I'm adding my context...
I have a scenario like I receive two types of
requests
1. process 50K emails with low priority
2. process 1 email with high priority
when I receive single email i need to process that message...