i am working with spring jdbc templates and i have a simple mssql stored procedure like follows
CREATE PROCEDURE sp_ps_get @serviceUnoList varchar(max)
AS
select @value = max(value)
...
Type: Posts; User: kelumt; Keyword(s):
i am working with spring jdbc templates and i have a simple mssql stored procedure like follows
CREATE PROCEDURE sp_ps_get @serviceUnoList varchar(max)
AS
select @value = max(value)
...
Hello Artem and Oleg,
yes it is working as expected. thanks guys for your help.
but one more small question, since message driven adapters and all downstream components operates in same thread,...
Hello Artem,
thanks for the reply.
if we use <jms:inbound-channel-adapter>, we need to configure a poller as well right? as we did for file inbound.
how about adding error-channel attribute...
Hi Guys,
i know this question is a very very basic fundamental concept in spring integration. but i got little confused about it. hope u guys can help me to figure it out.
i have a inbound file...
Hi Guys,
In My project i am using a JMS message-driven-channel-adapter and it points to Active MQ server running on the same machine. it successfully fetches the messages and my system is working...
Hi Gray,
great, thanx..its working fine. now i want to do a another improvement. Since i have multiple inbound and out bound adapters i want to pick them dynamically and create a control panel,...
Hi Guys,
i am facing a small problem while working with fileout bound adapters in linux. when i run my program it should create a file in a given directory. In windows it works fine, but when it...
Hi Guys ,
these days i am working on a application which consist multiple types of input and out put adapters. So we need some kind of control screen which we can use to start and stop adapters...
Hi Guys,
i have a spring integration application which runs on tomcat 6. In there it has a message-driven-channel-adapter and it communicates with remote active mq server. So far so good i am...
Hello Guys,
These days i am working with an application which needs to read xmls from jms via spring integration message-driven-channel-adapter.
here is my xml header
<InboundMessage...
Hi Guys,
I got a new requirement change for my project. earlier i was using the file inbound adapter and it periodically polled for messages. Once it consumes the message we kept the file as its...
Hi Guys.
i got lot of help from this forum and again i need one small help.
In my Spring Integration application i have two inbound adapters, file and jms. depending on the client i need to...
Hi Guys,
suppose I have a master Spring config file called master.xml and i have child config file called child1.xml.
and i want to include child1.xml in master.xml as follows.
master.xml
You can make the calls asynchronous, by adding a task-exececutor attribute to the publish-subscribe-channel. or simply having queue channel with pooling consumer.
Hi Guys,
In my project i am trying to output a xml file using file:outbound-channel-adapter.
here is my configurations
<file:outbound-channel-adapter id="filesOut"...
Hi Cleric,
Thanks for the help. yes Groovy XmlSlurper is great and simple compared to JAXB. one more question this is not directly relevant to spring integration. Here i wanted to the Java Object...
Hi Guys,
same thing happens when an exception occurs. it creates a new message and start new message flow, then again original message history is lost. What do you guys think about this?
...
Hi Guys,
in my application I use <int:message-history/> to track the message history and so far it is working fine for my requirement. Then another request came that they want to publish the out...
Hi Wrangler,
really thanks for the help. i was able to use <message-history/> feature and create custom log using groovy as follows.
<int:service-activator id="logger"...
Hi Garry,
Many thanks for your help. the whole day i was looking how to implement validate(Source source) , but couldn't find a solution. can you please explain the simple approach how we can...
Hi Guys,
i was able successfully configured a validating-filter component with hard coded schema location as follows.
<int-xml:validating-filter discard-channel="errorChannel" ...
Hi Guys,
i am using spring integration 2.1.3.RELEASE and i want to append data to existing file using file:outbound-channel-adapter. But still i couldn't find any tip for that. Do you guys have...
Hi Guys,
I am new to Spring Integration and this is my first project using Spring Integration. I will briefly explain what I need to achieve here.
This is a simple design for our system using...
Hi Guys.
i have a requirement in my Spring integration application to log all the events in a log.
For example.
message payload __________________
message entered to channel channel1....
Hi Guys,
Just a quick question about xpath-router. in xpath-router configuration it provides kind of conditional statements based on expression.
<int-xml:xpath-router id="responderRouter"...