Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: List of additional adapters

  1. #1
    Join Date
    Apr 2008
    Location
    London
    Posts
    7

    Question List of additional adapters

    I have an idea for an inbound adapter I would like to contribute.

    However, I would like to make sure someone already hasn't written such an adapter.

    Is there a current list of additional adapters available?

    Would this be the spring integration adapters project?

    http://www.springsource.org/extensions/se-sia

    It doesn't seem to be current?

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

    Default

    What kind of adapter would you like to contribute?

  3. #3
    Join Date
    Apr 2008
    Location
    London
    Posts
    7

    Default

    I'd like to contribute an SVN inbound adapter. I haven't written any code yet :-)

    The idea would be to poll for new commits.

    I was hoping to leverage SVNKit's SVNLogClient http://svnkit.com/javadoc/org/tmates...LogClient.html

  4. #4
    Join Date
    Jun 2011
    Posts
    10

    Default

    Is there any channel adapter for monitoring web site update? For example, in company press release page, news are uploaded occasionally.
    Last edited by qiaojun; Jun 24th, 2011 at 10:32 AM.

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

    Default

    You mean RSS/ATOM?

  6. #6
    Join Date
    Jun 2011
    Posts
    10

    Default

    no, some company doesn't have rss/atom. but they have press release on their own website.
    see this:
    http://www.bhel.com/press_release/press.php

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

    Default

    Ok, but than its nothing more than HTML scraping and validating it against some cache to see if there are any updates right?

  8. #8
    Join Date
    Jun 2011
    Posts
    10

    Default

    thanks. how do i reuse the existing spring integration framework to implement it? what components would be ideal? i have already used rss and email inbound channel adapter in my application, i need integrate more sources, so i am looking for the similar adapter.

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

    Default

    You can use generic inbound-channel-adapter with poller which could delegate to HTTP outbound Gateway and than have filter on the other side filtering the HTML only if it was updated

    For example:
    Code:
    inbound-channel-adapter(poller) -> HttpOutboundGateway -> Filter -> ...
    So poller may be polling every 30 min but downstream will only receive Message if the website indeed changed

  10. #10
    Join Date
    Apr 2008
    Location
    London
    Posts
    7

    Default

    Looks like my response got lost somehow
    I was looking to contribute an svn inbound polling adapter to pass commit messages
    Haven't written any code yet ;-)
    Was intending to leverage SVNKit
    Last edited by toolkit; Jun 24th, 2011 at 06:18 PM.

Tags for this Thread

Posting Permissions

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