Page 2 of 2 FirstFirst 12
Results 11 to 14 of 14

Thread: Broken Pipe After Sending Multiple Request to Outbound FTP Adapter

  1. #11
    Join Date
    Jan 2010
    Posts
    11

    Default

    Yes we are using maven.

    Apache Maven 2.2.1 (r801777; 2009-08-06 15:16:01-0400)
    Java version: 1.6.0_20

  2. #12
    Join Date
    Jan 2008
    Location
    Mohnton, PA USA (that's near Philadelphia)
    Posts
    2,148

    Default

    Well, then all you need to do is configure your repos as such:
    Code:
    <repositories>
    		<repository>
    			<id>repository.springframework.maven.release</id>
    			<name>Spring Framework Maven Release Repository</name>
    			<url>http://maven.springframework.org/release</url>
    		</repository>
    		<repository>
    			<id>repository.springframework.maven.milestone</id>
    			<name>Spring Framework Maven Milestone Repository</name>
    			<url>http://maven.springframework.org/milestone</url>
    		</repository>
    		<repository>
    			<id>repository.springframework.maven.snapshot</id>
    			<name>Spring Framework Maven Snapshot Repository</name>
    			<url>http://maven.springframework.org/snapshot</url>
    		</repository>
    	</repositories>
    and specify dependency on SI:
    Code:
    <dependency>
    			<groupId>org.springframework.integration</groupId>
    			<artifactId>spring-integration-core</artifactId>
    			<version>2.0.2.BUILD-SNAPSHOT</version>
    </dependency>
    I'll let you know when its done. In fact i already fixed it. Just need to do a bit more testing with non-Filezilla ftp servers

  3. #13
    Join Date
    Jan 2008
    Location
    Mohnton, PA USA (that's near Philadelphia)
    Posts
    2,148

    Default

    Ok, i just committed a change
    http://git.springsource.org/spring-i...b04965cb45e696

    Give it shot and let me know.
    As I said i was able to reproduce the issue with Filezilla and then validate that it is working.

  4. #14
    Join Date
    Jan 2008
    Location
    Mohnton, PA USA (that's near Philadelphia)
    Posts
    2,148

    Default

    Joseph

    Have you had a chance to try it?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •