Results 1 to 2 of 2

Thread: Poller thread stopped working

  1. #1
    Join Date
    Jan 2008
    Location
    Essen, GER
    Posts
    4

    Default Poller thread stopped working

    We have a Spring Integration application that - among other stuff - pulls updates (=the latest changes) from an external web service implemented in CXF every ten minutes. See configuration below:

    Code:
    	<integration:inbound-channel-adapter
    		ref="externalSystemPollingService" method="processUpdates" channel="externalSystemChannel">
    		<integration:poller>
    			<integration:interval-trigger interval="600"
    				time-unit="SECONDS" />
    		</integration:poller>
    	</integration:inbound-channel-adapter>
    This has been working fine for weeks now but yesterday the polling thread basically 'died' without further notice. It worked until a specific point in time as can be followed in the logs and then all of a sudden there's no beep out of this poller any longer. No exception in the logs, nothing!

    Does anyone have an idea what this could be about?
    Thanks in advance
    Florian
    Florian Theurich
    Senior Technology Consultant | Sapient
    www.sapient.com

  2. #2
    Join Date
    May 2007
    Location
    Netherlands
    Posts
    614

    Default

    Heh, interesting. Was the jvm still running? Did you do any investigation other than look at the log files? Is it possible that someone stopped the scheduler?

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
  •