You are right. I wasn't using file-2.0.xsd . Thanks for pointing that out.
If you are using 2.0, again you might want to look at RecursiveLeafOnlyDir . If that's not enough for you, let me...
Type: Posts; User: christophergraz; Keyword(s):
You are right. I wasn't using file-2.0.xsd . Thanks for pointing that out.
If you are using 2.0, again you might want to look at RecursiveLeafOnlyDir . If that's not enough for you, let me...
D'oh! Sorry, your phrase "(2.5.x)" threw me off, I thought you mean 2.0 Milestone 5 or something...
FYI I always get a schema error in my IDE (Eclipse) when I use the scanner option. But...
You can pass an alternate scanner into file:inbound-channel-adapter.
<bean name="myScanner" class="MyCustomScanner"/>
<file:inbound-channel-adapter
id="inputChannel" ...
D'oh! Yes that was it, missing the spring-integration-event.jar file, thanks.
I just recently added a few lines to a working XML file in order to start capturing application events.
Here is my the top of my xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans ...
Completely forgot that I already implemented a solution of sorts using SI 2.0...
Step 1) Make a separate directory (possibly a temp directory) dedicated to containing a single "kickstart" file. ...
>> I just realized that I just rambled on and on about my own immediate problem. :):)
Um, yes it might take me some time to read through your prior post. ;-)
>> Are you thinking of...
Note that you don't seem to --strictly speaking -- want to shutdown your "server" process after the poll, but rather you want to shutdown after all your input has been acted upon. Any solution would...
FYI this problem has gone away for me, in M7.
Ok, so I guess this is defect 1307?
https://jira.springsource.org/browse/INT-1307
I've also tried
- building/running against Spring Framework 3.0.3 (was using 3.0.2 beforehand)
- using http://www.springframework.org/schema/beans as the default XML namespace to match the sample...
To clarify, I did change my source code imports to match the new package locations for some objects, such as org.springframework.integration.core.Message moving to...
I just replaced the M5 jars of my working SI program with the M6 jars and after a full recompile (Sun JDK5), I am now getting the following run-time error when I launch from a raw command line or any...
The Message Endpoints are summarized at the top of the doc under section 1.4.
It would be nice if there were a link from each summary to the more detailed explanations later in the doc.
For...
Thank Mark. I am not doubting the design of the return address mechanism. Like a typical application (vs framework) developer, I approached with some tunnel vision for solving my problem at hand. ...
Makes sense, thanks Mark.
My problem is that I cannot determine the return address in advance of the component. I guess having my component decorate the output message for inspection by a router...
Added https://jira.springsource.org/browse/INT-1285
First time JIRA user, let me know if it needs more details, etc.
Thanks!
Thanks Mark.
My initial guess that I could influence the next channel by tickling the messages returned by the Transformer was wrong. At least my interpretation of handleMessageInternal...
Spring Integration v2 Milestone 5:
I have written a custom aggregator:
public class MyAggregationHelper
{
@Aggregator
public Collection aggregatingMethod(List<?> items)
{
Spring Integration 2 Milestone 5
I have a Transformer and I would like each output message to go to either a channel A or channel B depending on a condition.
I understand from that if there is...
Brief follow-up.... I am now triggering the special action by having the legacy unix script create a zero-byte file in a directory and having the SI service monitor the directory. It's a simple,...
I'm having trouble with my namespace support for ip:gateway using 2.0 M5 jars.
Is this correct?:
<bean:beans
. . ....
Thanks very much Gary. I've plenty of scripting experience so I'm not too worried about the client side. :)
You've clarified what exists for alternative #2. Very helpful.
I've just now found...
I have a Spring Integration 2.x solution that monitors input folders throughout the day, reformats incoming files on-the-fly, and moves the transformed files into output folders. This runs as a...
Thanks for your response, I just found my mistake.
I misconstrued of the "channel" argument of the constructor to be a default output channel if the XPath value did not match (hence...