I set the max-messages-per-poll, its working fine .. thanks a lot Grzegorz
Type: Posts; User: abdullah_shaikh; Keyword(s):
I set the max-messages-per-poll, its working fine .. thanks a lot Grzegorz
Yes you are right, the ServiceActivator method was returning a string, I have changed it to return void.
But now inbound-channel-adapter doesn't seem to comply with the interval set in poller, it...
Thanks Grzegorz, I got it working .. but it throws me the below exception
SEVERE: org.springframework.integration.channel.ChannelResolutionException: unable to resolve reply channel for message:...
Sorry forgot to mention, this is the error I am getting.
27 Oct, 2009 11:40:45 AM org.springframework.integration.handler.LoggingHandler handleMessageInternal
SEVERE:...
Thanks Grzegorz for the reply.
Any idea on <inbound-channel-adapter/> configuration, I couldn't configure it for polling. any idea on this ?
Below is the configuration that I did :
<bean...
Hi pgondi,
Me too wants to poll a database table at the specified intervals, I tried using inbound-channel-adapter, but I dont know what wrong, I am not able to configure it properly.
Can you...
No I don't need to add anything in the SOAP Header, its just to prepare a valid soap message for a SOAP Web Service invocation
I would be forming a object of xmlbeans using the fetched data, I am using xmlbeans marshaller.
And then I need to wrap this object (xmlbeans) into soap envelope tags ? any idea how to do this ?...
Hi All,
I have a database table on which I have a trigger which gets fired when the table is inserted or updated, and populate a record in another table, say a notifications table.
I want a...
I tried with WebServiceTemplate, I was able to send the message to the queue, but the message text was not displayed in ActiveMQ web console, I dont know in which format the message was sent.
I...
I have a JMS based webservice, for which I am using SaajSoapMessageFactory, SoapMessageDispatcher, PayloadRootQNameEndpointMapping & XmlBeansMarshaller.
When I put a soap message onto the queue,...
I have configured WebServiceMessageListener with messageFactory as SaajSoapMessageFactory and messageReceiver as SoapMessageDispatcher.
For SoapMessageDispatcher I configured the endpointMappings...
hey I already did that, post is 3 months old :)
anyways thanks for the reply :D
Thanks for all the help, just 1 more question.
Instead of using message-driven-channel-adapter and then forwarding the message to the web service using outbound-gateway, can I create a web service...
Hi All,
I need to create web service which will get invoked whenever there is a message on ActiveMQ queue, i.e. whenever a message arrives on the queue the web service should get invoked.
I...
Thanks for the reply, Mark.
But I have some queries regarding this :
input-channel - this is the channel where the messages comes from the queue.
uri - points to webservice
output-channel...
Hi All,
I am using message-driven-channel-adapter with channel to consume the messages on ActiveMQ queue, but what I want is that when a messages arrives on the queue it should invoke a...
Hi All,
I need to consume the REST services exposed by our system, for that I have decided to use RestTemplate.
How do I do basic authentication with RestTemplate or any other suggestion to...